Class: Veritas::Optimizer::Function::Connective::Conjunction::Contradiction
- Inherits:
-
Veritas::Optimizer::Function::Connective::Conjunction
- Object
- Veritas::Optimizer
- Binary
- Veritas::Optimizer::Function::Connective::Conjunction
- Veritas::Optimizer::Function::Connective::Conjunction::Contradiction
- Defined in:
- lib/veritas/optimizer/function/connective/conjunction.rb
Overview
Optimize when the operands are 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 operands are a contradiction.
-
#optimize ⇒ Contradiction
private
Return a contradiction.
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 operands are a contradiction
88 89 90 91 92 93 |
# File 'lib/veritas/optimizer/function/connective/conjunction.rb', line 88 def optimizable? left_contradiction? || right_contradiction? || equality_with_same_attributes? || contradiction? end |
#optimize ⇒ Contradiction
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.
Return a contradiction
100 101 102 |
# File 'lib/veritas/optimizer/function/connective/conjunction.rb', line 100 def optimize Veritas::Function::Proposition::Contradiction.instance end |