update
authorAlexander Fedotov <soyaxhoya@gmail.com>
Thu, 21 Apr 2016 15:53:13 +0000 (17:53 +0200)
committerAlexander Fedotov <soyaxhoya@gmail.com>
Thu, 21 Apr 2016 15:53:13 +0000 (17:53 +0200)
modelchecker/main.c

index 0b0067b..232bac6 100644 (file)
@@ -104,7 +104,7 @@ int solve(FILE *inputstream, char *lurd)
        }
        //int iteration = 0;
 
-       bool found = false;
+       //bool found = false;
     /*
        while(new != old){
                DPRINT("Iteration %d\n", iteration++);
@@ -134,7 +134,7 @@ int solve(FILE *inputstream, char *lurd)
             l = l->next;
         }
         printf("\n");
-    } else found = 0;
+    }
 
 
        time_end_solve = clock();
@@ -147,10 +147,12 @@ int solve(FILE *inputstream, char *lurd)
        REPORT("Relation encoding: %fs\n", time_end_rel, time_start_rel);
        REPORT("Solving encoding: %fs\n", time_end_solve, time_start_solve);
 
+    /*
        if(!found){
                printf("no solution\n");
                return 1;
        }
+    */
        return 0;
 }