-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from sepandhaghighi/dev
Version 0.7
- Loading branch information
Showing
10 changed files
with
296 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,23 +90,23 @@ Pyrgg target audiences are computer scientists who study graph algorithms and gr | |
## Installation | ||
|
||
### Source Code | ||
- Download [Version 0.6](https://github.com/sepandhaghighi/pyrgg/archive/v0.6.zip) or [Latest Source ](https://github.com/sepandhaghighi/pyrgg/archive/dev.zip) | ||
- Download [Version 0.7](https://github.com/sepandhaghighi/pyrgg/archive/v0.7.zip) or [Latest Source ](https://github.com/sepandhaghighi/pyrgg/archive/dev.zip) | ||
- `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access) | ||
- `python3 setup.py install` or `python setup.py install` (Need root access) | ||
|
||
### PyPI | ||
|
||
- Check [Python Packaging User Guide](https://packaging.python.org/installing/) | ||
- `pip install pyrgg==0.6` or `pip3 install pyrgg==0.6` (Need root access) | ||
- `pip install pyrgg==0.7` or `pip3 install pyrgg==0.7` (Need root access) | ||
|
||
### Conda | ||
|
||
- Check [Conda Managing Package](https://conda.io) | ||
- `conda install -c sepandhaghighi pyrgg` (Need root access) | ||
|
||
### Exe Version (Only Windows) | ||
- Download [Exe-Version 0.6](https://github.com/sepandhaghighi/pyrgg/releases/download/v0.6/PYRGG-0.6.exe) | ||
- Run `PYRGG-0.6.exe` | ||
- Download [Exe-Version 0.7](https://github.com/sepandhaghighi/pyrgg/releases/download/v0.7/PYRGG-0.7.exe) | ||
- Run `PYRGG-0.7.exe` | ||
|
||
### System Requirements | ||
Pyrgg will likely run on a modern dual core PC. Typical configuration is: | ||
|
@@ -186,6 +186,8 @@ or send an email to [[email protected]](mailto:[email protected] "[email protected]"). | |
- [Sample 2-UCINET DL](https://www.dropbox.com/s/kbzbsy47uvfqdsi/1000.dl?dl=0) (1000 Vertices , 729KB) | ||
- [Sample 1-MTX](https://www.dropbox.com/s/ztw3vg0roups82q/100.mtx?dl=0) (100 Vertices , 59KB) | ||
- [Sample 2-MTX](https://www.dropbox.com/s/skjjvbbzrpvryl4/1000.mtx?dl=0) (1000 Vertices , 1.8MB) | ||
- [Sample 1-GL](https://www.dropbox.com/s/obmmb5nw1lca9z3/100.gl?dl=0) (100 Vertices , 17KB) | ||
- [Sample 2-GL](https://www.dropbox.com/s/intufsbudnmfv8m/1000.gl?dl=0) (1000 Vertices , 2.4MB) | ||
|
||
|
||
|
||
|
@@ -363,6 +365,15 @@ or send an email to [[email protected]](mailto:[email protected] "[email protected]"). | |
. | ||
<head_n> <tail_n> <weight_n> | ||
``` | ||
- Graph Line(.gl) | ||
``` | ||
<head_1> <tail_1>:<weight_1> <tail_2>:<weight_2> ... <tail_n>:<weight_n> | ||
<head_2> <tail_1>:<weight_1> <tail_2>:<weight_2> ... <tail_n>:<weight_n> | ||
. | ||
. | ||
. | ||
<head_n> <tail_1>:<weight_1> <tail_2>:<weight_2> ... <tail_n>:<weight_n> | ||
``` | ||
- [Pickle(.p)](https://docs.python.org/3.5/library/pickle.html) (Binary Format) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ | |
8: dl_maker, | ||
9: tgf_maker, | ||
10: tsv_maker, | ||
11: mtx_maker} | ||
11: mtx_maker, | ||
12: gl_maker} | ||
|
||
|
||
def run(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,14 +33,14 @@ def read_description(): | |
setup( | ||
name='pyrgg', | ||
packages=['pyrgg'], | ||
version='0.6', | ||
version='0.7', | ||
description='Python Random Graph Generator', | ||
long_description=read_description(), | ||
long_description_content_type='text/markdown', | ||
author='Sepand Haghighi', | ||
author_email='[email protected]', | ||
url='https://github.com/sepandhaghighi/pyrgg', | ||
download_url='https://github.com/sepandhaghighi/pyrgg/tarball/v0.6', | ||
download_url='https://github.com/sepandhaghighi/pyrgg/tarball/v0.7', | ||
keywords='random graph python3 python generator graph-process generator DIMACS JSON YAML Pickle CSV TSV WEL ASP TGF UCINET', | ||
project_urls={ | ||
'Webpage': 'https://www.pyrgg.ir', | ||
|
Oops, something went wrong.