NoisyOSE

object NoisyOSE
Companion
class
trait Product
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case
class Result[P](continuous: Vector[Double], discrete: Vector[Int], fitness: Vector[Double], replications: Int, individual: Individual[P])

Types

type OSEState[P] = EvolutionState[(P)]
type StateType[P] = (Array[Individual[P]], ReachMap)

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def adaptiveBreeding[P : Manifest](lambda: Int, operatorExploration: Double, cloneProbability: Double, aggregation: Vector[P] => Vector[Double], discrete: Vector[D], origin: (Vector[Double], Vector[Int]) => Vector[Int], limit: Vector[Double], reject: Option[Genome => Boolean]): (OSEState[P], Individual[P]) => Genome
def archiveLens[P]: Lens[EvolutionState[(P)], Array[Individual[P]]]
def elitism[P : Manifest](mu: Int, historySize: Int, aggregation: Vector[P] => Vector[Double], components: Vector[C], origin: (Vector[Double], Vector[Int]) => Vector[Int], limit: Vector[Double]): OSEState[P] => Individual[P]
def expression[P : Manifest](fitness: (Random, Vector[Double], Vector[Int]) => P, continuous: Vector[C]): (Random, Genome) => Individual[P]
def initialGenomes(lambda: Int, continuous: Vector[C], discrete: Vector[D], reject: Option[Genome => Boolean], rng: Random): Vector[Genome]
def reject[P](pse: NoisyOSE[P]): Option[Genome => Boolean]
def result[P : Manifest](state: OSEState[P], population: Vector[Individual[P]], aggregation: Vector[P] => Vector[Double], continuous: Vector[C], limit: Vector[Double], keepAll: Boolean): Vector[Result[P]]
def result[P : Manifest](noisyOSE: NoisyOSE[P], state: OSEState[P], population: Vector[Individual[P]]): Vector[Result[P]]

Implicits

Implicits

implicit
def isAlgorithm[P : Manifest]: Algorithm[NoisyOSE[P], Individual[P], Genome, OSEState[P]]