Skip to content

Commit

Permalink
Expose forall and exists to Julia (#7099)
Browse files Browse the repository at this point in the history
  • Loading branch information
remysucre committed Jan 25, 2024
1 parent 9d59d86 commit dec5715
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/julia/z3jl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,8 @@ JLCXX_MODULE define_julia_module(jlcxx::Module &m)
m.method("xnor", &xnor);
m.method("min", &min);
m.method("max", &max);
m.method("exists", static_cast<expr (*)(expr_vector const &, expr const &)>(&exists));
m.method("forall", static_cast<expr (*)(expr_vector const &, expr const &)>(&forall));
m.method("abs", static_cast<expr (*)(expr const &)>(&abs));
m.method("sqrt", static_cast<expr (*)(expr const &, expr const &)>(&sqrt));
m.method("fma", static_cast<expr (*)(expr const &, expr const &, expr const &, expr const &)>(&fma));
Expand Down

0 comments on commit dec5715

Please sign in to comment.