Commit 75d334a0 by Alan Mishchenko

New exact synthesis command 'allexact'.

parent 7d7ce3ec
......@@ -948,10 +948,12 @@ static void Zyx_ManPrintSolution( Zyx_Man_t * p, int fCompl )
printf( "(" );
for ( k = 0; k < i; k++ )
if ( bmcg_sat_solver_read_cex_varvalue(p->pSat, Zyx_TopoVar(p, i, k)) )
{
if ( k >= 0 && k < p->pPars->nVars )
printf( " %c", 'a'+k );
else
printf( " %02d", k );
}
printf( " )\n" );
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment