summaryrefslogtreecommitdiff
path: root/src/theory/valuation.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2011-04-07 19:28:25 +0000
committerTim King <taking@cs.nyu.edu>2011-04-07 19:28:25 +0000
commitf2696072837541f16932b1fd5f5740d45b4341b9 (patch)
tree79eddf644995df24338f75d645981bba3a9cce42 /src/theory/valuation.h
parenteca82ddc05ff6e81592f7cceec60b0d3269bab5c (diff)
Made Valuation::getValue() and Valuation::getSatValue() const.
Diffstat (limited to 'src/theory/valuation.h')
-rw-r--r--src/theory/valuation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/valuation.h b/src/theory/valuation.h
index 94c2bc12f..0c60ec5ea 100644
--- a/src/theory/valuation.h
+++ b/src/theory/valuation.h
@@ -38,7 +38,7 @@ public:
d_engine(engine) {
}
- Node getValue(TNode n);
+ Node getValue(TNode n) const;
/**
* Get the current SAT assignment to the node n.
@@ -48,7 +48,7 @@ public:
*
* @return Node::null() if no current assignment; otherwise true or false.
*/
- Node getSatValue(TNode n);
+ Node getSatValue(TNode n) const;
};/* class Valuation */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback