Packages

o

ga

GeneticAlgo

object GeneticAlgo

1) start with an initial population, represented as Seq[A] 2) sort on fitness 3) if there is a solution, good times, else ... 4) reproduce - "mate" each entry with another within a certain proximity. we will end up with another Seq[A] with the offspring 5) potentially mutate some records - again go from Seq[A] -> Seq[A]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GeneticAlgo
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Generation[A] = (Int, IndexedSeq[Geneology[A]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException])
  6. def combineAndMutate[A](random: Seed, mom: Geneology[A], dad: Geneology[A], generation: Int, childRecordId: Int)(implicit arg0: AlgoSettings[A]): (Seed, Geneology[A])

    Do the mating/mutating of the two records

    Do the mating/mutating of the two records

    random

    our 'random' seed used to control randomness in our function for determining how to mate the two parents

    mom

    the parent record 1

    dad

    another parent record

    generation

    some detail for the geneology

    childRecordId

    some detail for the geneology

  7. def createNextGeneration[A](originalPopulation: IndexedSeq[Geneology[A]], initialSeed: Seed, generation: Int)(implicit arg0: AlgoSettings[A]): (Seed, IndexedSeq[Geneology[A]])

    This is our application logic - take some existing population (represented as Geneology so as to carry on a history)

    This is our application logic - take some existing population (represented as Geneology so as to carry on a history)

    generation

    a generation value to use when creating the new elements

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def solve[A](population: Seq[A], seed: Seed = Seed(), debug: (Generation[A]) => Unit)(implicit arg0: AlgoSettings[A]): Option[Geneology[A]]
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Inherited from AnyRef

Inherited from Any

Ungrouped