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, #getVariablesRecurse, #to_s, #to_sym
Methods inherited from Node
#distribute, #each, #each_line, #each_maxterm, #each_minterm, #eql?, #flatten, #flatten_deep, #getVariables, #hash, #inspect, #op, #simplify, #size, #to_std_conjunctive, #to_std_disjunctive, #to_sum_product, #to_sym
Constructor Details
#initialize ⇒ NodeFalse
Creates as a NodeValue whose value is false.
311 312 313 |
# File 'lib/logic_tools/logictree.rb', line 311 def initialize super(false) end |