Commit c4e85930 by Alan Mishchenko

Modified the PDR print-out to be compatible with Niklas.

parent af84c0d2
......@@ -574,6 +574,8 @@ int Pdr_ManSolveInt( Pdr_Man_t * p )
}
else
{
if ( p->pPars->fVerbose )
Pdr_ManPrintProgress( p, 1, clock() - clkStart );
// open a new timeframe
assert( pCube == NULL );
Pdr_ManSetPropertyOutput( p, k );
......@@ -583,8 +585,6 @@ int Pdr_ManSolveInt( Pdr_Man_t * p )
printf( "*** Clauses after frame %d:\n", k );
Pdr_ManPrintClauses( p, 0 );
}
if ( p->pPars->fVerbose )
Pdr_ManPrintProgress( p, 0, clock() - clkStart );
// push clauses into this timeframe
if ( Pdr_ManPushClauses( p ) )
{
......@@ -598,7 +598,7 @@ int Pdr_ManSolveInt( Pdr_Man_t * p )
return 1; // UNSAT
}
if ( p->pPars->fVerbose )
Pdr_ManPrintProgress( p, 1, clock() - clkStart );
Pdr_ManPrintProgress( p, 0, clock() - clkStart );
clkStart = clock();
}
......
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