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
 
void 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 360 of file z3++.h.

Constructor & Destructor Documentation

§ param_descrs() [1/2]

param_descrs ( context c,
Z3_param_descrs  d 
)
inline

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

363 : 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:330

§ param_descrs() [2/2]

param_descrs ( param_descrs const &  o)
inline

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

364 : object(o.ctx()), m_descrs(o.m_descrs) { Z3_param_descrs_inc_ref(ctx(), m_descrs); }
context & ctx() const
Definition: z3++.h:332
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:330

§ ~param_descrs()

~param_descrs ( )
inline

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

372 { Z3_param_descrs_dec_ref(ctx(), m_descrs); }
context & ctx() const
Definition: z3++.h:332
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

§ documentation()

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

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

378 { 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.
context & ctx() const
Definition: z3++.h:332
void check_error() const
Definition: z3++.h:333

§ kind()

Z3_param_kind kind ( symbol const &  s)
inline

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

377 { return Z3_param_descrs_get_kind(ctx(), m_descrs, s); }
context & ctx() const
Definition: z3++.h:332
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.

§ name()

symbol name ( unsigned  i)
inline

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

376 { 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 number of parameters in the given parameter description set.
context & ctx() const
Definition: z3++.h:332

§ operator=()

param_descrs& operator= ( param_descrs const &  o)
inline

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

365  {
366  Z3_param_descrs_inc_ref(o.ctx(), o.m_descrs);
367  Z3_param_descrs_dec_ref(ctx(), m_descrs);
368  m_descrs = o.m_descrs;
369  m_ctx = o.m_ctx;
370  return *this;
371  }
context & ctx() const
Definition: z3++.h:332
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 * m_ctx
Definition: z3++.h:328
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.

§ simplify_param_descrs()

static param_descrs simplify_param_descrs ( context c)
inlinestatic

Definition at line 373 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:363

§ size()

unsigned size ( )
inline

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

375 { return Z3_param_descrs_size(ctx(), m_descrs); }
context & ctx() const
Definition: z3++.h:332
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.

§ to_string()

std::string to_string ( ) const
inline

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

Referenced by z3::operator<<().

379 { 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:332