Z3
Public Member Functions | Static Public Member Functions
param_descrs Class Reference
+ Inheritance diagram for param_descrs:

Public Member Functions

 param_descrs (context &c, Z3_param_descrs d)
 
 param_descrs (param_descrs const &o)
 
param_descrsoperator= (param_descrs const &o)
 
 ~param_descrs ()
 
unsigned size ()
 
symbol name (unsigned i)
 
Z3_param_kind kind (symbol const &s)
 
std::string documentation (symbol const &s)
 
std::string to_string () const
 
- Public Member Functions inherited from object
 object (context &c)
 
 object (object const &s)
 
contextctx () const
 
Z3_error_code check_error () const
 

Static Public Member Functions

static param_descrs simplify_param_descrs (context &c)
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

param_descrs ( context c,
Z3_param_descrs  d 
)
inline

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

Referenced by param_descrs::simplify_param_descrs().

437 : object(c), m_descrs(d) { Z3_param_descrs_inc_ref(c, d); }
void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p)
Increment the reference counter of the given parameter description set.
object(context &c)
Definition: z3++.h:404
param_descrs ( param_descrs const &  o)
inline

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

438 : object(o.ctx()), m_descrs(o.m_descrs) { Z3_param_descrs_inc_ref(ctx(), m_descrs); }
void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p)
Increment the reference counter of the given parameter description set.
context & ctx() const
Definition: z3++.h:406
object(context &c)
Definition: z3++.h:404
~param_descrs ( )
inline

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

446 { Z3_param_descrs_dec_ref(ctx(), m_descrs); }
context & ctx() const
Definition: z3++.h:406
void Z3_API Z3_param_descrs_dec_ref(Z3_context c, Z3_param_descrs p)
Decrement the reference counter of the given parameter description set.

Member Function Documentation

std::string documentation ( symbol const &  s)
inline

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

452 { char const* r = Z3_param_descrs_get_documentation(ctx(), m_descrs, s); check_error(); return r; }
Z3_string Z3_API Z3_param_descrs_get_documentation(Z3_context c, Z3_param_descrs p, Z3_symbol s)
Retrieve documentation string corresponding to parameter name s.
Z3_error_code check_error() const
Definition: z3++.h:407
context & ctx() const
Definition: z3++.h:406
Z3_param_kind kind ( symbol const &  s)
inline

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

451 { return Z3_param_descrs_get_kind(ctx(), m_descrs, s); }
context & ctx() const
Definition: z3++.h:406
Z3_param_kind Z3_API Z3_param_descrs_get_kind(Z3_context c, Z3_param_descrs p, Z3_symbol n)
Return the kind associated with the given parameter name n.
symbol name ( unsigned  i)
inline

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

450 { return symbol(ctx(), Z3_param_descrs_get_name(ctx(), m_descrs, i)); }
Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i)
Return the name of the parameter at given index i.
context & ctx() const
Definition: z3++.h:406
param_descrs& operator= ( param_descrs const &  o)
inline

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

439  {
440  Z3_param_descrs_inc_ref(o.ctx(), o.m_descrs);
441  Z3_param_descrs_dec_ref(ctx(), m_descrs);
442  m_descrs = o.m_descrs;
443  m_ctx = o.m_ctx;
444  return *this;
445  }
void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p)
Increment the reference counter of the given parameter description set.
context & ctx() const
Definition: z3++.h:406
context * m_ctx
Definition: z3++.h:402
void Z3_API Z3_param_descrs_dec_ref(Z3_context c, Z3_param_descrs p)
Decrement the reference counter of the given parameter description set.
static param_descrs simplify_param_descrs ( context c)
inlinestatic

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

Z3_param_descrs Z3_API Z3_simplify_get_param_descrs(Z3_context c)
Return the parameter description set for the simplify procedure.
param_descrs(context &c, Z3_param_descrs d)
Definition: z3++.h:437
unsigned size ( )
inline

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

449 { return Z3_param_descrs_size(ctx(), m_descrs); }
context & ctx() const
Definition: z3++.h:406
unsigned Z3_API Z3_param_descrs_size(Z3_context c, Z3_param_descrs p)
Return the number of parameters in the given parameter description set.
std::string to_string ( ) const
inline

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

Referenced by z3::operator<<().

453 { return Z3_param_descrs_to_string(ctx(), m_descrs); }
Z3_string Z3_API Z3_param_descrs_to_string(Z3_context c, Z3_param_descrs p)
Convert a parameter description set into a string. This function is mainly used for printing the cont...
context & ctx() const
Definition: z3++.h:406