summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-01-29 21:22:54 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-01-29 21:22:54 -0800
commit7ea40494eb637c5c717c3fa80529bfbbec897f83 (patch)
treeb5f2502ec6dbad3dff161ce525901200229841e1 /src/base/abci
parente511b872370f8f9928b08381ff53f2b8a3669ba7 (diff)
downloadabc-7ea40494eb637c5c717c3fa80529bfbbec897f83.tar.gz
abc-7ea40494eb637c5c717c3fa80529bfbbec897f83.tar.bz2
abc-7ea40494eb637c5c717c3fa80529bfbbec897f83.zip
Graph isomorphism checking code.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 95954f54..c71cfc7b 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -8837,6 +8837,7 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
extern void Aig_ManSupportsTest( Aig_Man_t * pMan );
extern int Aig_SupportSizeTest( Aig_Man_t * pMan );
extern int Abc_NtkSuppSizeTest( Abc_Ntk_t * p );
+ extern void Iso_ManTest( Aig_Man_t * pAig, int fVerbose );
if ( pNtk )
{
Aig_Man_t * pAig = Abc_NtkToDar( pNtk, 0, 1 );
@@ -8844,7 +8845,7 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
// Aig_ManInterTest( pAig, 1 );
// Aig_ManSupportsTest( pAig );
// Aig_SupportSizeTest( pAig );
- Abc_NtkSuppSizeTest( pNtk );
+ Iso_ManTest( pAig, fVerbose );
Aig_ManStop( pAig );
}
}