Change error to warning in 'scorr'.

This commit is contained in:
Alan Mishchenko 2016-03-09 09:33:10 +09:00
parent 73cbe319ff
commit 847d661bee
1 changed files with 2 additions and 2 deletions

View File

@ -18904,13 +18904,13 @@ int Abc_CommandSeqSweep2( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( Abc_NtkIsComb(pNtk) )
{
Abc_Print( -1, "The network is combinational (run \"fraig\" or \"fraig_sweep\").\n" );
Abc_Print( 0, "The network is combinational (run \"fraig\" or \"fraig_sweep\").\n" );
return 0;
}
if ( !Abc_NtkIsStrash(pNtk) )
{
Abc_Print( -1, "This command works only for structrally hashed networks. Run \"st\".\n" );
Abc_Print( 0, "This command works only for structrally hashed networks. Run \"st\".\n" );
return 0;
}