Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 20, 2022
1 parent 665ef2c commit 08bf7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/js/src/high-level/high-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 08bf7a6

Please sign in to comment.