From 6e74f389141a5bbd64e02423bdef5e47481e5905 Mon Sep 17 00:00:00 2001
From: Lionel GUEZ <guez@lmd.ens.fr>
Date: Wed, 21 Feb 2024 19:00:32 +0100
Subject: [PATCH] Polish

---
 Overlap/Analysis/extract_component_nx.py | 13 ++++++++-----
 Overlap/Analysis/report_graph.py         | 10 +++++-----
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/Overlap/Analysis/extract_component_nx.py b/Overlap/Analysis/extract_component_nx.py
index 8786824c..80c0ecbc 100755
--- a/Overlap/Analysis/extract_component_nx.py
+++ b/Overlap/Analysis/extract_component_nx.py
@@ -1,11 +1,14 @@
 #!/usr/bin/env python3
 
 """This script reads an edgelist and extracts a component using
-networkx. Note that, even with option --node, the script loads the
-whole graph into memory, with networkx. For the global graph on 30
-years, this requires about 13 GiB of main memory. The file
-e_overestim.txt has to be in the same directory as the edgelist file
-given as argument of the script.
+networkx. The component is written to a new edgelist file.
+
+Note that the script loads the whole graph into memory. For
+the global graph on 30 years, this requires about 13 GiB of main
+memory.
+
+The file e_overestim.txt has to be in the same directory as the
+edgelist file given as argument of the script.
 
 """
 
diff --git a/Overlap/Analysis/report_graph.py b/Overlap/Analysis/report_graph.py
index 129ae950..3b8dde00 100755
--- a/Overlap/Analysis/report_graph.py
+++ b/Overlap/Analysis/report_graph.py
@@ -1,10 +1,10 @@
 #!/usr/bin/env python3
 
-"""This script reads an edgelist. Note that, even with option --node,
-the script loads the whole graph into memory, with networkx. For the
-global graph on 30 years, this requires about 13 GiB of main
-memory. The file e_overestim.txt has to be in the same directory as
-the edgelist file given as argument of the script.
+"""This script reads an edgelist. Note that the script loads the whole
+graph into memory, with networkx. For the global graph on 30 years,
+this requires about 13 GiB of main memory. The file e_overestim.txt
+has to be in the same directory as the edgelist file given as argument
+of the script.
 
 """
 
-- 
GitLab