summaryrefslogtreecommitdiff
path: root/src/theory/candidate_generator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/candidate_generator.cpp')
-rw-r--r--src/theory/candidate_generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/candidate_generator.cpp b/src/theory/candidate_generator.cpp
index a0f303c21..2563ef0d7 100644
--- a/src/theory/candidate_generator.cpp
+++ b/src/theory/candidate_generator.cpp
@@ -29,7 +29,7 @@ using namespace CVC4::theory;
using namespace CVC4::theory::inst;
bool CandidateGenerator::isLegalCandidate( Node n ){
- return ( !n.getAttribute(NoMatchAttribute()) && ( !Options::current()->cbqi || !n.hasAttribute(InstConstantAttribute()) ) );
+ return ( !n.getAttribute(NoMatchAttribute()) && ( !options::cbqi() || !n.hasAttribute(InstConstantAttribute()) ) );
}
void CandidateGeneratorQueue::addCandidate( Node n ) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback