In order to implement #128 , I want to make a new file called marginal.py. This file needs to import Forest, and microdata.py needs to import marginal.py.
From the current implementation, this creates an import loop, because forest.py imports microdata.py in order to get access to get_null_mappings().
I propose moving get_null_mappings() to interval.py. This seems a little cleaner in any event, since nothing in microdata.py uses get_null_mappings()
In order to implement #128 , I want to make a new file called
marginal.py
. This file needs to importForest
, andmicrodata.py
needs to importmarginal.py
.From the current implementation, this creates an import loop, because
forest.py
importsmicrodata.py
in order to get access toget_null_mappings()
.I propose moving
get_null_mappings()
tointerval.py
. This seems a little cleaner in any event, since nothing inmicrodata.py
usesget_null_mappings()