Description Usage Arguments Author(s) References Examples
Collection of functions implementing various MCO test problems.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | belegundu(x)
belegundu.constr(x)
binh1(x)
binh2(x)
binh2.constr(x)
binh3(x)
deb3(x)
fonseca1(x)
fonseca2(x)
gianna(x)
hanne1(x)
hanne1.constr(x)
hanne2(x)
hanne2.constr(x)
hanne3(x)
hanne3.constr(x)
hanne4(x)
hanne4.constr(x)
hanne5(x)
hanne5.constr(x)
jimenez(x)
jimenez.constr(x)
vnt(x)
zdt1(x)
zdt2(x)
zdt3(x)
|
x |
Input vector |
Heike Trautmann trautmann@statistik.tu-dortmund.de, Detlef Steuer steuer@hsu-hamburg.de and Olaf Mersmann olafm@statistik.tu-dortmund.de
~put references to the literature/web site here ~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | nsga2(belegundu, 2, 2,
constraints=belegundu.constr, cdim=2,
lower.bounds=c(0, 0), upper.bounds=c(5, 3))
nsga2(binh1, 2, 2,
lower.bounds=c(-5, -5), upper.bounds=c(10, 10))
nsga2(binh2, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(5, 3),
constraints=binh2.constr, cdim=2)
nsga2(binh3, 2, 3,
lower.bounds=c(10e-6, 10e-6), upper.bounds=c(10e6, 10e6))
nsga2(deb3, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(1, 1),
generations=500)
nsga2(fonseca1, 2, 2,
lower.bounds=c(-100, -100), upper.bounds=c(100, 100))
nsga2(fonseca2, 2, 2,
lower.bounds=c(-4, -4), upper.bounds=c(4, 4))
nsga2(gianna, 1, 2,
lower.bounds=5, upper.bounds=10)
nsga2(hanne1, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(10, 10),
constraints=hanne1.constr, cdim=1)
nsga2(hanne2, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(10, 10),
constraints=hanne2.constr, cdim=1)
nsga2(hanne3, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(10, 10),
constraints=hanne3.constr, cdim=1)
nsga2(hanne4, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(10, 10),
constraints=hanne4.constr, cdim=1)
nsga2(hanne5, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(10, 10),
constraints=hanne5.constr, cdim=1)
nsga2(jimenez, 2, 2,
lower.bounds=c(0, 0), upper.bounds=c(100, 100),
constraints=jimenez.constr, cdim=4)
nsga2(vnt, 2, 3,
lower.bounds=rep(-3, 2), upper.bounds=rep(3, 2))
nsga2(zdt1, 30, 2,
lower.bounds=rep(0, 30), upper.bounds=rep(1, 30))
nsga2(zdt2, 30, 2,
lower.bounds=rep(0, 30), upper.bounds=rep(1, 30))
nsga2(zdt3, 30, 2,
lower.bounds=rep(0, 30), upper.bounds=rep(1, 30))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.