summaryrefslogtreecommitdiff
path: root/examples/hashsmt/word.h
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-01 09:56:14 -0700
committerGitHub <noreply@github.com>2021-04-01 16:56:14 +0000
commit05a53a2ac405bcd18a84024247145f161809c3b0 (patch)
tree34241c0a82f79d717ddbfbb0c294f9a09c7edb0c /examples/hashsmt/word.h
parentafaf4413775ff7d6054a5893f1397ad908e0773c (diff)
Rename namespace CVC5 to cvc5. (#6258)
Diffstat (limited to 'examples/hashsmt/word.h')
-rw-r--r--examples/hashsmt/word.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/hashsmt/word.h b/examples/hashsmt/word.h
index 4a1d142f4..f5b95ba32 100644
--- a/examples/hashsmt/word.h
+++ b/examples/hashsmt/word.h
@@ -35,20 +35,20 @@ namespace hashsmt {
class Word {
/** Expression managaer we're using for all word expressions */
- static CVC5::ExprManager* s_manager;
+ static cvc5::ExprManager* s_manager;
protected:
/** The expression of this word */
- CVC5::Expr d_expr;
+ cvc5::Expr d_expr;
/** Get the expression manager words are using */
- static CVC5::ExprManager* em();
+ static cvc5::ExprManager* em();
- Word(CVC5::Expr expr = CVC5::Expr()) : d_expr(expr) {}
+ Word(cvc5::Expr expr = cvc5::Expr()) : d_expr(expr) {}
/** Extend the representing expression to the given size >= size() */
- CVC5::Expr extendToSize(unsigned size) const;
+ cvc5::Expr extendToSize(unsigned size) const;
public:
@@ -70,10 +70,10 @@ class Word {
void print(std::ostream& out) const;
- CVC5::Expr getExpr() const { return d_expr; }
+ cvc5::Expr getExpr() const { return d_expr; }
/** Returns the comparison expression */
- CVC5::Expr operator==(const Word& b) const;
+ cvc5::Expr operator==(const Word& b) const;
/** Concatenate the given words */
static Word concat(const Word words[], unsigned size);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback