#include <z3++.h>
|
| probe | operator<= (probe const &p1, probe const &p2) |
| probe | operator<= (probe const &p1, double p2) |
| probe | operator<= (double p1, probe const &p2) |
| probe | operator>= (probe const &p1, probe const &p2) |
| probe | operator>= (probe const &p1, double p2) |
| probe | operator>= (double p1, probe const &p2) |
| probe | operator< (probe const &p1, probe const &p2) |
| probe | operator< (probe const &p1, double p2) |
| probe | operator< (double p1, probe const &p2) |
| probe | operator> (probe const &p1, probe const &p2) |
| probe | operator> (probe const &p1, double p2) |
| probe | operator> (double p1, probe const &p2) |
| probe | operator== (probe const &p1, probe const &p2) |
| probe | operator== (probe const &p1, double p2) |
| probe | operator== (double p1, probe const &p2) |
| probe | operator&& (probe const &p1, probe const &p2) |
| probe | operator|| (probe const &p1, probe const &p2) |
| probe | operator! (probe const &p) |
Definition at line 3546 of file z3++.h.
◆ probe() [1/4]
| probe |
( |
context & | c, |
|
|
char const * | name ) |
|
inline |
Definition at line 3553 of file z3++.h.
3553:object(c) { Z3_probe r =
Z3_mk_probe(c, name); check_error(); init(r); }
Z3_probe Z3_API Z3_mk_probe(Z3_context c, Z3_string name)
Return a probe associated with the given name. The complete list of probes may be obtained using the ...
Referenced by operator!, operator&&, operator<, operator<, operator<, operator<=, operator<=, operator<=, operator=(), operator==, operator==, operator==, operator>, operator>, operator>, operator>=, operator>=, operator>=, operator||, and probe().
◆ probe() [2/4]
Definition at line 3554 of file z3++.h.
3554:object(c) { Z3_probe r =
Z3_probe_const(c, val); check_error(); init(r); }
Z3_probe Z3_API Z3_probe_const(Z3_context x, double val)
Return a probe that always evaluates to val.
◆ probe() [3/4]
Definition at line 3555 of file z3++.h.
3555:object(c) { init(s); }
◆ probe() [4/4]
Definition at line 3556 of file z3++.h.
3556:object(s) { init(s.m_probe); }
◆ ~probe()
Definition at line 3557 of file z3++.h.
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.
◆ apply()
| double apply |
( |
goal const & | g | ) |
const |
|
inline |
Definition at line 3566 of file z3++.h.
3566{
double r =
Z3_probe_apply(ctx(), m_probe, g); check_error();
return r; }
double Z3_API Z3_probe_apply(Z3_context c, Z3_probe p, Z3_goal g)
Execute the probe over the goal. The probe always produce a double value. "Boolean" probes return 0....
Referenced by operator()().
◆ operator Z3_probe()
| operator Z3_probe |
( |
| ) |
const |
|
inline |
◆ operator()()
| double operator() |
( |
goal const & | g | ) |
const |
|
inline |
◆ operator=()
Definition at line 3559 of file z3++.h.
3559 {
3562 object::operator=(s);
3563 m_probe = s.m_probe;
3564 return *this;
3565 }
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.
◆ operator!
Definition at line 3619 of file z3++.h.
3619 {
3620 Z3_probe r =
Z3_probe_not(p.ctx(), p); p.check_error();
return probe(p.ctx(), r);
3621 }
Z3_probe Z3_API Z3_probe_not(Z3_context x, Z3_probe p)
Return a probe that evaluates to "true" when p does not evaluate to true.
◆ operator&&
Definition at line 3613 of file z3++.h.
3613 {
3615 }
Z3_probe Z3_API Z3_probe_and(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when p1 and p2 evaluates to true.
void check_context(object const &a, object const &b)
◆ operator< [1/3]
Definition at line 3602 of file z3++.h.
3602{ return probe(p2.ctx(), p1) < p2; }
◆ operator< [2/3]
Definition at line 3601 of file z3++.h.
3601{ return p1 < probe(p1.ctx(), p2); }
◆ operator< [3/3]
Definition at line 3598 of file z3++.h.
3598 {
3600 }
Z3_probe Z3_API Z3_probe_lt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than the value returned...
◆ operator<= [1/3]
Definition at line 3592 of file z3++.h.
3592{ return probe(p2.ctx(), p1) <= p2; }
◆ operator<= [2/3]
Definition at line 3591 of file z3++.h.
3591{ return p1 <= probe(p1.ctx(), p2); }
◆ operator<= [3/3]
Definition at line 3588 of file z3++.h.
3588 {
3590 }
Z3_probe Z3_API Z3_probe_le(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than or equal to the va...
◆ operator== [1/3]
Definition at line 3612 of file z3++.h.
3612{ return probe(p2.ctx(), p1) == p2; }
◆ operator== [2/3]
Definition at line 3611 of file z3++.h.
3611{ return p1 == probe(p1.ctx(), p2); }
◆ operator== [3/3]
Definition at line 3608 of file z3++.h.
3608 {
3610 }
Z3_probe Z3_API Z3_probe_eq(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is equal to the value returned ...
◆ operator> [1/3]
Definition at line 3607 of file z3++.h.
3607{ return probe(p2.ctx(), p1) > p2; }
◆ operator> [2/3]
Definition at line 3606 of file z3++.h.
3606{ return p1 > probe(p1.ctx(), p2); }
◆ operator> [3/3]
Definition at line 3603 of file z3++.h.
3603 {
3605 }
Z3_probe Z3_API Z3_probe_gt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than the value retur...
◆ operator>= [1/3]
Definition at line 3597 of file z3++.h.
3597{ return probe(p2.ctx(), p1) >= p2; }
◆ operator>= [2/3]
Definition at line 3596 of file z3++.h.
3596{ return p1 >= probe(p1.ctx(), p2); }
◆ operator>= [3/3]
Definition at line 3593 of file z3++.h.
3593 {
3595 }
Z3_probe Z3_API Z3_probe_ge(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than or equal to the...
◆ operator||
Definition at line 3616 of file z3++.h.
3616 {
3618 }
Z3_probe Z3_API Z3_probe_or(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when p1 or p2 evaluates to true.