diff --git a/HARK/model.py b/HARK/model.py new file mode 100644 index 000000000..2ea919ea6 --- /dev/null +++ b/HARK/model.py @@ -0,0 +1,11 @@ +""" +Tools for crafting models. +""" + +class Control: + """ + Should go in different model support module. + """ + + def __init__(self, args): + pass diff --git a/HARK/models/perfect_foresight.py b/HARK/models/perfect_foresight.py index 419d77683..cca33e2ed 100644 --- a/HARK/models/perfect_foresight.py +++ b/HARK/models/perfect_foresight.py @@ -1,15 +1,5 @@ - - -class Control: - """ - Should go in different model support module. - """ - - def __init__(self, args): - pass - - from HARK.distribution import Bernoulli +from HARK.model import Control # This way of distributing parameters across the scope is clunky # Can be handled better if parsed from a YAML file, probably