3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-08-19 18:22:42 -07:00
parent 665ef2c6ba
commit 08bf7a6293

View file

@ -228,7 +228,7 @@ export function createApi(Z3: Z3Core): Z3HighLevel {
return new BoolImpl(ast);
if (Z3.is_quantifier_exists(contextPtr, ast))
return new BoolImpl(ast);
if (Z3.is_quantifier_lambda(contextPtr, ast))
if (Z3.is_lambda(contextPtr, ast))
return new ExprImpl(ast);
assert(false);
}