Commit fa96b8d7 by Alan Mishchenko

Do not allow interpolation with constraints.

parent c1ac6b9b
......@@ -19430,6 +19430,11 @@ int Abc_CommandBmcInter( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "Does not work for combinational networks.\n" );
return 0;
}
if ( Abc_NtkConstrNum(pNtk) > 0 )
{
Abc_Print( -1, "Cannot run interpolation with constraints. Use \"fold\".\n" );
return 0;
}
if ( Abc_NtkPoNum(pNtk)-Abc_NtkConstrNum(pNtk) != 1 )
{
if ( Abc_NtkConstrNum(pNtk) > 0 )
......
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