diff --git a/Inst_eddies/Tests/short_tests.json b/Inst_eddies/Tests/short_tests.json index e2f0ad85b8a25c01e22ce07afe88bfab1713f710..b23f36f405d3ff84a0c43dfb936abb092f86a525 100644 --- a/Inst_eddies/Tests/short_tests.json +++ b/Inst_eddies/Tests/short_tests.json @@ -388,7 +388,8 @@ [ "$build_dir/Inst_eddies/test_nearby_extr", "$PWD/Inst_eddies_loop/SHPC_cyclo" - ] + ], + "description": "We are using Inst_eddies_loop, which is a previous test." }, { "description": "test_set_all_outerm with periodicity.", diff --git a/Overlap/overlap.f90 b/Overlap/overlap.f90 index af0658b7983075a7f4f018392903dd289bea87b5..f98a1d5560614cb9b1e8c2e24f2c9fdfebcacf79 100644 --- a/Overlap/overlap.f90 +++ b/Overlap/overlap.f90 @@ -117,8 +117,7 @@ contains spher_polyline_area(polyline_2))) then write(unit_edge, fmt = *) (k - delta) * e_overestim + i1, & k * e_overestim + i2, & - weight(flow(j - delta)%list(i1), & - flow(j)%list(i2)) + weight(flow(j - delta)%list(i1), flow(j)%list(i2)) flow(j - delta)%list(i1)%delta_out & = min(flow(j - delta)%list(i1)%delta_out, delta) flow(j)%list(i2)%delta_in & diff --git a/Overlap/plot_traj.py b/Overlap/plot_traj.py index 3ece8f90e8d66f7f9076eabb6a899aab0138c7e1..99e98b1681640d84a008feba306eb0be46282e2a 100755 --- a/Overlap/plot_traj.py +++ b/Overlap/plot_traj.py @@ -46,7 +46,7 @@ def plot_nbunch(G, nbunch, color = '#1f78b4', label = None, ax = None): for n in nbunch: if pos[n] is None: - print("missing coordinates for node ", n) + print("plot_nbunch: missing coordinates for node ", n) nbunch_plot.remove(n) xy = np.asarray([pos[n] for n in nbunch_plot])