Skip to content

Commit

Permalink
mcma: corrected default epsilon value
Browse files Browse the repository at this point in the history
The previously used value caused sometime problems with nadir estimations.
  • Loading branch information
marek-iiasa committed Apr 18, 2024
1 parent cc2ccd4 commit 617d6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/mcma/ctr_mca.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, cfg): # par_rep False/True controls no/yes Pareto represent
# tolerances
self.cafAsp = 100. # value of CAF at A (if A undefined, then at U)
self.critScale = 1000. # range [utopia, nadir] of scaled values (no longer needed?)
self.epsilon = 1.e-4 # fraction of self.cafAsp used for scaling the AF regularizing term
self.epsilon = 1.e-6 # fraction of self.cafAsp used for scaling the AF regularizing term
#
self.minDiff = 0.001 # min. relative differences between (U, N), (U, A), (A, R), (R, N) (was 0.01)
self.slopeR = 10. # slope ratio between mid-segment and segments above A and below R
Expand Down

0 comments on commit 617d6f3

Please sign in to comment.