3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Expose forall and exists to Julia (#7099)

This commit is contained in:
Yisu Remy Wang 2024-01-25 09:49:01 -08:00 committed by GitHub
parent 9d59d86a1c
commit dec5715f03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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));