summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2017-12-06 20:57:44 -0600
committerGitHub <noreply@github.com>2017-12-06 20:57:44 -0600
commit691abe521ea8a7e87db51e22880cf101d59bf3e7 (patch)
treea3e7e336a64597a03b3142bd6cd39c7d42322bec /src/theory/theory_engine.cpp
parenta97411d90188fc3ceda419faf7be4b3508e305a5 (diff)
Add command for define-fun-rec and add to API (#1412)
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index d01bd537e..944185b31 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -2193,8 +2193,11 @@ void TheoryEngine::ppUnconstrainedSimp(vector<Node>& assertions)
d_unconstrainedSimp->processAssertions(assertions);
}
-
-void TheoryEngine::setUserAttribute(const std::string& attr, Node n, std::vector<Node>& node_values, std::string str_value) {
+void TheoryEngine::setUserAttribute(const std::string& attr,
+ Node n,
+ const std::vector<Node>& node_values,
+ const std::string& str_value)
+{
Trace("te-attr") << "set user attribute " << attr << " " << n << endl;
if( d_attr_handle.find( attr )!=d_attr_handle.end() ){
for( size_t i=0; i<d_attr_handle[attr].size(); i++ ){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback