Class: Veritas::Optimizer::Function::Connective::Disjunction::ContradictionRightOperand
- Inherits:
-
Veritas::Optimizer::Function::Connective::Disjunction
- Object
- Veritas::Optimizer
- Binary
- Veritas::Optimizer::Function::Connective::Disjunction
- Veritas::Optimizer::Function::Connective::Disjunction::ContradictionRightOperand
- Defined in:
- lib/veritas/optimizer/function/connective/disjunction.rb
Overview
Optimize when the right operand is a contradiction
Constant Summary
Constants inherited from Veritas::Optimizer
Instance Attribute Summary
Attributes included from Binary
Attributes inherited from Veritas::Optimizer
Instance Method Summary collapse
-
#optimizable? ⇒ Boolean
private
Test if the right operand is a contradiction.
-
#optimize ⇒ Function
private
A Disjunction with a contradiction right operand is equivalent to the left.
Methods included from Binary
Methods inherited from Veritas::Optimizer
Instance Method Details
#optimizable? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Test if the right operand is a contradiction
42 43 44 |
# File 'lib/veritas/optimizer/function/connective/disjunction.rb', line 42 def optimizable? right_contradiction? end |
#optimize ⇒ Function
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A Disjunction with a contradiction right operand is equivalent to the left
51 52 53 |
# File 'lib/veritas/optimizer/function/connective/disjunction.rb', line 51 def optimize left end |