mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
add back dotnet after adding ;*.cs to path
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5fa177a650
commit
66b38eac9f
6 changed files with 50 additions and 13 deletions
|
@ -47,6 +47,7 @@ namespace recfun {
|
|||
|
||||
class replace {
|
||||
public:
|
||||
virtual ~replace() {}
|
||||
virtual void reset() = 0;
|
||||
virtual void insert(expr* d, expr* r) = 0;
|
||||
virtual expr_ref operator()(expr* e) = 0;
|
||||
|
@ -197,7 +198,7 @@ namespace recfun {
|
|||
};
|
||||
}
|
||||
|
||||
// Varus utils for recursive functions
|
||||
// Various utils for recursive functions
|
||||
class util {
|
||||
friend class decl::plugin;
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ class recfun_replace : public recfun::replace {
|
|||
expr_safe_replace m_replace;
|
||||
public:
|
||||
recfun_replace(ast_manager& m): m(m), m_replace(m) {}
|
||||
~recfun_replace() override {}
|
||||
void reset() override { m_replace.reset(); }
|
||||
void insert(expr* s, expr* t) override { m_replace.insert(s, t); }
|
||||
expr_ref operator()(expr* e) override { expr_ref r(m); m_replace(e, r); return r; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue