module Real:sig
..end
val mk_sort : context -> Sort.sort
val get_numerator : Expr.expr -> Expr.expr
val get_denominator : Expr.expr -> Expr.expr
val get_ratio : Expr.expr -> Ratio.ratio
val to_decimal_string : Expr.expr -> int -> string
val numeral_to_string : Expr.expr -> string
val mk_const : context -> Symbol.symbol -> Expr.expr
val mk_const_s : context -> string -> Expr.expr
val mk_numeral_nd : context -> int -> int -> Expr.expr
Arithmetic.Real.mk_numeral_s
val mk_numeral_s : context -> string -> Expr.expr
val mk_numeral_i : context -> int -> Expr.expr
val mk_is_integer : context -> Expr.expr -> Expr.expr
val mk_real2int : context -> Expr.expr -> Expr.expr
The semantics of this function follows the SMT-LIB standard for the function to_int.
The argument must be of real sort.
module AlgebraicNumber:sig
..end