From: trevor_hansen Date: Sun, 28 Nov 2010 04:01:45 +0000 (+0000) Subject: Reduce the cutover for the advance CNF generator to 2M nodes. Annoyingly much more... X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=878e19cfb8c5f35f8c640eff5e7f86ccb4313538;p=francis%2Fstp.git Reduce the cutover for the advance CNF generator to 2M nodes. Annoyingly much more causes a segfault when memory is exhausted. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1033 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/to-sat/AIG/BBNodeManagerAIG.cpp b/src/to-sat/AIG/BBNodeManagerAIG.cpp index db97940..60c1ca7 100644 --- a/src/to-sat/AIG/BBNodeManagerAIG.cpp +++ b/src/to-sat/AIG/BBNodeManagerAIG.cpp @@ -56,7 +56,7 @@ namespace BEEV break; } } - if (aigMgr->nObjs[AIG_OBJ_AND] < 10000000) + if (aigMgr->nObjs[AIG_OBJ_AND] < 2000000) cnfData = Cnf_Derive(aigMgr, 0); else cnfData = Cnf_DeriveSimple(aigMgr, 0);