From 14fcfe1ff3da052ca1e1065bdc9c5911493c89bd Mon Sep 17 00:00:00 2001 From: eugenefischer <66030419+eugenefischer@users.noreply.github.com> Date: Mon, 26 Sep 2022 23:38:56 -0500 Subject: [PATCH] spacing --- src/main/java/GraphModificationFunctions.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/GraphModificationFunctions.java b/src/main/java/GraphModificationFunctions.java index 5a0f2cf..10167dc 100644 --- a/src/main/java/GraphModificationFunctions.java +++ b/src/main/java/GraphModificationFunctions.java @@ -124,6 +124,7 @@ public interface GraphModificationFunctions { static Boolean RelativeReadCountFilterFunction(Integer threshold, Integer alphaReadCount, Integer betaReadCount) { return Math.abs(alphaReadCount - betaReadCount) < threshold; } + static void addRemovedEdges(SimpleWeightedGraph graph, Map removedEdges) { for (Vertex[] edge : removedEdges.keySet()) {