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

Public Member Functions

 symbol (context &c, Z3_symbol s)
 
 symbol (symbol const &s)
 
symboloperator= (symbol const &s)
 
 operator Z3_symbol () const
 
Z3_symbol_kind kind () const
 
std::string str () const
 
int to_int () const
 
- Public Member Functions inherited from object
 object (context &c)
 
 object (object const &s)
 
contextctx () const
 
void check_error () const
 

Friends

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

Additional Inherited Members

- Protected Attributes inherited from object
contextm_ctx
 

Detailed Description

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

Constructor & Destructor Documentation

symbol ( context c,
Z3_symbol  s 
)
inline

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

286 :object(c), m_sym(s) {}
object(context &c)
Definition: z3++.h:275
symbol ( symbol const &  s)
inline

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

287 :object(s), m_sym(s.m_sym) {}
object(context &c)
Definition: z3++.h:275

Member Function Documentation

Z3_symbol_kind kind ( ) const
inline

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

290 { return Z3_get_symbol_kind(ctx(), m_sym); }
Z3_symbol_kind Z3_API Z3_get_symbol_kind(Z3_context c, Z3_symbol s)
Return Z3_INT_SYMBOL if the symbol was constructed using Z3_mk_int_symbol, and Z3_STRING_SYMBOL if th...
context & ctx() const
Definition: z3++.h:277
operator Z3_symbol ( ) const
inline

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

289 { return m_sym; }
symbol& operator= ( symbol const &  s)
inline

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

288 { m_ctx = s.m_ctx; m_sym = s.m_sym; return *this; }
context * m_ctx
Definition: z3++.h:273
std::string str ( ) const
inline

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

291 { assert(kind() == Z3_STRING_SYMBOL); return Z3_get_symbol_string(ctx(), m_sym); }
context & ctx() const
Definition: z3++.h:277
Z3_symbol_kind kind() const
Definition: z3++.h:290
Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s)
Return the symbol name.
int to_int ( ) const
inline

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

292 { assert(kind() == Z3_INT_SYMBOL); return Z3_get_symbol_int(ctx(), m_sym); }
context & ctx() const
Definition: z3++.h:277
int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s)
Return the symbol int value.
Z3_symbol_kind kind() const
Definition: z3++.h:290

Friends And Related Function Documentation

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

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

293  {
294  if (s.kind() == Z3_INT_SYMBOL)
295  out << "k!" << s.to_int();
296  else
297  out << s.str().c_str();
298  return out;
299  }