Skip to content

Commit

Permalink
removing min when using bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
karllark committed Aug 15, 2024
1 parent 1909db0 commit 530b416
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dust_extinction/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ class FM90(Fittable1DModel):
C2 = Parameter(description="linear term: slope", default=0.70, bounds=(-0.1, 5.0))
C3 = Parameter(description="bump: amplitude", default=3.23, bounds=(-1.0, 6.0))
C4 = Parameter(description="FUV rise: amplitude", default=0.41, bounds=(-0.5, 1.5))
xo = Parameter(description="bump: centroid", default=4.59, min=0.0, bounds=(4.5, 4.9))
gamma = Parameter(description="bump: width", default=0.95, min=0.0, bounds=(0.6, 1.7))
xo = Parameter(description="bump: centroid", default=4.59, bounds=(4.5, 4.9))
gamma = Parameter(description="bump: width", default=0.95, bounds=(0.6, 1.7))

x_range = x_range_FM90

Expand Down Expand Up @@ -406,8 +406,8 @@ class FM90_B3(Fittable1DModel):
C2 = Parameter(description="linear term: slope", default=0.70, bounds=(-0.1, 5.0))
B3 = Parameter(description="bump: amplitude", default=3.23, bounds=(-1.0, 6.0))
C4 = Parameter(description="FUV rise: amplitude", default=0.41, bounds=(-0.5, 1.5))
xo = Parameter(description="bump: centroid", default=4.59, min=0.0, bounds=(4.5, 4.9))
gamma = Parameter(description="bump: width", default=0.95, min=0.0, bounds=(0.6, 1.7))
xo = Parameter(description="bump: centroid", default=4.59, bounds=(4.5, 4.9))
gamma = Parameter(description="bump: width", default=0.95, bounds=(0.6, 1.7))

x_range = x_range_FM90

Expand Down

0 comments on commit 530b416

Please sign in to comment.