Skip to content

Commit

Permalink
'v2.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
smasky committed May 7, 2024
1 parent ce8e05d commit 3e2bf16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UQPyL/optimization/asmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def run(self,maxFE=1000, Tolerate=0.001, maxTolerateTime=50, oneStep=False):
else:
self.surrogate.fit(XPop, YPop)
res=SCE_UA(self.subProblem).run()
BestX_SM=res['best_decs']
BestX_SM=res['best_dec']

TempY=self.evaluate(BestX_SM)

Expand Down
4 changes: 2 additions & 2 deletions UQPyL/optimization/mo_asmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ def run(self):
nsga_ii=NSGAII(self.subProblem, self.n_pop)
#main optimization
Result=nsga_ii.run()
BestX=Result['pareto_X']
BestY=Result['pareto_Y']
BestX=Result['pareto_x']
BestY=Result['pareto_y']
CrowdDis=Result['crowdDis']

if self.advance_infilling==False:
Expand Down

0 comments on commit 3e2bf16

Please sign in to comment.