Class: Veritas::Optimizer::Function::Connective::Conjunction::RightOperandTautology

Inherits:
Veritas::Optimizer::Function::Connective::Conjunction show all
Defined in:
lib/veritas/optimizer/function/connective/conjunction.rb

Overview

Optimize when the right operand is a tautology

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 Binary

#initialize

Methods inherited from Veritas::Optimizer

chain, #initialize

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 tautology

Returns:

  • (Boolean)


42
43
44
# File 'lib/veritas/optimizer/function/connective/conjunction.rb', line 42

def optimizable?
  right_tautology?
end

#optimizeFunction

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 Conjunction with a tautology right operand is equivalent to the left

Returns:



51
52
53
# File 'lib/veritas/optimizer/function/connective/conjunction.rb', line 51

def optimize
  left
end