summaryrefslogtreecommitdiff
path: root/src/theory/theory_model.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-02-06 15:55:40 -0800
committerAina Niemetz <aina.niemetz@gmail.com>2018-02-06 15:55:40 -0800
commitb258ebd1cb08252f8cf7f317c08eadbe1fb8e8fe (patch)
treead5a36fc8bad0c95ef7e9538314e81ce683c2cee /src/theory/theory_model.h
parentaf20fc43b48217ebc402ad0def388e7a21b49c47 (diff)
Resolving warnings from -Winconsistent-missing-override on clang. (#1563)
Diffstat (limited to 'src/theory/theory_model.h')
-rw-r--r--src/theory/theory_model.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/theory_model.h b/src/theory/theory_model.h
index 934a09a8e..1f9fd92d4 100644
--- a/src/theory/theory_model.h
+++ b/src/theory/theory_model.h
@@ -162,13 +162,13 @@ public:
*/
Node getValue(TNode n, bool useDontCares = false) const;
/** get comments */
- void getComments(std::ostream& out) const;
+ void getComments(std::ostream& out) const override;
//---------------------------- separation logic
/** set the heap and value sep.nil is equal to */
void setHeapModel(Node h, Node neq);
/** get the heap and value sep.nil is equal to */
- bool getHeapModel(Expr& h, Expr& neq) const;
+ bool getHeapModel(Expr& h, Expr& neq) const override;
//---------------------------- end separation logic
/** get the representative set object */
@@ -176,11 +176,11 @@ public:
/** get the representative set object (FIXME: remove this, see #1199) */
RepSet* getRepSetPtr() { return &d_rep_set; }
/** return whether this node is a don't-care */
- bool isDontCare(Expr expr) const;
+ bool isDontCare(Expr expr) const override;
/** get value function for Exprs. */
- Expr getValue( Expr expr ) const;
+ Expr getValue(Expr expr) const override;
/** get cardinality for sort */
- Cardinality getCardinality( Type t ) const;
+ Cardinality getCardinality(Type t) const override;
/** print representative debug function */
void printRepresentativeDebug( const char* c, Node r );
/** print representative function */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback