Sha256: 6dfd5196c7b7279eafffdd46ba3a9d9347ba1b7bf38c0f041409d04d83e4722d
Contents?: true
Size: 1.43 KB
Versions: 4
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 module Veritas class Optimizer module Function class Predicate # Abstract base class representing LessThan optimizations class LessThan < self include Comparable # Optimize when the operands are a contradiction class Contradiction < self include Predicate::Contradiction # Test if the operands are a contradiction # # @return [Boolean] # # @api private def optimizable? left.equal?(right) || LessThanOrEqualTo::Contradiction.new(operation).optimizable? end end # class Contradiction # Optimize when the operands are a tautology class Tautology < self include Predicate::Tautology # Test if the operands are a tautology # # @return [Boolean] # # @api private def optimizable? operation.class.call(Util.max(left), Util.min(right)) end end # class Tautology Veritas::Function::Predicate::LessThan.optimizer = chain( ConstantOperands, Contradiction, Tautology, NormalizableOperands, UnoptimizedOperands ) end # class LessThan end # class Predicate end # module Function end # class Optimizer end # module Veritas
Version data entries
4 entries across 4 versions & 1 rubygems