summaryrefslogtreecommitdiff
path: root/examples/hashsmt/word.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hashsmt/word.cpp')
-rw-r--r--examples/hashsmt/word.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/hashsmt/word.cpp b/examples/hashsmt/word.cpp
index 5fd5b7979..79b868d1c 100644
--- a/examples/hashsmt/word.cpp
+++ b/examples/hashsmt/word.cpp
@@ -33,8 +33,8 @@
using namespace std;
using namespace hashsmt;
-using namespace CVC5;
-using namespace CVC5::options;
+using namespace cvc5;
+using namespace cvc5::options;
Expr Word::extendToSize(unsigned newSize) const {
if (newSize <= size()) {
@@ -50,10 +50,10 @@ ExprManager* Word::s_manager = 0;
ExprManager* Word::em() {
if (s_manager == 0) {
- CVC5::Options options;
+ cvc5::Options options;
options.setInputLanguage(language::input::LANG_SMTLIB_V2);
options.setOutputLanguage(language::output::LANG_SMTLIB_V2);
- s_manager = new CVC5::ExprManager(options);
+ s_manager = new cvc5::ExprManager(options);
}
return s_manager;
}
@@ -71,7 +71,7 @@ Word Word::concat(const Word words[], unsigned size) {
}
void Word::print(ostream& out) const {
- out << CVC5::expr::ExprSetDepth(-1) << d_expr;
+ out << cvc5::expr::ExprSetDepth(-1) << d_expr;
}
Word::Word(unsigned newSize, unsigned value) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback