Skip to content

Commit

Permalink
Removed error in optimize.py
Browse files Browse the repository at this point in the history
  • Loading branch information
blankjul committed Aug 30, 2018
1 parent 77ce884 commit 637d24d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pymoo/optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from pymoo.algorithms.so_DE import DifferentialEvolution
from pymoo.algorithms.so_genetic_algorithm import SingleObjectiveGeneticAlgorithm
from pymoo.algorithms.unsga3 import UNSGA3
from pymoo.experimental.adaptive_nsga3 import AdaptiveNSGA3
from pymoo.model.termination import MaximumFunctionCallTermination, MaximumGenerationTermination, IGDTermination
from pymoo.rand import random
from pymop.problem import Problem
Expand Down Expand Up @@ -142,8 +141,6 @@ def _minimize(problem, termination, method, method_args={}, seed=1,
algorithm = NSGA3(**method_args)
elif method == 'unsga3':
algorithm = UNSGA3(**method_args)
elif method == 'ansga3':
algorithm = AdaptiveNSGA3(**method_args)
elif method == 'moead':
algorithm = MOEAD(**method_args)
elif method == 'de':
Expand Down

0 comments on commit 637d24d

Please sign in to comment.