summaryrefslogtreecommitdiffstats
path: root/src/proof/fra/fraIndVer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/fra/fraIndVer.c')
-rw-r--r--src/proof/fra/fraIndVer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proof/fra/fraIndVer.c b/src/proof/fra/fraIndVer.c
index 64437607..7c5e9e70 100644
--- a/src/proof/fra/fraIndVer.c
+++ b/src/proof/fra/fraIndVer.c
@@ -59,14 +59,14 @@ int Fra_InvariantVerify( Aig_Man_t * pAig, int nFrames, Vec_Int_t * vClauses, Ve
}
// derive CNF
- pCnf = Cnf_DeriveSimple( pAig, Aig_ManPoNum(pAig) );
+ pCnf = Cnf_DeriveSimple( pAig, Aig_ManCoNum(pAig) );
/*
// add the property
{
Aig_Obj_t * pObj;
int Lits[1];
- pObj = Aig_ManPo( pAig, 0 );
+ pObj = Aig_ManCo( pAig, 0 );
Lits[0] = toLitCond( pCnf->pVarNums[pObj->Id], 1 );
Vec_IntPush( vLits, Lits[0] );