Updates to the result reporting.

This commit is contained in:
Alan Mishchenko 2025-03-13 11:57:53 -07:00
parent 27fdbe0162
commit d55735df2b
1 changed files with 2 additions and 2 deletions

View File

@ -317,9 +317,9 @@ int Cec_GiaProveTest( Gia_Man_t * p, int nProcs, int nTimeOut, int nTimeOut2, in
{
printf( "Problem \"%s\" is ", p->pSpec );
if ( RetValue == 0 )
printf( "SAT (solved by %d).", RetEngine );
printf( "SATISFIABLE (solved by %d).", RetEngine );
else if ( RetValue == 1 )
printf( "UNSAT (solved by %d).", RetEngine );
printf( "UNSATISFIABLE (solved by %d).", RetEngine );
else if ( RetValue == -1 )
printf( "UNDECIDED." );
else assert( 0 );