Skip to content

Commit

Permalink
update model bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed May 7, 2020
1 parent acf0e48 commit 2091027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydamage/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class geom_mod():
def __init__(self):
self.kwds = ['geom_p', 'geom_pmin', 'geom_pmax']
self.bounds = ((0.001, 0.001, 0.001), (0.99, 0.2, 0.99))
self.bounds = ((0.0, 0.0, 0.0), (0.99, 0.2, 0.99))

def __repr__(self):
return(
Expand Down Expand Up @@ -57,7 +57,7 @@ def log_pmf(self, x, geom_p, geom_pmin, geom_pmax):
class unif_mod():
def __init__(self):
self.kwds = ('unif_pmin',)
self.bounds = ((0.001,), (0.2,))
self.bounds = ((0.0,), (0.2,))

def __repr__(self):
return(
Expand Down

0 comments on commit 2091027

Please sign in to comment.