diff --git a/src/interp/iz3mgr.cpp b/src/interp/iz3mgr.cpp index b9a3fd0b0..75948f348 100644 --- a/src/interp/iz3mgr.cpp +++ b/src/interp/iz3mgr.cpp @@ -708,7 +708,7 @@ iz3mgr::ast iz3mgr::mk_idiv(const ast& t, const ast &d){ // does variable occur in expression? -int iz3mgr::occurs_in1(hash_map &occurs_in_memo,ast var, ast e){ +int iz3mgr::occurs_in1(stl_ext::hash_map &occurs_in_memo,ast var, ast e){ std::pair foo(e,false); std::pair::iterator,bool> bar = occurs_in_memo.insert(foo); bool &res = bar.first->second; @@ -732,7 +732,7 @@ int iz3mgr::occurs_in(ast var, ast e){ // false would force the formula to have the specifid truth value // returns t, or null if no such -iz3mgr::ast iz3mgr::cont_eq(hash_set &cont_eq_memo, bool truth, ast v, ast e){ +iz3mgr::ast iz3mgr::cont_eq(stl_ext::hash_set &cont_eq_memo, bool truth, ast v, ast e){ if(is_not(e)) return cont_eq(cont_eq_memo, !truth,v,arg(e,0)); if(cont_eq_memo.find(e) != cont_eq_memo.end()) return ast(); @@ -759,7 +759,7 @@ iz3mgr::ast iz3mgr::cont_eq(hash_set &cont_eq_memo, bool truth, ast v, ast // substitute a term t for unbound occurrences of variable v in e -iz3mgr::ast iz3mgr::subst(hash_map &subst_memo, ast var, ast t, ast e){ +iz3mgr::ast iz3mgr::subst(stl_ext::hash_map &subst_memo, ast var, ast t, ast e){ if(e == var) return t; std::pair foo(e,ast()); std::pair::iterator,bool> bar = subst_memo.insert(foo); diff --git a/src/interp/iz3proof_itp.cpp b/src/interp/iz3proof_itp.cpp index 9d15912c2..21a455a3a 100644 --- a/src/interp/iz3proof_itp.cpp +++ b/src/interp/iz3proof_itp.cpp @@ -2058,7 +2058,7 @@ class iz3proof_itp_impl : public iz3proof_itp { bool is_placeholder(const ast &e){ if(op(e) == Uninterpreted){ std::string name = string_of_symbol(sym(e)); - if(name.size() > 2 && name[0] == '@' and name[1] == 'p') + if(name.size() > 2 && name[0] == '@' && name[1] == 'p') return true; } return false;