Skip to content

Commit d55735d

Browse files
committed
Updates to the result reporting.
1 parent 27fdbe0 commit d55735d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/proof/cec/cecProve.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,9 @@ int Cec_GiaProveTest( Gia_Man_t * p, int nProcs, int nTimeOut, int nTimeOut2, in
317317
{
318318
printf( "Problem \"%s\" is ", p->pSpec );
319319
if ( RetValue == 0 )
320-
printf( "SAT (solved by %d).", RetEngine );
320+
printf( "SATISFIABLE (solved by %d).", RetEngine );
321321
else if ( RetValue == 1 )
322-
printf( "UNSAT (solved by %d).", RetEngine );
322+
printf( "UNSATISFIABLE (solved by %d).", RetEngine );
323323
else if ( RetValue == -1 )
324324
printf( "UNDECIDED." );
325325
else assert( 0 );

0 commit comments

Comments
 (0)