algebraic_lt method

bool algebraic_lt(
  1. Z3_context c,
  2. Z3_ast a,
  3. Z3_ast b
)

\brief Return \c true if a < b, and \c false otherwise.

\pre Z3_algebraic_is_value(c, a) \pre Z3_algebraic_is_value(c, b)

def_API('Z3_algebraic_lt', BOOL, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

bool algebraic_lt(
  Z3_context c,
  Z3_ast a,
  Z3_ast b,
) {
  return _algebraic_lt(
    c,
    a,
    b,
  );
}