mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
possibly fix internalization bug mentioned in #2
(this leads to a not-implemented-yet in final_check_eh() due to missing code surrounding free variable production)
This commit is contained in:
parent
e521ab2c3a
commit
3ee8f27588
1 changed files with 2 additions and 0 deletions
|
@ -1837,6 +1837,8 @@ void theory_str::process_concat_eq_type6(expr * concatAst1, expr * concatAst2) {
|
|||
*/
|
||||
expr * theory_str::get_eqc_value(expr * n, bool & hasEqcValue) {
|
||||
context & ctx = get_context();
|
||||
// I hope this works
|
||||
ctx.internalize(n, false);
|
||||
enode * nNode = ctx.get_enode(n);
|
||||
enode * eqcNode = nNode;
|
||||
do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue