Skip to content

Commit

Permalink
Added read network size log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonLarsen committed Apr 27, 2017
1 parent 803faab commit 45fe01a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/dk/sdu/compbio/faithmcs/FaithMCS.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public static void main(String[] args) throws ParseException, FileNotFoundExcept
DirectedNetwork network = new DirectedNetwork();
NetworkReader.read(network, new File(path));
networks.add(network);
System.err.println(String.format("Read network file: %s. Nodes: %d. Edges: %d.", path, network.vertexSet().size(), network.edgeSet().size()));
}

aligner = new DirectedIteratedLocalSearch(networks, perturbation);
Expand All @@ -75,6 +76,7 @@ public static void main(String[] args) throws ParseException, FileNotFoundExcept
UndirectedNetwork network = new UndirectedNetwork();
NetworkReader.read(network, new File(path));
networks.add(network);
System.err.println(String.format("Read network file: %s. Nodes: %d. Edges: %d.", path, network.vertexSet().size(), network.edgeSet().size()));
}

aligner = new UndirectedIteratedLocalSearch(networks, perturbation);
Expand Down

0 comments on commit 45fe01a

Please sign in to comment.