mirror of https://github.com/YosysHQ/abc.git
Added error message when the user is trying 'dsat' for multi-output comb miters.
This commit is contained in:
parent
9cb16d654a
commit
c1f4545e07
|
|
@ -130,7 +130,7 @@ Aig_Obj_t * Aig_ObjCreate( Aig_Man_t * p, Aig_Obj_t * pGhost )
|
|||
}
|
||||
return pObj;
|
||||
}
|
||||
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
Synopsis [Connect the object to the fanin.]
|
||||
|
|
|
|||
|
|
@ -19704,13 +19704,13 @@ int Abc_CommandDSat( Abc_Frame_t * pAbc, int argc, char ** argv )
|
|||
Abc_Print( -1, "Currently can only solve the miter for combinational circuits.\n" );
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
|
||||
if ( Abc_NtkPoNum(pNtk) != 1 )
|
||||
{
|
||||
Abc_Print( -1, "Currently expects a single-output miter.\n" );
|
||||
return 0;
|
||||
}
|
||||
*/
|
||||
|
||||
if ( !Abc_NtkIsStrash(pNtk) )
|
||||
{
|
||||
Abc_Print( -1, "Currently only works for structurally hashed circuits.\n" );
|
||||
|
|
|
|||
Loading…
Reference in New Issue