summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/rep_set.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/rep_set.cpp b/src/theory/rep_set.cpp
index 7dd8d02f6..e7370311d 100644
--- a/src/theory/rep_set.cpp
+++ b/src/theory/rep_set.cpp
@@ -169,7 +169,8 @@ bool RepSetIterator::initialize(){
}
}
//enumerate if the sort is reasonably small, the upper bound of 1000 is chosen arbitrarily for now
- }else if( tn.getCardinality().isFinite() && tn.getCardinality().getFiniteCardinality().toUnsignedInt()<=1000 ){
+ }else if( tn.getCardinality().isFinite() && !tn.getCardinality().isLargeFinite() &&
+ tn.getCardinality().getFiniteCardinality().toUnsignedInt()<=1000 ){
d_rep_set->complete( tn );
}else{
Trace("fmf-incomplete") << "Incomplete because of quantification of type " << tn << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback