2 Commits

Author SHA1 Message Date
eugenefischer
f1e4c4f194 Remove duplicate output statements 2022-09-29 01:05:36 -05:00
eugenefischer
b6218c3ed3 update version 2022-09-29 00:53:11 -05:00
2 changed files with 1 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ public class BiGpairSEQ {
private static HeapType priorityQueueHeapType = HeapType.FIBONACCI; private static HeapType priorityQueueHeapType = HeapType.FIBONACCI;
private static boolean outputBinary = true; private static boolean outputBinary = true;
private static boolean outputGraphML = false; private static boolean outputGraphML = false;
private static final String version = "version 3.0"; private static final String version = "version 4.1";
public static void main(String[] args) { public static void main(String[] args) {
if (args.length == 0) { if (args.length == 0) {

View File

@@ -69,10 +69,6 @@ public class Simulator implements GraphModificationFunctions {
if(verbose){System.out.println("Remaining alpha sequence count: " + alphaSequences.size());} if(verbose){System.out.println("Remaining alpha sequence count: " + alphaSequences.size());}
if(verbose){System.out.println("Remaining beta sequence count: " + betaSequences.size());} if(verbose){System.out.println("Remaining beta sequence count: " + betaSequences.size());}
} }
int pairableAlphaCount = alphaSequences.size();
if(verbose){System.out.println("Remaining alpha sequence count: " + pairableAlphaCount);}
int pairableBetaCount = betaSequences.size();
if(verbose){System.out.println("Remaining beta sequence count: " + pairableBetaCount);}
//construct the graph. For simplicity, going to make //construct the graph. For simplicity, going to make
if(verbose){System.out.println("Making vertex maps");} if(verbose){System.out.println("Making vertex maps");}