summaryrefslogtreecommitdiff
path: root/src/theory/instantiator_default.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/instantiator_default.cpp')
-rw-r--r--src/theory/instantiator_default.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/instantiator_default.cpp b/src/theory/instantiator_default.cpp
index a1766ce3c..cff16962a 100644
--- a/src/theory/instantiator_default.cpp
+++ b/src/theory/instantiator_default.cpp
@@ -46,7 +46,7 @@ int InstantiatorDefault::process( Node f, Theory::Effort effort, int e ){
if( d_quantEngine->getTheoryEngine()->theoryOf( i )==getTheory() ){ //if it belongs to this theory
Node val = d_th->getValue( i );
Debug("quant-default") << "Default Instantiate for " << d_th->getId() << ", setting " << i << " = " << val << std::endl;
- m.d_map[ i ] = val;
+ m.set( i, val);
}
}
d_quantEngine->addInstantiation( f, m );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback