Commit 964c5cd5 by Alan Mishchenko

Typo in the comment.

parent 22806448
...@@ -392,7 +392,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars ) ...@@ -392,7 +392,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars )
{ {
if ( nFaninMax > 8 ) if ( nFaninMax > 8 )
{ {
printf( "Nodes with more than %d fanins will node be processed.\n", 8 ); printf( "Nodes with more than %d fanins will not be processed.\n", 8 );
nFaninMax = 8; nFaninMax = 8;
} }
} }
...@@ -400,7 +400,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars ) ...@@ -400,7 +400,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars )
{ {
if ( nFaninMax > MFS_FANIN_MAX ) if ( nFaninMax > MFS_FANIN_MAX )
{ {
printf( "Nodes with more than %d fanins will node be processed.\n", MFS_FANIN_MAX ); printf( "Nodes with more than %d fanins will not be processed.\n", MFS_FANIN_MAX );
nFaninMax = MFS_FANIN_MAX; nFaninMax = MFS_FANIN_MAX;
} }
} }
......
...@@ -225,7 +225,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars ) ...@@ -225,7 +225,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars )
{ {
if ( nFaninMax > 8 ) if ( nFaninMax > 8 )
{ {
printf( "Nodes with more than %d fanins will node be processed.\n", 8 ); printf( "Nodes with more than %d fanins will not be processed.\n", 8 );
nFaninMax = 8; nFaninMax = 8;
} }
} }
...@@ -233,7 +233,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars ) ...@@ -233,7 +233,7 @@ int Abc_NtkMfs( Abc_Ntk_t * pNtk, Mfs_Par_t * pPars )
{ {
if ( nFaninMax > MFS_FANIN_MAX ) if ( nFaninMax > MFS_FANIN_MAX )
{ {
printf( "Nodes with more than %d fanins will node be processed.\n", MFS_FANIN_MAX ); printf( "Nodes with more than %d fanins will not be processed.\n", MFS_FANIN_MAX );
nFaninMax = MFS_FANIN_MAX; nFaninMax = MFS_FANIN_MAX;
} }
} }
......
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