summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index b979ad67..30be411f 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -33403,7 +33403,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern void Gia_ManMuxProfiling( Gia_Man_t * p );
// extern Gia_Man_t * Mig_ManTest( Gia_Man_t * pGia );
// extern Gia_Man_t * Gia_ManInterTest( Gia_Man_t * p );
- extern Gia_Man_t * Llb_ReachableStatesGia( Gia_Man_t * p );
+// extern Gia_Man_t * Llb_ReachableStatesGia( Gia_Man_t * p );
+ extern Gia_Man_t * Unm_ManTest( Gia_Man_t * pGia );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Fsvh" ) ) != EOF )
@@ -33477,8 +33478,9 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// Abc_FrameUpdateGia( pAbc, pTemp );
// pTemp = Gia_ManInterTest( pAbc->pGia );
// Abc_FrameUpdateGia( pAbc, pTemp );
- pTemp = Llb_ReachableStatesGia( pAbc->pGia );
- Abc_FrameUpdateGia( pAbc, pTemp );
+// pTemp = Llb_ReachableStatesGia( pAbc->pGia );
+// Abc_FrameUpdateGia( pAbc, pTemp );
+ Unm_ManTest( pAbc->pGia );
return 0;
usage:
Abc_Print( -2, "usage: &test [-F num] [-svh]\n" );