summaryrefslogtreecommitdiff
path: root/src/util/sexpr.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-10 22:15:38 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-10 22:15:38 +0000
commitd6b37239a2e525e7878d3bb0b4372a8dabc340a9 (patch)
tree3db6b54c8b5873db1e6c91b1577d431d74632c66 /src/util/sexpr.h
parent7a059452ebf5729723f610da9258a47007e38253 (diff)
additional model gen and SMT-LIBv2 compliance work: (get-assignment) now supported; work on Result type (biggest noticeable change is that CVC4 now outputs lowercase "sat" and "unsat"), Options class moved to src/smt, to allow for future work on runtime configuration via (set-option) command
Diffstat (limited to 'src/util/sexpr.h')
-rw-r--r--src/util/sexpr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/sexpr.h b/src/util/sexpr.h
index 9821664bd..376a8a224 100644
--- a/src/util/sexpr.h
+++ b/src/util/sexpr.h
@@ -38,7 +38,7 @@ class CVC4_PUBLIC SExpr {
bool d_isAtom;
/** The value of an atomic S-expression. */
- std::string d_value;
+ std::string d_stringValue;
/** The children of a list S-expression. */
std::vector<SExpr> d_children;
@@ -50,7 +50,7 @@ public:
SExpr(const std::string& value) :
d_isAtom(true),
- d_value(value) {
+ d_stringValue(value) {
}
SExpr(const std::vector<SExpr> children) :
@@ -80,7 +80,7 @@ inline bool SExpr::isAtom() const {
inline const std::string SExpr::getValue() const {
AlwaysAssert( d_isAtom );
- return d_value;
+ return d_stringValue;
}
inline const std::vector<SExpr> SExpr::getChildren() const {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback