Z3
Public Member Functions
cast_ast< expr > Class Template Reference

Public Member Functions

expr operator() (context &c, Z3_ast a)
 

Detailed Description

template<>
class z3::cast_ast< expr >

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

Member Function Documentation

expr operator() ( context c,
Z3_ast  a 
)
inline

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

2398  {
2399  assert(Z3_get_ast_kind(c, a) == Z3_NUMERAL_AST ||
2400  Z3_get_ast_kind(c, a) == Z3_APP_AST ||
2402  Z3_get_ast_kind(c, a) == Z3_VAR_AST);
2403  return expr(c, a);
2404  }
Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a)
Return the kind of the given AST.