Method: Gecode::Bool::ExpressionTree#initialize
- Defined in:
- lib/gecoder/interface/constraints/bool/boolean.rb
#initialize(left_tree, operation, right_tree) ⇒ ExpressionTree
Constructs a new expression with the specified binary operation applied to the specified trees.
196 197 198 199 200 |
# File 'lib/gecoder/interface/constraints/bool/boolean.rb', line 196 def initialize(left_tree, operation, right_tree) @left = left_tree @operation = operation @right = right_tree end |