예제 #1
0
파일: osy.py 프로젝트: mbeza/pymoo-1
 def _calc_pareto_front(self):
     return load_pareto_front_from_file("osy.pf")
예제 #2
0
 def _calc_pareto_front(self):
     if self.n_obj == 3:
         return load_pareto_front_from_file("dtlz7-3d.pf")
     else:
         raise Exception("Not implemented yet.")
예제 #3
0
파일: modact.py 프로젝트: siaimes/pymoo
 def _calc_pareto_front(self, *args, **kwargs):
     """Loads the corresponding PF if it exists"""
     fname = f"{self.fct.name}_PF.dat"
     F = load_pareto_front_from_file(os.path.join("modact", fname))
     if F is not None:
         return F * self.weights * -1
예제 #4
0
 def _calc_pareto_front(self):
     return load_pareto_front_from_file("welded_beam.pf")
예제 #5
0
 def _calc_pareto_front(self):
     return load_pareto_front_from_file("kursawe.pf")
예제 #6
0
파일: ctp.py 프로젝트: water4you4ever/pymoo
 def _calc_pareto_front(self, *args, **kwargs):
     fname = f"{str(self.__class__.__name__).lower()}.pf"
     return load_pareto_front_from_file(os.path.join("CTP", fname))
예제 #7
0
 def _calc_pareto_front(self, *args, **kwargs):
     return load_pareto_front_from_file("kursawe.pf")
예제 #8
0
파일: mw.py 프로젝트: mbeza/pymoo-1
 def _calc_pareto_front(self, **kwargs):
     return load_pareto_front_from_file(os.path.join("MW", "MW14.pf"))