Sha256: 071ea02420f6b9ee0547f5f4feea9f7a5e0b5b3a721d707982a59560b679fb21

Contents?: true

Size: 489 Bytes

Versions: 1

Compression:

Stored size: 489 Bytes

Contents

require 'set'

module Dither

  class Error < StandardError; end

  def self.all_pairs(params, t = 2, opts = {})
    IPOG.new(params, t, opts).run
  end

  def self.mipog(params, t = 2, opts = {})
    raise Error, 'mipog does not support constraints' if opts.key?(:constraints)
    MIPOG.new(params, t, opts).run
  end
end # Dither

require 'dither/param'
require 'dither/unbound_param'
require 'dither/test_case'
require 'dither/ipog_helper'
require 'dither/ipog'
require 'dither/mipog'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dither-0.0.7 lib/dither.rb