Skip to content

Commit

Permalink
put Control in HARK.model
Browse files Browse the repository at this point in the history
  • Loading branch information
sbenthall committed Sep 1, 2023
1 parent 80b82dd commit a494782
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 11 additions & 0 deletions HARK/model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
Tools for crafting models.
"""

class Control:
"""
Should go in different model support module.
"""

def __init__(self, args):
pass
12 changes: 1 addition & 11 deletions HARK/models/perfect_foresight.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a494782

Please sign in to comment.