Class: Z3::RealSort
Instance Attribute Summary
Attributes inherited from AST
Instance Method Summary collapse
- #>(other) ⇒ Object
- #expr_class ⇒ Object
- #from_const(val) ⇒ Object
- #from_value(val) ⇒ Object
-
#initialize ⇒ RealSort
constructor
A new instance of RealSort.
Methods inherited from Sort
#<, #<=, #<=>, #==, #>=, #cast, #eql?, from_pointer, #hash, #inspect, #new, #to_s, #value_class, #var
Methods inherited from AST
#arguments, #ast_kind, #eql?, #func_decl, #hash, #sexpr, #simplify, #to_s
Constructor Details
#initialize ⇒ RealSort
Returns a new instance of RealSort.
3 4 5 |
# File 'lib/z3/sort/real_sort.rb', line 3 def initialize super LowLevel.mk_real_sort end |
Instance Method Details
#>(other) ⇒ Object
29 30 31 32 |
# File 'lib/z3/sort/real_sort.rb', line 29 def >(other) raise ArgumentError unless other.is_a?(Sort) other.is_a?(IntSort) end |
#expr_class ⇒ Object
7 8 9 |
# File 'lib/z3/sort/real_sort.rb', line 7 def expr_class RealExpr end |
#from_const(val) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/z3/sort/real_sort.rb', line 11 def from_const(val) if val.is_a?(Integer) or (val.is_a?(Float) and val.finite?) or val.is_a?(Rational) new LowLevel.mk_numeral(val.to_s, self) else raise Z3::Exception, "Cannot convert #{val.class} to #{self.class}" end end |