summaryrefslogtreecommitdiff
path: root/src/theory/rep_set.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-06-09 11:45:14 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-06-09 11:45:14 +0200
commit3fbe87912dbffe70cf01fdf0b4652960998ea480 (patch)
tree252c48277f8d2946823d80610c2065148fc8422e /src/theory/rep_set.cpp
parent591649f4631e348b65b61d3f1f4ccfe1f6baf7cc (diff)
Bug fix instantiations for fmf-bound-int. Disable nested pre-skolemization for non-UF logics. Update SMT COMP scripts accordingly.
Diffstat (limited to 'src/theory/rep_set.cpp')
-rw-r--r--src/theory/rep_set.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/rep_set.cpp b/src/theory/rep_set.cpp
index 5580dc3d7..4ab8df72f 100644
--- a/src/theory/rep_set.cpp
+++ b/src/theory/rep_set.cpp
@@ -370,7 +370,9 @@ bool RepSetIterator::isFinished(){
}
Node RepSetIterator::getTerm( int i ){
- int index = d_index_order[i];
+ Trace("rsi-debug") << "rsi : get term " << i << ", index order = " << d_index_order[i] << std::endl;
+ //int index = d_index_order[i];
+ int index = i;
if( d_enum_type[index]==ENUM_DOMAIN_ELEMENTS ){
TypeNode tn = d_types[index];
Assert( d_rep_set->d_type_reps.find( tn )!=d_rep_set->d_type_reps.end() );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback