From 22fbd5227bed7bf52c78689e4de12e0de6f70b7e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dejan=20Jovanovi=C4=87?= Date: Tue, 2 Feb 2010 22:50:35 +0000 Subject: [PATCH] --- src/prop/cnf_stream.cpp | 47 ----------------------------------------- 1 file changed, 47 deletions(-) diff --git a/src/prop/cnf_stream.cpp b/src/prop/cnf_stream.cpp index 0a7774129..17ae60313 100644 --- a/src/prop/cnf_stream.cpp +++ b/src/prop/cnf_stream.cpp @@ -364,55 +364,8 @@ Lit TseitinCnfStream::recTransform(const Node & n) { } void TseitinCnfStream::convertAndAssert(const Node & n) { - //n has already been mapped so use the previous result - if(isCached(n)) { - Lit l = lookupInCache(n); - insertClauseIntoStream(l); - return; - } - Lit e = recTransform(n); insertClauseIntoStream(e); - - //I've commented the following section out because it uses a bit too much intelligence. - - /* - if(n.getKind() == AND){ - // this code is required to efficiently flatten and - // assert each part of the node. - // This would be rendered unnessecary if the input was given differently - queue and_queue; - and_queue.push(n); - - //This was changed to use a queue due to pressure on the C stack. - - //TODO: this does no cacheing of what has been asserted. - //Low hanging fruit - while(!and_queue.empty()){ - Node curr = and_queue.front(); - and_queue.pop(); - if(curr.getKind() == AND){ - for(Node::iterator i = curr.begin(); i != curr.end(); ++i){ - and_queue.push(*i); - } - }else{ - convertAndAssert(curr); - } - } - }else if(n.getKind() == OR){ - //This is special cased so minimal translation is done for things that - //are already in CNF so minimal work is done on clauses. - vec c; - for(Node::iterator i = n.begin(); i != n.end(); ++i){ - Lit cl = recTransform(*i); - c.push(cl); - } - insertClauseIntoStream(c); - }else{ - Lit e = recTransform(n); - insertClauseIntoStream( e ); - } - */ } }/* CVC4::prop namespace */ -- 2.30.2