Class: LogicTools::NodeFalse
- Defined in:
- lib/logic_tools/logictree.rb
Overview
Represents a false node
Instance Method Summary collapse
-
#initialize ⇒ NodeFalse
constructor
Creates as a NodeValue whose value is false.
Methods inherited from NodeValue
#==, #eval, #get_variablesRecurse, #op, #to_s, #to_sym
Methods inherited from Node
#cover?, #distribute, #each, #each_line, #each_maxterm, #each_minterm, #eql?, #flatten, #flatten_deep, #get_variables, #hash, #include?, #inspect, #is_parent?, #op, #reduce, #simplify, #size, #to_cover, #to_std_conjunctive, #to_std_disjunctive, #to_sum_product, #to_sym
Constructor Details
#initialize ⇒ NodeFalse
Creates as a NodeValue whose value is false.
364 365 366 |
# File 'lib/logic_tools/logictree.rb', line 364 def initialize super(false) end |