Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

SciML/Evolutionary.jl

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

235 Commits
235 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Evolutionary

A Julia package for evolutionary & genetic algorithms.

Documentation Build Status References

Installation

The package can be installed with the Julia package manager. From the Julia REPL, type ] to enter the Pkg REPL mode and run:

pkg> add Evolutionary

Algorithms

  • (μ/ρ(+/,)λ)-SA-ES (ES)
  • (μ/μI,λ)-CMA-ES (CMAES)
  • Genetic Algorithms (GA)
    • Multi-objective: NSGA-II (NSGA2)
  • Differential Evolution (DE)
  • Genetic Programming (TreeGP)

Operators

  • Mutations

    • ES
      • (an)isotropic Gaussian
      • (an)isotropic Cauchy
    • GA
      • binary
        • flip
        • inversion
      • real valued
        • uniform
        • Gaussian
        • BGA (domain range)
        • (MI)PM (power)
        • PLM (polynomial)
      • combinatorial
        • inversion
        • insertion
        • swap2
        • scramble
        • shifting
  • Recombinations

    • average
    • marriage
  • Crossovers

    • binary
      • SPX (single point)
      • TPX (two point)
      • SHFX (shuffle)
      • UX (uniform)
      • BINX (binary)
      • EXPX (exponential)
      • BSX (binary subset)
    • real valued
      • DC (discrete)
      • AX (average)
      • WAX (weighted average)
      • IC (intermediate)
      • LC (line)
      • HX (heuristic)
      • (MI)LX (Laplace)
      • SBX (simulated binary)
    • combinatorial
      • PMX (partially-mapped)
      • OX1 (order)
      • OX2 (order-based)
      • CX (cycle)
      • POS (position-based)
  • Selections

    • rank-based fitness assignment
    • (μ, λ)-uniform ranking
    • roulette (fitness proportionate selection, FSP)
    • stochastic universal sampling (SUS)
    • tournament
    • truncation
Morty Proxy This is a proxified and sanitized view of the page, visit original site.