summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-07-06 13:33:55 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-07-06 13:33:55 -0500
commit673bb476c2a1b51abbc95acb0afaf4e3b8a9feb7 (patch)
treeff5b597fe15afaeb83eae9e32d732f6bf27bff67 /src/theory/theory_model.h
parentcbc5adb5d4f131ea6bf9a40b0c27fecf67353b4d (diff)
Add comment field for model, resolves hack for printing sep logic models.
Diffstat (limited to 'src/theory/theory_model.h')
-rw-r--r--src/theory/theory_model.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/theory/theory_model.h b/src/theory/theory_model.h
index 833b124eb..3ee1be530 100644
--- a/src/theory/theory_model.h
+++ b/src/theory/theory_model.h
@@ -53,7 +53,10 @@ public:
Node d_true;
Node d_false;
mutable std::hash_map<Node, Node, NodeHashFunction> d_modelCache;
-
+ /** comment stream to include in printing */
+ std::stringstream d_comment_str;
+ /** get comments */
+ void getComments(std::ostream& out) const;
protected:
/** reset the model */
virtual void reset();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback