All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fregata.optimize.Minimizer.scala Maven / Gradle / Ivy

The newest version!
package fregata.optimize

/**
 * Created by takun on 16/9/19.
 */
trait Minimizer extends Optimizer {
  private[this] var _target : Target = _
  def minimize(target: Target) : this.type = {
    this._target = target
    this
  }
  def target = _target
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy