Skip to content
Snippets Groups Projects
Commit 162069dd authored by gsavin's avatar gsavin
Browse files

Delete main() in LCFGenerator...

parent 953ad1c0
Branches
No related merge requests found
......@@ -32,11 +32,6 @@ package org.graphstream.algorithm.generator;
import java.util.HashSet;
import org.graphstream.algorithm.generator.lcf.Balaban10CageGraphGenerator;
import org.graphstream.algorithm.generator.lcf.BiggsSmithGraphGenerator;
import org.graphstream.algorithm.generator.lcf.NauruGraphGenerator;
import org.graphstream.graph.implementations.DefaultGraph;
/**
* Build a graph using a lcf notation.
*
......@@ -163,13 +158,4 @@ public class LCFGenerator extends BaseGenerator {
return String.format("%03d_%03d", i1, i2);
}
public static void main(String... args) throws Exception {
DefaultGraph g = new DefaultGraph("g");
LCFGenerator gen = new BiggsSmithGraphGenerator();
gen.addSink(g);
g.display(false);
gen.begin();
}
}
......@@ -59,7 +59,7 @@ public class BiggsSmithGraphGenerator extends LCFGenerator {
-18, 25, 38, 31, -25, 24, -46, -14, 28, 11, 21, 35, -39, 43, 36,
-38, 14, 50, 43, 36, -11, -36, -24, 45, 8, 19, -25, 38, 20, -24,
-14, -21, -8, 44, -31, -38, -28, 37);
public BiggsSmithGraphGenerator() {
super(BIGGS_SMITH_GRAPH_LCF, 102, false);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment