Skip to content

Commit

Permalink
Merge b72221b into 985a3df
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRossetti committed Aug 19, 2017
2 parents 985a3df + b72221b commit ae66122
Show file tree
Hide file tree
Showing 10 changed files with 274 additions and 319 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ omit =
setup.py
rdyn/__main__.py
rdyn/test/*
rdyn/alg/RDyn.py

[report]
exclude_lines =
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

before_install:
- pip install pytest pytest-cov
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ In order to generate a dynamic graph of 1000 nodes for 1000 iterations applying
```bash
python rdyn 1000 1000 True
```
The minimum number of nodes allowed is 1000.

## As python library

Expand Down Expand Up @@ -149,5 +148,6 @@ RDyn is written in python and requires the following package to run:
- python>=2.7.11
- networkx==1.11
- numpy==1.11.1
- scipy==0.17.0
- tqdm
- six
- future
2 changes: 1 addition & 1 deletion rdyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from rdyn.alg.RDyn import RDyn
from rdyn.alg.RDyn_v2 import RDynV2 as RDyn
2 changes: 1 addition & 1 deletion rdyn/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from rdyn.alg.RDyn import main
from rdyn.alg.RDyn_v2 import main

main()
Loading

0 comments on commit ae66122

Please sign in to comment.