File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
docs/src/optimization_packages Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ npartitions = 100
106106weights = Metaheuristics.gen_ref_dirs(nobjectives, npartitions)
107107
108108# Choose the algorithm as required.
109- alg1 = NSGA2()
110- alg2 = NSGA3()
111- alg3 = SPEA2()
112- alg4 = CCMO(NSGA2(N=100, p_m=0.001))
113- alg5 = MOEAD_DE(weights, options=Options(debug=false, iterations = 250))
114- alg6 = SMS_EMOA()
109+ alg1 = Metaheuristics. NSGA2()
110+ alg2 = Metaheuristics. NSGA3()
111+ alg3 = Metaheuristics. SPEA2()
112+ alg4 = Metaheuristics. CCMO(NSGA2(N=100, p_m=0.001))
113+ alg5 = Metaheuristics. MOEAD_DE(weights, options=Options(debug=false, iterations = 250))
114+ alg6 = Metaheuristics. SMS_EMOA()
115115
116116# Solve the problem
117117sol1 = solve(prob, alg1; maxiters = 100, use_initial = true)
You can’t perform that action at this time.
0 commit comments