summaryrefslogtreecommitdiffstats
path: root/src/aig/ivy
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-11-25 18:08:48 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2011-11-25 18:08:48 -0800
commitd2db956a618fd9be1915a6c66b063c894e540fee (patch)
tree0b2df03a20bfccd0b2d1eab44cfd456a1070c244 /src/aig/ivy
parent0f594b78fae6f45cee463fe47e6f2c0fb33abaf2 (diff)
downloadabc-d2db956a618fd9be1915a6c66b063c894e540fee.tar.gz
abc-d2db956a618fd9be1915a6c66b063c894e540fee.tar.bz2
abc-d2db956a618fd9be1915a6c66b063c894e540fee.zip
Started experiments with a new solver.
Diffstat (limited to 'src/aig/ivy')
-rw-r--r--src/aig/ivy/ivyFraig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aig/ivy/ivyFraig.c b/src/aig/ivy/ivyFraig.c
index 87209ca3..b53805b4 100644
--- a/src/aig/ivy/ivyFraig.c
+++ b/src/aig/ivy/ivyFraig.c
@@ -2907,14 +2907,14 @@ printf( "***************\n" );
***********************************************************************/
int Ivy_FraigCheckCone( Ivy_FraigMan_t * pGlo, Ivy_Man_t * p, Ivy_Obj_t * pObj1, Ivy_Obj_t * pObj2, int nConfLimit )
{
- extern int Fra_FraigSat( Aig_Man_t * pMan, ABC_INT64_T nConfLimit, ABC_INT64_T nInsLimit, int fFlipBits, int fAndOuts, int fVerbose );
+ extern int Fra_FraigSat( Aig_Man_t * pMan, ABC_INT64_T nConfLimit, ABC_INT64_T nInsLimit, int fFlipBits, int fAndOuts, int fNewSolver, int fVerbose );
Vec_Int_t * vLeaves;
Aig_Man_t * pMan;
Aig_Obj_t * pObj;
int i, RetValue;
vLeaves = Vec_IntAlloc( 100 );
pMan = Ivy_FraigExtractCone( p, pObj1, pObj2, vLeaves );
- RetValue = Fra_FraigSat( pMan, nConfLimit, 0, 0, 0, 1 );
+ RetValue = Fra_FraigSat( pMan, nConfLimit, 0, 0, 0, 0, 1 );
if ( RetValue == 0 )
{
int Counter = 0;