Class: Z3::BoolSort
- Inherits:
-
Sort
show all
- Defined in:
- lib/z3/sort/bool_sort.rb
Instance Attribute Summary
Attributes inherited from AST
#_ast
Instance Method Summary
collapse
Methods inherited from Sort
#<, #<=, #<=>, #==, #>, #>=, #cast, #eql?, from_pointer, #from_value, #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
Returns a new instance of BoolSort.
Instance Method Details
#expr_class ⇒ Object
7
8
9
|
# File 'lib/z3/sort/bool_sort.rb', line 7
def expr_class
BoolExpr
end
|
#False ⇒ Object
25
26
27
|
# File 'lib/z3/sort/bool_sort.rb', line 25
def False
from_const(false)
end
|
#from_const(val) ⇒ Object
#True ⇒ Object
21
22
23
|
# File 'lib/z3/sort/bool_sort.rb', line 21
def True
from_const(true)
end
|