Z3
Public Member Functions | Friends
probe Class Reference
+ Inheritance diagram for probe:

Public Member Functions

 probe (context &c, char const *name)
 
 probe (context &c, double val)
 
 probe (context &c, Z3_probe s)
 
 probe (probe const &s)
 
 ~probe ()
 
 operator Z3_probe () const
 
probeoperator= (probe const &s)
 
double apply (goal const &g) const
 
double operator() (goal const &g) const
 
- Public Member Functions inherited from object
 object (context &c)
 
contextctx () const
 
Z3_error_code check_error () const
 

Friends

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)
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

Definition at line 3068 of file z3++.h.

Constructor & Destructor Documentation

◆ probe() [1/4]

probe ( context c,
char const *  name 
)
inline

Definition at line 3075 of file z3++.h.

3075 :object(c) { Z3_probe r = Z3_mk_probe(c, name); check_error(); init(r); }
Z3_error_code check_error() const
Definition: z3++.h:464
object(context &c)
Definition: z3++.h:462
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 Probe::__call__(), Probe::__deepcopy__(), Probe::__del__(), Probe::__eq__(), Probe::__ge__(), Probe::__gt__(), Probe::__le__(), and Probe::__lt__().

◆ probe() [2/4]

probe ( context c,
double  val 
)
inline

Definition at line 3076 of file z3++.h.

3076 :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.

Referenced by Probe::__call__(), Probe::__deepcopy__(), Probe::__del__(), Probe::__eq__(), Probe::__ge__(), Probe::__gt__(), Probe::__le__(), and Probe::__lt__().

◆ probe() [3/4]

probe ( context c,
Z3_probe  s 
)
inline

◆ probe() [4/4]

probe ( probe const &  s)
inline

Definition at line 3078 of file z3++.h.

3078 :object(s) { init(s.m_probe); }

Referenced by Probe::__call__(), Probe::__deepcopy__(), Probe::__del__(), Probe::__eq__(), Probe::__ge__(), Probe::__gt__(), Probe::__le__(), and Probe::__lt__().

◆ ~probe()

~probe ( )
inline

Definition at line 3079 of file z3++.h.

3079 { Z3_probe_dec_ref(ctx(), m_probe); }
context & ctx() const
Definition: z3++.h:463
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.

Member Function Documentation

◆ apply()

double apply ( goal const &  g) const
inline

Definition at line 3088 of file z3++.h.

3088 { 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 Tactic::__call__(), and probe::operator()().

◆ operator Z3_probe()

operator Z3_probe ( ) const
inline

Definition at line 3080 of file z3++.h.

3080 { return m_probe; }

◆ operator()()

double operator() ( goal const &  g) const
inline

Definition at line 3089 of file z3++.h.

3089 { return apply(g); }
double apply(goal const &g) const
Definition: z3++.h:3088

◆ operator=()

probe& operator= ( probe const &  s)
inline

Definition at line 3081 of file z3++.h.

3081  {
3082  Z3_probe_inc_ref(s.ctx(), s.m_probe);
3083  Z3_probe_dec_ref(ctx(), m_probe);
3084  object::operator=(s);
3085  m_probe = s.m_probe;
3086  return *this;
3087  }
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.

Friends And Related Function Documentation

◆ operator!

probe operator! ( probe const &  p)
friend

Definition at line 3141 of file z3++.h.

3141  {
3142  Z3_probe r = Z3_probe_not(p.ctx(), p); p.check_error(); return probe(p.ctx(), r);
3143  }
probe(context &c, char const *name)
Definition: z3++.h:3075
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&&

probe operator&& ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3135 of file z3++.h.

3135  {
3136  check_context(p1, p2); Z3_probe r = Z3_probe_and(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3137  }
friend void check_context(object const &a, object const &b)
Definition: z3++.h:467
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.

◆ operator< [1/3]

probe operator< ( double  p1,
probe const &  p2 
)
friend

Definition at line 3124 of file z3++.h.

3124 { return probe(p2.ctx(), p1) < p2; }

◆ operator< [2/3]

probe operator< ( probe const &  p1,
double  p2 
)
friend

Definition at line 3123 of file z3++.h.

3123 { return p1 < probe(p1.ctx(), p2); }

◆ operator< [3/3]

probe operator< ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3120 of file z3++.h.

3120  {
3121  check_context(p1, p2); Z3_probe r = Z3_probe_lt(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3122  }
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]

probe operator<= ( double  p1,
probe const &  p2 
)
friend

Definition at line 3114 of file z3++.h.

3114 { return probe(p2.ctx(), p1) <= p2; }

◆ operator<= [2/3]

probe operator<= ( probe const &  p1,
double  p2 
)
friend

Definition at line 3113 of file z3++.h.

3113 { return p1 <= probe(p1.ctx(), p2); }

◆ operator<= [3/3]

probe operator<= ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3110 of file z3++.h.

3110  {
3111  check_context(p1, p2); Z3_probe r = Z3_probe_le(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3112  }
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]

probe operator== ( double  p1,
probe const &  p2 
)
friend

Definition at line 3134 of file z3++.h.

3134 { return probe(p2.ctx(), p1) == p2; }

◆ operator== [2/3]

probe operator== ( probe const &  p1,
double  p2 
)
friend

Definition at line 3133 of file z3++.h.

3133 { return p1 == probe(p1.ctx(), p2); }

◆ operator== [3/3]

probe operator== ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3130 of file z3++.h.

3130  {
3131  check_context(p1, p2); Z3_probe r = Z3_probe_eq(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3132  }
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]

probe operator> ( double  p1,
probe const &  p2 
)
friend

Definition at line 3129 of file z3++.h.

3129 { return probe(p2.ctx(), p1) > p2; }

◆ operator> [2/3]

probe operator> ( probe const &  p1,
double  p2 
)
friend

Definition at line 3128 of file z3++.h.

3128 { return p1 > probe(p1.ctx(), p2); }

◆ operator> [3/3]

probe operator> ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3125 of file z3++.h.

3125  {
3126  check_context(p1, p2); Z3_probe r = Z3_probe_gt(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3127  }
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]

probe operator>= ( double  p1,
probe const &  p2 
)
friend

Definition at line 3119 of file z3++.h.

3119 { return probe(p2.ctx(), p1) >= p2; }

◆ operator>= [2/3]

probe operator>= ( probe const &  p1,
double  p2 
)
friend

Definition at line 3118 of file z3++.h.

3118 { return p1 >= probe(p1.ctx(), p2); }

◆ operator>= [3/3]

probe operator>= ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3115 of file z3++.h.

3115  {
3116  check_context(p1, p2); Z3_probe r = Z3_probe_ge(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3117  }
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||

probe operator|| ( probe const &  p1,
probe const &  p2 
)
friend

Definition at line 3138 of file z3++.h.

3138  {
3139  check_context(p1, p2); Z3_probe r = Z3_probe_or(p1.ctx(), p1, p2); p1.check_error(); return probe(p1.ctx(), r);
3140  }
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.