Sha256: a110aad54b64c9f2d4bea347672da1e875ec5c7f346880226752d6d2c2797f0a

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

module Query

  # Calculates weights for certain combinations.
  #
  class Weights
    
    #
    #
    def initialize weights = {}
      @weights_cache = {}
      @weights = prepare weights
    end
    
    # Get the category indexes for the given bonuses.
    #
    def prepare weights
      weights
    end
    
    # Get the weight of an allocation.
    #
    # TODO Add a block to evaluate?
    #
    def weight_for clustered
      @weights[clustered] || 0
    end
    
    # Returns an energy term E for allocation. this turns into a probability
    # by P(allocation) = 1/Z * exp (-1/T * E(allocation)),
    # where Z is the normalizing partition function
    # sum_allocations exp(-1/T *E(allocation)), and T is a temperature constant.
    # If T is high the distribution will be close to equally distributed.
    # If T is low, the distribution will be the indicator function
    # for min (E(allocation))…
    #
    # ...
    #
    # Just kidding. It's far more complicated than that. Ha ha ha ha ;)
    #
    include Helpers::Cache
    def score combinations
      # TODO Rewrite to use the category
      #
      categories = combinations.map { |combination| combination.bundle.category }.clustered_uniq
      
      # TODO Caching even necessary?
      #
      cached @weights_cache, categories do
        categories.map! &:name
        weight_for categories
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
picky-0.0.3 lib/picky/query/weights.rb
picky-0.0.2 lib/picky/query/weights.rb