diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-19 12:57:05 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-19 12:57:05 -0800 |
commit | e3f87e189c880251c579b9fd22c04ca70b80f63d (patch) | |
tree | 0bab7a609e4191f65821009fd782351031444d27 /src/base/io/ioWriteDot.c | |
parent | ba6095ce610ce582dd390fadcdc3ae7a71c66f7d (diff) | |
download | abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.gz abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.bz2 abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.zip |
Propagating changes after updating flag of 'sop'.
Diffstat (limited to 'src/base/io/ioWriteDot.c')
-rw-r--r-- | src/base/io/ioWriteDot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/io/ioWriteDot.c b/src/base/io/ioWriteDot.c index 339efd8f..7de6bd81 100644 --- a/src/base/io/ioWriteDot.c +++ b/src/base/io/ioWriteDot.c @@ -100,7 +100,7 @@ void Io_WriteDotNtk( Abc_Ntk_t * pNtk, Vec_Ptr_t * vNodes, Vec_Ptr_t * vNodesSho // transform logic functions from BDD to SOP if ( (fHasBdds = Abc_NtkIsBddLogic(pNtk)) ) { - if ( !Abc_NtkBddToSop(pNtk, 0, ABC_INFINITY) ) + if ( !Abc_NtkBddToSop(pNtk, -1, ABC_INFINITY) ) { printf( "Io_WriteDotNtk(): Converting to SOPs has failed.\n" ); return; @@ -463,7 +463,7 @@ void Io_WriteDotSeq( Abc_Ntk_t * pNtk, Vec_Ptr_t * vNodes, Vec_Ptr_t * vNodesSho // transform logic functions from BDD to SOP if ( (fHasBdds = Abc_NtkIsBddLogic(pNtk)) ) { - if ( !Abc_NtkBddToSop(pNtk, 0, ABC_INFINITY) ) + if ( !Abc_NtkBddToSop(pNtk, -1, ABC_INFINITY) ) { printf( "Io_WriteDotNtk(): Converting to SOPs has failed.\n" ); return; |