Commit 6ce9ac9b by Alan Mishchenko

Skip 'scorr' when the network has no primary inputs.

parent 9b543451
......@@ -17658,6 +17658,12 @@ int Abc_CommandSeqSweep2( Abc_Frame_t * pAbc, int argc, char ** argv )
return 0;
}
if ( Abc_NtkPiNum(pNtk) == 0 )
{
Abc_Print( 0, "This command works only for designs with primary inputs.\n" );
return 0;
}
// if constraints are to be used, network should have no constraints
if ( nConstrs > 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