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

Constructor & Destructor Documentation

◆ symbol() [1/2]

symbol ( context c,
Z3_symbol  s 
)
inline

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

418 :object(c), m_sym(s) {}

◆ symbol() [2/2]

symbol ( symbol const &  s)
inline

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

419 :object(s), m_sym(s.m_sym) {}

Member Function Documentation

◆ kind()

Z3_symbol_kind kind ( ) const
inline

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

422 { return Z3_get_symbol_kind(ctx(), m_sym); }

Referenced by z3::operator<<(), symbol::str(), and symbol::to_int().

◆ operator Z3_symbol()

operator Z3_symbol ( ) const
inline

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

421 { return m_sym; }

◆ operator=()

symbol& operator= ( symbol const &  s)
inline

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

420 { m_ctx = s.m_ctx; m_sym = s.m_sym; return *this; }

◆ str()

std::string str ( ) const
inline

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

423 { assert(kind() == Z3_STRING_SYMBOL); return Z3_get_symbol_string(ctx(), m_sym); }

Referenced by z3::operator<<().

◆ to_int()

int to_int ( ) const
inline

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

424 { assert(kind() == Z3_INT_SYMBOL); return Z3_get_symbol_int(ctx(), m_sym); }

Referenced by z3::operator<<().

Friends And Related Function Documentation

◆ operator<<

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

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

428  {
429  if (s.kind() == Z3_INT_SYMBOL)
430  out << "k!" << s.to_int();
431  else
432  out << s.str();
433  return out;
434  }
Z3_get_symbol_kind
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...
z3::object::object
object(context &c)
Definition: z3++.h:407
z3::object::m_ctx
context * m_ctx
Definition: z3++.h:405
Z3_INT_SYMBOL
@ Z3_INT_SYMBOL
Definition: z3_api.h:115
z3::symbol::kind
Z3_symbol_kind kind() const
Definition: z3++.h:422
Z3_get_symbol_int
int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s)
Return the symbol int value.
Z3_get_symbol_string
Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s)
Return the symbol name.
z3::object::ctx
context & ctx() const
Definition: z3++.h:409
Z3_STRING_SYMBOL
@ Z3_STRING_SYMBOL
Definition: z3_api.h:116