code review shows no major benefit to using the separate _graph object. Use is only increasing confusion regarding program state. All usages should be replaced with similar usage of the Model class (inheriting from the graph class is not necessary nor feasible due to differing implementations). This should be done to reduce the complexity of resolving #34 and of implementing node updating.
To get started replace all ._graph.getParentsOf( with ._model.get_parents_of( or similar...
code review shows no major benefit to using the separate _graph object. Use is only increasing confusion regarding program state. All usages should be replaced with similar usage of the Model class (inheriting from the graph class is not necessary nor feasible due to differing implementations). This should be done to reduce the complexity of resolving #34 and of implementing node updating.
To get started replace all
._graph.getParentsOf(
with._model.get_parents_of(
or similar...