mirror of
https://github.com/Z3Prover/z3
synced 2025-07-24 05:08:55 +00:00
adding a new toy for Clemens
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6963451704
commit
9c8800bdde
8 changed files with 74 additions and 13 deletions
|
@ -200,6 +200,14 @@ public:
|
|||
m_t2->user_propagate_clear();
|
||||
}
|
||||
|
||||
void user_propagate_register_created(user_propagator::register_created_eh_t& created_eh) override {
|
||||
m_t2->user_propagate_register_created(created_eh);
|
||||
}
|
||||
|
||||
func_decl* user_propagate_declare(symbol const& name, unsigned n, sort* const* domain, sort* range) override {
|
||||
return m_t2->user_propagate_declare(name, n, domain, range);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
tactic * and_then(tactic * t1, tactic * t2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue