summaryrefslogtreecommitdiff
path: root/src/theory/model.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-23 15:28:24 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-23 15:28:24 +0000
commitb11f6d3a27d33b9075e57b37f77ad9d11732fce5 (patch)
treeb00e257f54c8adebe15f92927fc7b51cb61887c7 /src/theory/model.cpp
parent19f0a337307ce0e424b12acf6102829d81dbbf99 (diff)
more updates to inst gen: fixed partial instantiations, recognize duplicate defaults for uf
Diffstat (limited to 'src/theory/model.cpp')
-rw-r--r--src/theory/model.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/model.cpp b/src/theory/model.cpp
index dad1b5fe6..3a3f706ac 100644
--- a/src/theory/model.cpp
+++ b/src/theory/model.cpp
@@ -317,15 +317,15 @@ bool TheoryModel::areDisequal( Node a, Node b ){
//for debugging
void TheoryModel::printRepresentativeDebug( const char* c, Node r ){
if( r.isNull() ){
- Debug( c ) << "null";
+ Trace( c ) << "null";
}else if( r.getType().isBoolean() ){
if( areEqual( r, d_true ) ){
- Debug( c ) << "true";
+ Trace( c ) << "true";
}else{
- Debug( c ) << "false";
+ Trace( c ) << "false";
}
}else{
- Debug( c ) << getRepresentative( r );
+ Trace( c ) << getRepresentative( r );
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback