summaryrefslogtreecommitdiff
path: root/src/theory/evaluator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/evaluator.h')
-rw-r--r--src/theory/evaluator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/evaluator.h b/src/theory/evaluator.h
index 94e6fc518..533a03657 100644
--- a/src/theory/evaluator.h
+++ b/src/theory/evaluator.h
@@ -94,7 +94,7 @@ class Evaluator
*/
Node eval(TNode n,
const std::vector<Node>& args,
- const std::vector<Node>& vals);
+ const std::vector<Node>& vals) const;
private:
/**
@@ -117,7 +117,7 @@ class Evaluator
TNode n,
const std::vector<Node>& args,
const std::vector<Node>& vals,
- std::unordered_map<TNode, Node, NodeHashFunction>& evalAsNode);
+ std::unordered_map<TNode, Node, NodeHashFunction>& evalAsNode) const;
/** reconstruct
*
* This function reconstructs the result of evaluating n using a combination
@@ -130,7 +130,7 @@ class Evaluator
Node reconstruct(
TNode n,
std::unordered_map<TNode, EvalResult, TNodeHashFunction>& eresults,
- std::unordered_map<TNode, Node, NodeHashFunction>& evalAsNode);
+ std::unordered_map<TNode, Node, NodeHashFunction>& evalAsNode) const;
};
} // namespace theory
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback