diff options
| author | jeanpouget-abadie <jean.pougetabadie@gmail.com> | 2014-12-07 16:20:40 -0500 |
|---|---|---|
| committer | jeanpouget-abadie <jean.pougetabadie@gmail.com> | 2014-12-07 16:20:40 -0500 |
| commit | 4ba0141322e8d35da9a762909603bd280dec64bf (patch) | |
| tree | 97b97530f13ab401ce4b6fc6704d0134adaad78a /src/cascade_creation.py | |
| parent | 566f9248c05db44133e3cbf145a4cbaf2fed140d (diff) | |
| download | cascades-4ba0141322e8d35da9a762909603bd280dec64bf.tar.gz | |
bug fix: initialization to directed graph missing
Diffstat (limited to 'src/cascade_creation.py')
| -rw-r--r-- | src/cascade_creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cascade_creation.py b/src/cascade_creation.py index 9a26c03..1a71285 100644 --- a/src/cascade_creation.py +++ b/src/cascade_creation.py @@ -4,7 +4,7 @@ import collections from itertools import izip from sklearn.preprocessing import normalize -class InfluenceGraph(nx.Graph): +class InfluenceGraph(nx.DiGraph): """ networkX graph with mat and logmat attributes """ |
