summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_database.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-11-02 20:54:11 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-11-02 20:54:11 +0000
commit1c779966545190efa59b019572237562eea66dbf (patch)
treef827fe0e4bcbbca8c84174f815948b3212391423 /src/theory/quantifiers/term_database.h
parentf40d0a7cc8d6af511cc0817caf8df3296a59f380 (diff)
more minor updates to inst gen and representative selection, clean up of equality query
Diffstat (limited to 'src/theory/quantifiers/term_database.h')
-rw-r--r--src/theory/quantifiers/term_database.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/term_database.h b/src/theory/quantifiers/term_database.h
index e1786d44c..5060ac1a7 100644
--- a/src/theory/quantifiers/term_database.h
+++ b/src/theory/quantifiers/term_database.h
@@ -154,9 +154,9 @@ private:
void makeInstantiationConstantsFor( Node f );
public:
/** get the i^th instantiation constant of f */
- Node getInstantiationConstant( Node f, int i ) { return d_inst_constants[f][i]; }
+ Node getInstantiationConstant( Node f, int i ) const;
/** get number of instantiation constants for f */
- int getNumInstantiationConstants( Node f ) { return (int)d_inst_constants[f].size(); }
+ int getNumInstantiationConstants( Node f ) const;
/** get the ce body f[e/x] */
Node getInstConstantBody( Node f );
/** get counterexample literal (for cbqi) */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback