Skip to content

Commit

Permalink
Fixed directed/undirected switched in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonLarsen committed Apr 27, 2017
1 parent b154103 commit 803faab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dk/sdu/compbio/faithmcs/FaithMCS.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void main(String[] args) throws ParseException, FileNotFoundExcept

boolean directed = cmd.hasOption("directed");
if(directed) {
System.err.println("Treating networks as undirected");
System.err.println("Treating networks as directed");
List<DirectedNetwork> networks = new ArrayList<>();
for(String path : cmd.getArgList()) {
DirectedNetwork network = new DirectedNetwork();
Expand All @@ -69,7 +69,7 @@ public static void main(String[] args) throws ParseException, FileNotFoundExcept
}
// undirected
else {
System.err.println("Treating networks as directed");
System.err.println("Treating networks as undirected");
List<UndirectedNetwork> networks = new ArrayList<>();
for(String path : cmd.getArgList()) {
UndirectedNetwork network = new UndirectedNetwork();
Expand Down

0 comments on commit 803faab

Please sign in to comment.