Sha256: 7466d39824dd21aaa250a90fb0687973b6798755388b7a48cbdc46508b65db04
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 module Axiom 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 Axiom::Function::Predicate::LessThan.optimizer = chain( ConstantOperands, Contradiction, Tautology, NormalizableOperands, UnoptimizedOperands ) end # class LessThan end # class Predicate end # module Function end # class Optimizer end # module Axiom
Version data entries
3 entries across 3 versions & 1 rubygems