Class: Veritas::Optimizer::Function::Predicate::Inequality::Contradiction

Inherits:
Veritas::Optimizer::Function::Predicate::Inequality show all
Includes:
Contradiction
Defined in:
lib/veritas/optimizer/function/predicate/inequality.rb

Overview

Optimize when the operand are a contradiction

Constant Summary

Constants inherited from Veritas::Optimizer

Noop, VERSION

Instance Attribute Summary

Attributes included from Binary

#left, #right

Attributes inherited from Veritas::Optimizer

#operation

Instance Method Summary collapse

Methods included from Contradiction

#optimize

Methods included from Binary

#initialize

Methods inherited from Veritas::Optimizer

chain, #initialize, #optimize

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

Returns:

  • (Boolean)


21
22
23
# File 'lib/veritas/optimizer/function/predicate/inequality.rb', line 21

def optimizable?
  left.equal?(right)
end