{ "x": { "min": -50, "max": 50 }, "populationSize": 10, "formula": "f(x) = x^2", "crossover": "(ind1, ind2) => [{x: random(ind1.x, x.max)}, {x: random(ind2.x, x.max)}]", "mutation": "(ind) => {x: random(ind.x, x.max)}" }
{}