summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-09 17:44:39 -0500
committerGitHub <noreply@github.com>2020-03-09 15:44:39 -0700
commit7ccbc8647811439112951e20d0ec9e4b8448d1de (patch)
tree4b325ae5f739c65032e302e74c711e91856b947d /src
parent92fad93a38c20852468b1e1d017aee2e8d41467a (diff)
Eliminate spurious assertion (#3976)
Diffstat (limited to 'src')
-rw-r--r--src/theory/quantifiers/cegqi/ceg_instantiator.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/theory/quantifiers/cegqi/ceg_instantiator.cpp b/src/theory/quantifiers/cegqi/ceg_instantiator.cpp
index 34e66da9e..0dc8f262e 100644
--- a/src/theory/quantifiers/cegqi/ceg_instantiator.cpp
+++ b/src/theory/quantifiers/cegqi/ceg_instantiator.cpp
@@ -478,7 +478,6 @@ void CegInstantiator::activateInstantiationVariable(Node v, unsigned index)
if( tn.isReal() ){
vinst = new ArithInstantiator(tn, d_parent->getVtsTermCache());
}else if( tn.isSort() ){
- Assert(options::quantEpr());
vinst = new EprInstantiator(tn);
}else if( tn.isDatatype() ){
vinst = new DtInstantiator(tn);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback