summaryrefslogtreecommitdiff
path: root/src/theory/rep_set.cpp
diff options
context:
space:
mode:
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