From a208791a02511d50eed1663203ac26eabfdfaa6f Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Sat, 16 Jun 2018 17:49:33 +0530 Subject: add spacing in for statement --- js/Misc/CONSTRAINT2_c.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/Misc/CONSTRAINT2_c.js') diff --git a/js/Misc/CONSTRAINT2_c.js b/js/Misc/CONSTRAINT2_c.js index 1fcf1056..e4c460ef 100644 --- a/js/Misc/CONSTRAINT2_c.js +++ b/js/Misc/CONSTRAINT2_c.js @@ -28,7 +28,7 @@ x_message("number of states (constraints) must be > 0 "); ask_again=true; } if ((!ask_again)) { -for(i=1;i<=N;i+=1) { +for (i=1;i<=N;i+=1) { if (!((id(i)==0)||(id(i)==1))) { ask_again=true; x_message(["Id(i) must be either","0 when x\'(i) is not present in the feedback","1: when x\'(i) is present in the feedback"]); -- cgit