mirror of https://github.com/YosysHQ/abc.git
Patching ABC for Yosys.
This commit is contained in:
parent
e73e5438ca
commit
9cbba3cce7
|
|
@ -23370,7 +23370,7 @@ usage:
|
|||
Abc_Print( -2, "\t The paper describing the method: H. Katebi and I. L. Markov.\n" );
|
||||
Abc_Print( -2, "\t \"Large-scale Boolean matching\". Proc. DATE 2010. \n" );
|
||||
Abc_Print( -2, "\t http://www.eecs.umich.edu/~imarkov/pubs/conf/date10-match.pdf\n" );
|
||||
Abc_Print( -2, "\t \n" );
|
||||
// Abc_Print( -2, "\t \n" );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
@ -23480,7 +23480,7 @@ usage:
|
|||
Abc_Print( -2, "\t \"Generalized Boolean Symmetries Through Nested Partition\n");
|
||||
Abc_Print( -2, "\t Refinement\". Proc. ICCAD 2013. \n" );
|
||||
//Abc_Print( -2, "\t http://www.eecs.umich.edu/~imarkov/pubs/conf/date10-match.pdf\n" );
|
||||
Abc_Print( -2, "\t \n" );
|
||||
// Abc_Print( -2, "\t \n" );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -603,9 +603,10 @@ void CmdCommandPrint( Abc_Frame_t * pAbc, int fPrintAll, int fDetails )
|
|||
fprintf( pAbc->Out, "\n" );
|
||||
for ( j = iGroupStart; j < i; j++ )
|
||||
{
|
||||
char *tmp_cmd;
|
||||
fprintf( pAbc->Out, "\n" );
|
||||
// fprintf( pAbc->Out, "--- %s ---\n", ppCommands[j]->sName );
|
||||
char *tmp_cmd = ABC_ALLOC(char, strlen(ppCommands[j]->sName)+4);
|
||||
tmp_cmd = ABC_ALLOC(char, strlen(ppCommands[j]->sName)+4);
|
||||
(void) sprintf(tmp_cmd, "%s -h", ppCommands[j]->sName);
|
||||
(void) Cmd_CommandExecute( pAbc, tmp_cmd );
|
||||
ABC_FREE(tmp_cmd);
|
||||
|
|
@ -629,9 +630,10 @@ void CmdCommandPrint( Abc_Frame_t * pAbc, int fPrintAll, int fDetails )
|
|||
fprintf( pAbc->Out, "\n" );
|
||||
for ( j = iGroupStart; j < i; j++ )
|
||||
{
|
||||
char *tmp_cmd;
|
||||
fprintf( pAbc->Out, "\n" );
|
||||
// fprintf( pAbc->Out, "--- %s ---\n", ppCommands[j]->sName );
|
||||
char *tmp_cmd = ABC_ALLOC(char, strlen(ppCommands[j]->sName)+4);
|
||||
tmp_cmd = ABC_ALLOC(char, strlen(ppCommands[j]->sName)+4);
|
||||
(void) sprintf(tmp_cmd, "%s -h", ppCommands[j]->sName);
|
||||
(void) Cmd_CommandExecute( pAbc, tmp_cmd );
|
||||
ABC_FREE(tmp_cmd);
|
||||
|
|
|
|||
Loading…
Reference in New Issue