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

Public Member Functions

 stats (context &c)
 
 stats (context &c, Z3_stats e)
 
 stats (stats const &s)
 
 ~stats ()
 
 operator Z3_stats () const
 
statsoperator= (stats const &s)
 
unsigned size () const
 
std::string key (unsigned i) const
 
bool is_uint (unsigned i) const
 
bool is_double (unsigned i) const
 
unsigned uint_value (unsigned i) const
 
double double_value (unsigned i) const
 
- Public Member Functions inherited from object
 object (context &c)
 
 object (object const &s)
 
contextctx () const
 
Z3_error_code check_error () const
 

Friends

std::ostream & operator<< (std::ostream &out, stats const &s)
 

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

◆ stats() [1/3]

stats ( context c)
inline

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

2324 :object(c), m_stats(0) {}
object(context &c)
Definition: z3++.h:416

◆ stats() [2/3]

stats ( context c,
Z3_stats  e 
)
inline

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

2325 :object(c) { init(e); }
object(context &c)
Definition: z3++.h:416

◆ stats() [3/3]

stats ( stats const &  s)
inline

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

2326 :object(s) { init(s.m_stats); }
object(context &c)
Definition: z3++.h:416

◆ ~stats()

~stats ( )
inline

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

2327 { if (m_stats) Z3_stats_dec_ref(ctx(), m_stats); }
void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s)
Decrement the reference counter of the given statistics object.
context & ctx() const
Definition: z3++.h:418

Member Function Documentation

◆ double_value()

double double_value ( unsigned  i) const
inline

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

2341 { double r = Z3_stats_get_double_value(ctx(), m_stats, i); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:419
context & ctx() const
Definition: z3++.h:418
double Z3_API Z3_stats_get_double_value(Z3_context c, Z3_stats s, unsigned idx)
Return the double value of the given statistical data.

◆ is_double()

bool is_double ( unsigned  i) const
inline

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

2339 { bool r = Z3_stats_is_double(ctx(), m_stats, i); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:419
context & ctx() const
Definition: z3++.h:418
bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx)
Return true if the given statistical data is a double.

◆ is_uint()

bool is_uint ( unsigned  i) const
inline

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

2338 { bool r = Z3_stats_is_uint(ctx(), m_stats, i); check_error(); return r; }
bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx)
Return true if the given statistical data is a unsigned integer.
Z3_error_code check_error() const
Definition: z3++.h:419
context & ctx() const
Definition: z3++.h:418

◆ key()

std::string key ( unsigned  i) const
inline

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

2337 { Z3_string s = Z3_stats_get_key(ctx(), m_stats, i); check_error(); return s; }
Z3_error_code check_error() const
Definition: z3++.h:419
Z3_string Z3_API Z3_stats_get_key(Z3_context c, Z3_stats s, unsigned idx)
Return the key (a string) for a particular statistical data.
context & ctx() const
Definition: z3++.h:418
const char * Z3_string
Z3 string type. It is just an alias for const char *.
Definition: z3_api.h:82

◆ operator Z3_stats()

operator Z3_stats ( ) const
inline

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

2328 { return m_stats; }

◆ operator=()

stats& operator= ( stats const &  s)
inline

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

2329  {
2330  Z3_stats_inc_ref(s.ctx(), s.m_stats);
2331  if (m_stats) Z3_stats_dec_ref(ctx(), m_stats);
2332  m_ctx = s.m_ctx;
2333  m_stats = s.m_stats;
2334  return *this;
2335  }
void Z3_API Z3_stats_inc_ref(Z3_context c, Z3_stats s)
Increment the reference counter of the given statistics object.
void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s)
Decrement the reference counter of the given statistics object.
context & ctx() const
Definition: z3++.h:418
context * m_ctx
Definition: z3++.h:414

◆ size()

unsigned size ( ) const
inline

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

2336 { return Z3_stats_size(ctx(), m_stats); }
context & ctx() const
Definition: z3++.h:418
unsigned Z3_API Z3_stats_size(Z3_context c, Z3_stats s)
Return the number of statistical data in s.

◆ uint_value()

unsigned uint_value ( unsigned  i) const
inline

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

2340 { unsigned r = Z3_stats_get_uint_value(ctx(), m_stats, i); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:419
context & ctx() const
Definition: z3++.h:418
unsigned Z3_API Z3_stats_get_uint_value(Z3_context c, Z3_stats s, unsigned idx)
Return the unsigned value of the given statistical data.

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  out,
stats const &  s 
)
friend

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

2344 { out << Z3_stats_to_string(s.ctx(), s); return out; }
Z3_string Z3_API Z3_stats_to_string(Z3_context c, Z3_stats s)
Convert a statistics into a string.