summaryrefslogtreecommitdiffstats
path: root/src/opt
diff options
context:
space:
mode:
Diffstat (limited to 'src/opt')
-rw-r--r--src/opt/res/resCore.c2
-rw-r--r--src/opt/ret/retCore.c2
-rw-r--r--src/opt/ret/retInit.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/opt/res/resCore.c b/src/opt/res/resCore.c
index 95728e9a..4cc5e56b 100644
--- a/src/opt/res/resCore.c
+++ b/src/opt/res/resCore.c
@@ -197,7 +197,7 @@ int Abc_NtkResynthesize( Abc_Ntk_t * pNtk, Res_Par_t * pPars )
Abc_NtkSweep( pNtk, 0 );
// convert into the AIG
- if ( !Abc_NtkLogicToAig(pNtk) )
+ if ( !Abc_NtkToAig(pNtk) )
{
fprintf( stdout, "Converting to BDD has failed.\n" );
Res_ManFree( p );
diff --git a/src/opt/ret/retCore.c b/src/opt/ret/retCore.c
index 93181898..551ec594 100644
--- a/src/opt/ret/retCore.c
+++ b/src/opt/ret/retCore.c
@@ -116,7 +116,7 @@ int Abc_NtkRetimeDebug( Abc_Ntk_t * pNtk )
extern int Abc_NtkSecFraig( Abc_Ntk_t * pNtk1, Abc_Ntk_t * pNtk2, int nSeconds, int nFrames, int fVerbose );
Abc_Ntk_t * pNtkRet;
assert( Abc_NtkIsLogic(pNtk) );
- Abc_NtkLogicToSop( pNtk, 0 );
+ Abc_NtkToSop( pNtk, 0 );
// if ( !Abc_NtkCheck( pNtk ) )
// fprintf( stdout, "Abc_NtkRetimeDebug(): Network check has failed.\n" );
// Io_WriteBlifLogic( pNtk, "debug_temp.blif", 1 );
diff --git a/src/opt/ret/retInit.c b/src/opt/ret/retInit.c
index 156df0dc..dcb71c60 100644
--- a/src/opt/ret/retInit.c
+++ b/src/opt/ret/retInit.c
@@ -50,7 +50,7 @@ Vec_Int_t * Abc_NtkRetimeInitialValues( Abc_Ntk_t * pNtkCone, Vec_Int_t * vValue
return Vec_IntDup( vValues );
// convert the target network to AIG
pNtkLogic = Abc_NtkDup( pNtkCone );
- Abc_NtkLogicToAig( pNtkLogic );
+ Abc_NtkToAig( pNtkLogic );
// get the miter
pNtkMiter = Abc_NtkCreateTarget( pNtkLogic, pNtkLogic->vCos, vValues );
if ( fVerbose )