remove output to stdout that was added for testing

This commit is contained in:
eugenefischer
2025-04-10 15:08:33 -05:00
parent d1810c453d
commit 83eff0d1e7

View File

@@ -154,14 +154,9 @@ public class Simulator implements GraphModificationFunctions {
sharedWells.retainAll(b.getRecord().getWells()); sharedWells.retainAll(b.getRecord().getWells());
double weight = (double) sharedWells.size(); double weight = (double) sharedWells.size();
if (weight != 0.0) { if (weight != 0.0) {
System.out.println("Edge weight: " + weight);
DefaultWeightedEdge edge = graph.addEdge(a, b); DefaultWeightedEdge edge = graph.addEdge(a, b);
graph.setEdgeWeight(edge, weight); graph.setEdgeWeight(edge, weight);
} }
else {
System.out.println("No overlap");
}
} }
} }
if(verbose){System.out.println("Graph created");} if(verbose){System.out.println("Graph created");}