Z3
 
Loading...
Searching...
No Matches
Public Member Functions | Friends
tactic Class Reference

#include <z3++.h>

+ Inheritance diagram for tactic:

Public Member Functions

 tactic (context &c, char const *name)
 
 tactic (context &c, Z3_tactic s)
 
 tactic (tactic const &s)
 
 ~tactic () override
 
 operator Z3_tactic () const
 
tacticoperator= (tactic const &s)
 
solver mk_solver () const
 
apply_result apply (goal const &g) const
 
apply_result operator() (goal const &g) const
 
std::string help () const
 
param_descrs get_param_descrs ()
 
- Public Member Functions inherited from object
 object (context &c)
 
virtual ~object ()=default
 
contextctx () const
 
Z3_error_code check_error () const
 

Friends

tactic operator& (tactic const &t1, tactic const &t2)
 
tactic operator| (tactic const &t1, tactic const &t2)
 
tactic repeat (tactic const &t, unsigned max)
 
tactic with (tactic const &t, params const &p)
 
tactic try_for (tactic const &t, unsigned ms)
 
tactic par_or (unsigned n, tactic const *tactics)
 
tactic par_and_then (tactic const &t1, tactic const &t2)
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

◆ tactic() [1/3]

tactic ( context c,
char const name 
)
inline

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

3432:object(c) { Z3_tactic r = Z3_mk_tactic(c, name); check_error(); init(r); }
Z3_error_code check_error() const
Definition z3++.h:561
object(context &c)
Definition z3++.h:558
Z3_tactic Z3_API Z3_mk_tactic(Z3_context c, Z3_string name)
Return a tactic associated with the given name. The complete list of tactics may be obtained using th...

◆ tactic() [2/3]

tactic ( context c,
Z3_tactic  s 
)
inline

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

3433:object(c) { init(s); }

◆ tactic() [3/3]

tactic ( tactic const s)
inline

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

3434:object(s) { init(s.m_tactic); }

◆ ~tactic()

~tactic ( )
inlineoverride

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

3435{ Z3_tactic_dec_ref(ctx(), m_tactic); }
context & ctx() const
Definition z3++.h:560
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g)
Decrement the reference counter of the given tactic.

Member Function Documentation

◆ apply()

apply_result apply ( goal const g) const
inline

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

3445 {
3446 check_context(*this, g);
3447 Z3_apply_result r = Z3_tactic_apply(ctx(), m_tactic, g);
3448 check_error();
3449 return apply_result(ctx(), r);
3450 }
friend void check_context(object const &a, object const &b)
Definition z3++.h:564
Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g)
Apply tactic t to the goal g.

Referenced by tactic::operator()().

◆ get_param_descrs()

param_descrs get_param_descrs ( )
inline

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

3462{ return param_descrs(ctx(), Z3_tactic_get_param_descrs(ctx(), m_tactic)); }
Z3_param_descrs Z3_API Z3_tactic_get_param_descrs(Z3_context c, Z3_tactic t)
Return the parameter description set for the given tactic object.

◆ help()

std::string help ( ) const
inline

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

3454{ char const * r = Z3_tactic_get_help(ctx(), m_tactic); check_error(); return r; }
Z3_string Z3_API Z3_tactic_get_help(Z3_context c, Z3_tactic t)
Return a string containing a description of parameters accepted by the given tactic.

◆ mk_solver()

solver mk_solver ( ) const
inline

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

3444{ Z3_solver r = Z3_mk_solver_from_tactic(ctx(), m_tactic); check_error(); return solver(ctx(), r); }
Z3_solver Z3_API Z3_mk_solver_from_tactic(Z3_context c, Z3_tactic t)
Create a new solver that is implemented using the given tactic. The solver supports the commands Z3_s...
System.IntPtr Z3_solver

◆ operator Z3_tactic()

operator Z3_tactic ( ) const
inline

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

3436{ return m_tactic; }

◆ operator()()

apply_result operator() ( goal const g) const
inline

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

3451 {
3452 return apply(g);
3453 }
apply_result apply(goal const &g) const
Definition z3++.h:3445

◆ operator=()

tactic & operator= ( tactic const s)
inline

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

3437 {
3438 Z3_tactic_inc_ref(s.ctx(), s.m_tactic);
3439 Z3_tactic_dec_ref(ctx(), m_tactic);
3440 object::operator=(s);
3441 m_tactic = s.m_tactic;
3442 return *this;
3443 }
void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t)
Increment the reference counter of the given tactic.

Friends And Related Symbol Documentation

◆ operator&

tactic operator& ( tactic const t1,
tactic const t2 
)
friend

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

3465 {
3466 check_context(t1, t2);
3467 Z3_tactic r = Z3_tactic_and_then(t1.ctx(), t1, t2);
3468 t1.check_error();
3469 return tactic(t1.ctx(), r);
3470 }
tactic(context &c, char const *name)
Definition z3++.h:3432
Z3_tactic Z3_API Z3_tactic_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that applies t1 to a given goal and t2 to every subgoal produced by t1.

◆ operator|

tactic operator| ( tactic const t1,
tactic const t2 
)
friend

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

3472 {
3473 check_context(t1, t2);
3474 Z3_tactic r = Z3_tactic_or_else(t1.ctx(), t1, t2);
3475 t1.check_error();
3476 return tactic(t1.ctx(), r);
3477 }
Z3_tactic Z3_API Z3_tactic_or_else(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that first applies t1 to a given goal, if it fails then returns the result of t2 appl...

◆ par_and_then

tactic par_and_then ( tactic const t1,
tactic const t2 
)
friend

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

3504 {
3505 check_context(t1, t2);
3506 Z3_tactic r = Z3_tactic_par_and_then(t1.ctx(), t1, t2);
3507 t1.check_error();
3508 return tactic(t1.ctx(), r);
3509 }
Z3_tactic Z3_API Z3_tactic_par_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that applies t1 to a given goal and then t2 to every subgoal produced by t1....

◆ par_or

tactic par_or ( unsigned  n,
tactic const tactics 
)
friend

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

3495 {
3496 if (n == 0) {
3497 Z3_THROW(exception("a non-zero number of tactics need to be passed to par_or"));
3498 }
3499 array<Z3_tactic> buffer(n);
3500 for (unsigned i = 0; i < n; ++i) buffer[i] = tactics[i];
3501 return tactic(tactics[0u].ctx(), Z3_tactic_par_or(tactics[0u].ctx(), n, buffer.ptr()));
3502 }
Z3_tactic Z3_API Z3_tactic_par_or(Z3_context c, unsigned num, Z3_tactic const ts[])
Return a tactic that applies the given tactics in parallel.
#define Z3_THROW(x)
Definition z3++.h:134

◆ repeat

tactic repeat ( tactic const t,
unsigned  max = UINT_MAX 
)
friend

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

3479 {
3480 Z3_tactic r = Z3_tactic_repeat(t.ctx(), t, max);
3481 t.check_error();
3482 return tactic(t.ctx(), r);
3483 }
Z3_tactic Z3_API Z3_tactic_repeat(Z3_context c, Z3_tactic t, unsigned max)
Return a tactic that keeps applying t until the goal is not modified anymore or the maximum number of...
expr max(expr const &a, expr const &b)
Definition z3++.h:2178

◆ try_for

tactic try_for ( tactic const t,
unsigned  ms 
)
friend

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

3490 {
3491 Z3_tactic r = Z3_tactic_try_for(t.ctx(), t, ms);
3492 t.check_error();
3493 return tactic(t.ctx(), r);
3494 }
Z3_tactic Z3_API Z3_tactic_try_for(Z3_context c, Z3_tactic t, unsigned ms)
Return a tactic that applies t to a given goal for ms milliseconds. If t does not terminate in ms mil...

◆ with

tactic with ( tactic const t,
params const p 
)
friend

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

3485 {
3486 Z3_tactic r = Z3_tactic_using_params(t.ctx(), t, p);
3487 t.check_error();
3488 return tactic(t.ctx(), r);
3489 }
Z3_tactic Z3_API Z3_tactic_using_params(Z3_context c, Z3_tactic t, Z3_params p)
Return a tactic that applies t using the given set of parameters.