mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 10:41:35 +00:00
introduce notion of beta redex to deal with lambdas in non-extensional positions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b9b5377c69
commit
8efa3c8ade
10 changed files with 65 additions and 51 deletions
|
@ -321,6 +321,13 @@ namespace smt {
|
|||
virtual bool is_shared(theory_var v) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
\brief Determine if node \c n under parent \c p is in a beta redex position.
|
||||
*/
|
||||
virtual bool is_beta_redex(enode* p, enode* n) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
\brief Return true if the theory has something to propagate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue