Sha256: 0432de20ac82c16e3fd1cb0f97141688401ea348a5f2be4f267f2bba001e179d

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

require 'set'

module Dither

  class Error < StandardError; end

  DEFUALT_OPTS = {
    :t => 2
  }

  # deprecated
  def self.all_pairs(params, t = 2, opts = {})
    opts[:t] = t
    IPOG.new(params, opts).run
  end

  def self.ipog(params, opts = {})
    opts = DEFUALT_OPTS.dup.merge(opts)
    IPOG.new(params, opts).run
  end

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

  def self.aetg(params, opts = {})
    opts = DEFUALT_OPTS.dup.merge(opts)
    Aetg::Pairwise.new(params, opts).run
  end

  class << self; alias_method :ateg, :aetg end
end # Dither

require 'dither/param'
require 'dither/unbound_param'
require 'dither/test_case'
require 'dither/ipog_helper'
require 'dither/ipog'
require 'dither/mipog'
require 'dither/chinese_postman_problem'
require 'dither/aetg'
require 'dither/aetg_pairwise'

if RUBY_PLATFORM =~ /java/
  require 'java'
  require 'choco-solver-3.3.1-with-dependencies.jar'
  require 'dither-0.1.2.jar'

  require 'dither/java_ext/dither'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dither-0.1.3-java lib/dither.rb
dither-0.1.3 lib/dither.rb