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

Constructor & Destructor Documentation

◆ stats() [1/3]

stats ( context c)
inline

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

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

◆ stats() [2/3]

stats ( context c,
Z3_stats  e 
)
inline

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

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

◆ stats() [3/3]

stats ( stats const &  s)
inline

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

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

◆ ~stats()

~stats ( )
inline

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

1893 { 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:364

Member Function Documentation

◆ double_value()

double double_value ( unsigned  i) const
inline

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

1907 { double r = Z3_stats_get_double_value(ctx(), m_stats, i); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:365
context & ctx() const
Definition: z3++.h:364
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 1905 of file z3++.h.

1905 { Z3_bool r = Z3_stats_is_double(ctx(), m_stats, i); check_error(); return r != 0; }
Z3_error_code check_error() const
Definition: z3++.h:365
int Z3_bool
Z3 Boolean type. It is just an alias for int.
Definition: z3_api.h:85
context & ctx() const
Definition: z3++.h:364
Z3_bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx)
Return Z3_TRUE if the given statistical data is a double.

◆ is_uint()

bool is_uint ( unsigned  i) const
inline

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

1904 { Z3_bool r = Z3_stats_is_uint(ctx(), m_stats, i); check_error(); return r != 0; }
Z3_error_code check_error() const
Definition: z3++.h:365
int Z3_bool
Z3 Boolean type. It is just an alias for int.
Definition: z3_api.h:85
context & ctx() const
Definition: z3++.h:364
Z3_bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx)
Return Z3_TRUE if the given statistical data is a unsigned integer.

◆ key()

std::string key ( unsigned  i) const
inline

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

1903 { Z3_string s = Z3_stats_get_key(ctx(), m_stats, i); check_error(); return s; }
Z3_error_code check_error() const
Definition: z3++.h:365
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:364
const char * Z3_string
Z3 string type. It is just an alias for const char *.
Definition: z3_api.h:90

◆ operator Z3_stats()

operator Z3_stats ( ) const
inline

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

1894 { return m_stats; }

◆ operator=()

stats& operator= ( stats const &  s)
inline

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

1895  {
1896  Z3_stats_inc_ref(s.ctx(), s.m_stats);
1897  if (m_stats) Z3_stats_dec_ref(ctx(), m_stats);
1898  m_ctx = s.m_ctx;
1899  m_stats = s.m_stats;
1900  return *this;
1901  }
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:364
context * m_ctx
Definition: z3++.h:360

◆ size()

unsigned size ( ) const
inline

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

1902 { return Z3_stats_size(ctx(), m_stats); }
context & ctx() const
Definition: z3++.h:364
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 1906 of file z3++.h.

1906 { unsigned r = Z3_stats_get_uint_value(ctx(), m_stats, i); check_error(); return r; }
Z3_error_code check_error() const
Definition: z3++.h:365
context & ctx() const
Definition: z3++.h:364
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 1910 of file z3++.h.

1910 { 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.