Skip to content
Snippets Groups Projects
Commit 6e74f389 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Polish

parent 391e551c
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3 #!/usr/bin/env python3
"""This script reads an edgelist and extracts a component using """This script reads an edgelist and extracts a component using
networkx. Note that, even with option --node, the script loads the networkx. The component is written to a new edgelist file.
whole graph into memory, with networkx. For the global graph on 30
years, this requires about 13 GiB of main memory. The file Note that the script loads the whole graph into memory. For
e_overestim.txt has to be in the same directory as the edgelist file the global graph on 30 years, this requires about 13 GiB of main
given as argument of the script. memory.
The file e_overestim.txt has to be in the same directory as the
edgelist file given as argument of the script.
""" """
......
#!/usr/bin/env python3 #!/usr/bin/env python3
"""This script reads an edgelist. Note that, even with option --node, """This script reads an edgelist. Note that the script loads the whole
the script loads the whole graph into memory, with networkx. For the graph into memory, with networkx. For the global graph on 30 years,
global graph on 30 years, this requires about 13 GiB of main this requires about 13 GiB of main memory. The file e_overestim.txt
memory. The file e_overestim.txt has to be in the same directory as has to be in the same directory as the edgelist file given as argument
the edgelist file given as argument of the script. of the script.
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment