Skip to content

Commit

Permalink
set default start to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
DavAug committed Dec 6, 2022
1 parent a7d8a52 commit ce1983b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chi/_mechanistic_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ def parameters(self):
return copy.copy(names)

def set_dosing_regimen(
self, dose, start, duration=0.01, period=None, num=None):
self, dose, start=0, duration=0.01, period=None, num=None):
"""
Sets the dosing regimen with which the compound is administered.
Expand Down
8 changes: 4 additions & 4 deletions chi/_predictive_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def sample(
raise NotImplementedError

def set_dosing_regimen(
self, dose, start, duration=0.01, period=None, num=None):
self, dose, start=0, duration=0.01, period=None, num=None):
"""
Sets the dosing regimen of the administered compound.
Expand Down Expand Up @@ -755,7 +755,7 @@ def sample(
return samples

def set_dosing_regimen(
self, dose, start, duration=0.01, period=None, num=None):
self, dose, start=0, duration=0.01, period=None, num=None):
"""
Sets the dosing regimen with which the compound is administered.
Expand Down Expand Up @@ -1073,7 +1073,7 @@ def sample(
return measurements

def set_dosing_regimen(
self, dose, start, duration=0.01, period=None, num=None):
self, dose, start=0, duration=0.01, period=None, num=None):
"""
Sets the dosing regimen with which the compound is administered.
Expand Down Expand Up @@ -1389,7 +1389,7 @@ def sample(
return samples

def set_dosing_regimen(
self, dose, start, duration=0.01, period=None, num=None):
self, dose, start=0, duration=0.01, period=None, num=None):
"""
Sets the dosing regimen with which the compound is administered.
Expand Down

0 comments on commit ce1983b

Please sign in to comment.