From 878e19cfb8c5f35f8c640eff5e7f86ccb4313538 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Sun, 28 Nov 2010 04:01:45 +0000 Subject: [PATCH] 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 --- src/to-sat/AIG/BBNodeManagerAIG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3