summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcMfs.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-02-19 12:57:05 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-02-19 12:57:05 -0800
commite3f87e189c880251c579b9fd22c04ca70b80f63d (patch)
tree0bab7a609e4191f65821009fd782351031444d27 /src/base/abci/abcMfs.c
parentba6095ce610ce582dd390fadcdc3ae7a71c66f7d (diff)
downloadabc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.gz
abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.bz2
abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.zip
Propagating changes after updating flag of 'sop'.
Diffstat (limited to 'src/base/abci/abcMfs.c')
-rw-r--r--src/base/abci/abcMfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/abci/abcMfs.c b/src/base/abci/abcMfs.c
index d2ac549e..67ecf48d 100644
--- a/src/base/abci/abcMfs.c
+++ b/src/base/abci/abcMfs.c
@@ -261,7 +261,7 @@ int Abc_NtkPerformMfs( Abc_Ntk_t * pNtk, Sfm_Par_t * pPars )
return 0;
}
if ( !Abc_NtkHasSop(pNtk) )
- if ( !Abc_NtkToSop( pNtk, 0, ABC_INFINITY ) )
+ if ( !Abc_NtkToSop( pNtk, -1, ABC_INFINITY ) )
{
printf( "Conversion to SOP has failed due to low resource limit.\n" );
return 0;
@@ -442,7 +442,7 @@ int Abc_NtkMfsAfterICheck( Abc_Ntk_t * p, int nFrames, int nFramesAdd, Vec_Int_t
return 0;
}
if ( !Abc_NtkHasSop(p) )
- Abc_NtkToSop( p, 0, ABC_INFINITY );
+ Abc_NtkToSop( p, -1, ABC_INFINITY );
// derive unfolded network
pNtk = Abc_NtkUnrollAndDrop( p, nFrames, nFramesAdd, vFlops, &iPivot );
Io_WriteBlifLogic( pNtk, "unroll_dump.blif", 0 );
@@ -466,7 +466,7 @@ int Abc_NtkMfsAfterICheck( Abc_Ntk_t * p, int nFrames, int nFramesAdd, Vec_Int_t
// perform final sweep
Abc_NtkSweep( p, 0 );
if ( !Abc_NtkHasSop(p) )
- Abc_NtkToSop( p, 0, ABC_INFINITY );
+ Abc_NtkToSop( p, -1, ABC_INFINITY );
return 1;
}