metaSMT 2
|
Assertion API. More...
Functions | |
template<typename Context_ , typename Expr_ > | |
void | metaSMT::assertion (Context_ &ctx, Expr_ const &e) |
add an assumption to the current context |
Assertion API.
DirectSolver_Context< Boolector > ctx; assertion(ctx, True); solve(ctx) == true; assertion(ctx, False) solve(ctx) == true;
void metaSMT::assertion | ( | Context_ & | ctx, |
Expr_ const & | e | ||
) |
add an assumption to the current context
ctx | The metaSMT Context |
e | Any Boolean expression |
Definition at line 33 of file Assertion.hpp.