Commit 5e7de1f8 by Alan Mishchenko

Added report about exceeding the conflict limit in 'ind'.

parent fbd6a08e
...@@ -318,7 +318,9 @@ nextrun: ...@@ -318,7 +318,9 @@ nextrun:
} }
if ( fVerbose ) if ( fVerbose )
{ {
if ( fUnique || fUniqueAll ) if ( status == l_Undef )
printf( "Conflict limit (%d) was reached during iteration %d.\n", nConfMax, f+1 );
else if ( fUnique || fUniqueAll )
printf( "Completed %d interations and added %d uniqueness constraints.\n", f+1, nConstrs ); printf( "Completed %d interations and added %d uniqueness constraints.\n", f+1, nConstrs );
else else
printf( "Completed %d interations.\n", f+1 ); printf( "Completed %d interations.\n", f+1 );
......
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