diff options
Diffstat (limited to 'src/sat/bsat/satUtil.c')
-rw-r--r-- | src/sat/bsat/satUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sat/bsat/satUtil.c b/src/sat/bsat/satUtil.c index c8569606..ab9641bb 100644 --- a/src/sat/bsat/satUtil.c +++ b/src/sat/bsat/satUtil.c @@ -154,7 +154,7 @@ void Sat_SolverPrintStats( FILE * pFile, sat_solver * p ) printf( "conflicts : %10d\n", (int)p->stats.conflicts ); printf( "decisions : %10d\n", (int)p->stats.decisions ); printf( "propagations : %10d\n", (int)p->stats.propagations ); - printf( "inspects : %10d\n", (int)p->stats.inspects ); +// printf( "inspects : %10d\n", (int)p->stats.inspects ); // printf( "inspects2 : %10d\n", (int)p->stats.inspects2 ); } @@ -176,7 +176,7 @@ void Sat_Solver2PrintStats( FILE * pFile, sat_solver2 * p ) printf( "conflicts : %10d\n", (int)p->stats.conflicts ); printf( "decisions : %10d\n", (int)p->stats.decisions ); printf( "propagations : %10d\n", (int)p->stats.propagations ); - printf( "inspects : %10d\n", (int)p->stats.inspects ); +// printf( "inspects : %10d\n", (int)p->stats.inspects ); // printf( "inspects2 : %10d\n", (int)p->stats.inspects2 ); printf( "memory : %10d\n", p->nMemSize ); } |