Browse Source

Moving RandomGraph static class to separate file. Cleaning up imports.

master
Charles Reid 8 years ago
parent
commit
e325c0d817
  1. 155
      guava/RandomGraph.java
  2. 153
      guava/TSP_Version1.java
  3. 153
      guava/TSP_Version2.java
  4. 5
      guava/time_java.sh
  5. 40
      guava/timeout_tsp_java_20170328_003528_v1.out
  6. 40
      guava/timeout_tsp_java_20170328_003857_v2.out

155
guava/RandomGraph.java

@ -0,0 +1,155 @@ @@ -0,0 +1,155 @@
import java.util.Random;
import java.util.Set;
import java.util.Map;
import java.util.TreeMap;
import java.util.List;
import java.util.LinkedList;
import java.util.Arrays;
import java.io.File;
import java.io.PrintStream;
import com.google.common.graph.Network;
import com.google.common.graph.NetworkBuilder;
import com.google.common.graph.ImmutableNetwork;
import com.google.common.graph.MutableNetwork;
import com.google.common.graph.EndpointPair;
import java.lang.IllegalArgumentException;
/** Static class to generate random graphs.
*
* We are interested in profiling code as a function of
* number of nodes N and number of edges E,
* so this class takes arguments N and E.
*/
public class RandomGraph {
private RandomGraph(){};
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes, (nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes, double connectivity) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes,(int)connectivity*(nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int N, int E) throws IllegalArgumentException {
Random r = new Random(150);
/** Make a NetworkBuilder object for an undirected network and call build().
*
* https://github.com/google/guava/wiki/GraphsExplained#building-graph-instances
*
* This will load an adjacency matrix from a file.
*
* nodes is the number of nodes on the graph.
* connectivity is a number between 0 (totally disconnected) and 1 (fully connected).
*/
// MutableNetwork is an interface requiring a type for nodes and a type for edges
MutableNetwork<Node,Edge> roads = NetworkBuilder.undirected().build();
// Add nodes to graph
List<Node> all_nodes = new LinkedList<Node>();
for(int n=0; n<N; n++) {
Node thenode = new Node(n);
all_nodes.add(thenode);
roads.addNode(thenode);
}
// Adding random edges to graph
// between n_i and n_j
//
// If i != j, and edges are single and symmetric,
// N nodes have N! possible connections.
//
// start with a sequence enumerating all possible edges of the graph:
// j = 1 ... N!
// Now we can convert each enumeration to its corresponding pair
//
//
class Pair {
int left;
int right;
public Pair(int left, int right) {
this.left = left;
this.right = right;
}
}
// Make 2 arrays:
// one integers ix = 1 .. E
// one pairs P(i,j), i != j
// we will make all possible pairs,
// then shuffle indexes to pick pairs at random.
Pair[] all_edges = new Pair[(N*(N-1))/2];
int[] index = new int[(N*(N-1))/2];
int c = 0;
for(int i=0;i<N;i++){
for(int j=i+1;j<N;j++){
// make the pair and increment the index
all_edges[c] = new Pair(i,j);
index[c] = c;
c++;
}
}
// mix up the pair indexes
RandomArray.shuffle(index);
for(int e : index) {
Pair p = all_edges[e];
// now we have our random pair.
// create a random distance and add to the graph.
int distance = 10 + r.nextInt(100);
Edge egg = new Edge(distance);
roads.addEdge(all_nodes.get(p.left),all_nodes.get(p.right),egg);
}
// freeze the network
ImmutableNetwork<Node,Edge> frozen_roads = ImmutableNetwork.copyOf(roads);
return frozen_roads;
}
public static void toDot( ImmutableNetwork<Node,Edge> graph) {
String dot = "graph G{\n";
dot += "\tratio = fill; node [shape = circle]; edge [dir=none];\n";
int i = 0;
for(Node n : graph.nodes()) {
dot += "\t" + n.id + " [style=filled fillcolor=gray];\n";
}
int j = 0;
for(Edge e : graph.edges()) {
EndpointPair<Node> pair = graph.incidentNodes(e);
Node left = pair.nodeU();
Node right = pair.nodeV();
dot += "\t" + left.id + " -- " + right.id + " [label = \"" + e.value + "\"];\n";
}
dot += "}\n";
try{
PrintStream p = new PrintStream(new File("graphviz.dot"));
p.println(dot);
} catch(Exception e) {
// meh.
}
}
}
/** Static class to shuffle an array.
* (That's Java for you.)
*/
class RandomArray {
public static void shuffle(int[] arr) {
Random r = new Random(150);
for(int i=(arr.length-1); i>0; i--) {
int j = r.nextInt(i+1);
// swap arr[i] and arr[j]
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}

153
guava/TSP_Version1.java

@ -1,12 +1,9 @@ @@ -1,12 +1,9 @@
import java.util.Random;
import java.util.Set;
import java.util.Map;
import java.util.TreeMap;
import java.util.List;
import java.util.LinkedList;
import java.util.Arrays;
import java.io.File;
import java.io.PrintStream;
import com.google.common.graph.Network;
import com.google.common.graph.NetworkBuilder;
import com.google.common.graph.ImmutableNetwork;
@ -14,13 +11,9 @@ import com.google.common.graph.MutableNetwork; @@ -14,13 +11,9 @@ import com.google.common.graph.MutableNetwork;
import com.google.common.graph.EndpointPair;
import java.lang.IllegalArgumentException;
//// Or be lazy:
//import java.util.*;
//import com.google.common.graph.*;
// See https://google.github.io/styleguide/javaguide.html
/** This class solves the traveling salesman problem on a graph. */
/** This class solves the traveling salesperson problem on a graph. */
public class TSP {
@ -45,7 +38,7 @@ public class TSP { @@ -45,7 +38,7 @@ public class TSP {
/**
* This class solves the traveling salesman problem on a graph.
* This class solves the traveling salesperson problem on a graph.
* It makes use of Google's Guava library.
* This implements a recursive backtracking solution
* to search for the shortest path.
@ -91,7 +84,7 @@ public class TSP { @@ -91,7 +84,7 @@ public class TSP {
/** Public solve method will call the recursive backtracking method to search for solutions on the graph */
public void solve() {
/** To solve the traveling salesman problem:
/** To solve the traveling salesperson problem:
* Set up the graph, choose a starting node, then call the recursive backtracking method and pass it the starting node.
*/
@ -212,143 +205,3 @@ class Edge { @@ -212,143 +205,3 @@ class Edge {
this.value = value;
}
}
/** Static class to generate random graphs.
*
* We are interested in profiling code as a function of
* number of nodes N and number of edges E,
* so this class takes arguments N and E.
*/
class RandomGraph {
private RandomGraph(){};
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes, (nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes, double connectivity) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes,(int)connectivity*(nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int N, int E) throws IllegalArgumentException {
Random r = new Random(150);
/** Make a NetworkBuilder object for an undirected network and call build().
*
* https://github.com/google/guava/wiki/GraphsExplained#building-graph-instances
*
* This will load an adjacency matrix from a file.
*
* nodes is the number of nodes on the graph.
* connectivity is a number between 0 (totally disconnected) and 1 (fully connected).
*/
// MutableNetwork is an interface requiring a type for nodes and a type for edges
MutableNetwork<Node,Edge> roads = NetworkBuilder.undirected().build();
// Add nodes to graph
List<Node> all_nodes = new LinkedList<Node>();
for(int n=0; n<N; n++) {
Node thenode = new Node(n);
all_nodes.add(thenode);
roads.addNode(thenode);
}
// Adding random edges to graph
// between n_i and n_j
//
// If i != j, and edges are single and symmetric,
// N nodes have N! possible connections.
//
// start with a sequence enumerating all possible edges of the graph:
// j = 1 ... N!
// Now we can convert each enumeration to its corresponding pair
//
//
class Pair {
int left;
int right;
public Pair(int left, int right) {
this.left = left;
this.right = right;
}
}
// Make 2 arrays:
// one integers ix = 1 .. E
// one pairs P(i,j), i != j
// we will make all possible pairs,
// then shuffle indexes to pick pairs at random.
Pair[] all_edges = new Pair[(N*(N-1))/2];
int[] index = new int[(N*(N-1))/2];
int c = 0;
for(int i=0;i<N;i++){
for(int j=i+1;j<N;j++){
// make the pair and increment the index
all_edges[c] = new Pair(i,j);
index[c] = c;
c++;
}
}
// mix up the pair indexes
RandomArray.shuffle(index);
for(int e : index) {
Pair p = all_edges[e];
// now we have our random pair.
// create a random distance and add to the graph.
int distance = 10 + r.nextInt(100);
Edge egg = new Edge(distance);
roads.addEdge(all_nodes.get(p.left),all_nodes.get(p.right),egg);
}
// freeze the network
ImmutableNetwork<Node,Edge> frozen_roads = ImmutableNetwork.copyOf(roads);
return frozen_roads;
}
public static void toDot( ImmutableNetwork<Node,Edge> graph) {
String dot = "graph G{\n";
dot += "\tratio = fill; node [shape = circle]; edge [dir=none];\n";
int i = 0;
for(Node n : graph.nodes()) {
dot += "\t" + n.id + " [style=filled fillcolor=gray];\n";
}
int j = 0;
for(Edge e : graph.edges()) {
EndpointPair<Node> pair = graph.incidentNodes(e);
Node left = pair.nodeU();
Node right = pair.nodeV();
dot += "\t" + left.id + " -- " + right.id + " [label = \"" + e.value + "\"];\n";
}
dot += "}\n";
try{
PrintStream p = new PrintStream(new File("graphviz.dot"));
p.println(dot);
} catch(Exception e) {
// meh.
}
}
}
/** Static class to shuffle an array.
* (That's Java for you.)
*/
class RandomArray {
public static void shuffle(int[] arr) {
Random r = new Random(150);
for(int i=(arr.length-1); i>0; i--) {
int j = r.nextInt(i+1);
// swap arr[i] and arr[j]
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}

153
guava/TSP_Version2.java

@ -1,12 +1,9 @@ @@ -1,12 +1,9 @@
import java.util.Random;
import java.util.Set;
import java.util.Map;
import java.util.TreeMap;
import java.util.List;
import java.util.LinkedList;
import java.util.Arrays;
import java.io.File;
import java.io.PrintStream;
import com.google.common.graph.Network;
import com.google.common.graph.NetworkBuilder;
import com.google.common.graph.ImmutableNetwork;
@ -14,13 +11,9 @@ import com.google.common.graph.MutableNetwork; @@ -14,13 +11,9 @@ import com.google.common.graph.MutableNetwork;
import com.google.common.graph.EndpointPair;
import java.lang.IllegalArgumentException;
//// Or be lazy:
//import java.util.*;
//import com.google.common.graph.*;
// See https://google.github.io/styleguide/javaguide.html
/** This class solves the traveling salesman problem on a graph. */
/** This class solves the traveling salesperson problem on a graph. */
public class TSP {
@ -45,7 +38,7 @@ public class TSP { @@ -45,7 +38,7 @@ public class TSP {
/**
* This class solves the traveling salesman problem on a graph.
* This class solves the traveling salesperson problem on a graph.
* It makes use of Google's Guava library.
* This implements a recursive backtracking solution
* to search for the shortest path.
@ -91,7 +84,7 @@ public class TSP { @@ -91,7 +84,7 @@ public class TSP {
/** Public solve method will call the recursive backtracking method to search for solutions on the graph */
public void solve() {
/** To solve the traveling salesman problem:
/** To solve the traveling salesperson problem:
* Set up the graph, choose a starting node, then call the recursive backtracking method and pass it the starting node.
*/
@ -219,143 +212,3 @@ class Edge { @@ -219,143 +212,3 @@ class Edge {
this.value = value;
}
}
/** Static class to generate random graphs.
*
* We are interested in profiling code as a function of
* number of nodes N and number of edges E,
* so this class takes arguments N and E.
*/
class RandomGraph {
private RandomGraph(){};
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes, (nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int nodes, double connectivity) throws IllegalArgumentException {
// If connectivity not specified, set it to 1.
return buildGraph(nodes,(int)connectivity*(nodes*(nodes-1))/2);
}
public static ImmutableNetwork<Node,Edge> buildGraph(int N, int E) throws IllegalArgumentException {
Random r = new Random(150);
/** Make a NetworkBuilder object for an undirected network and call build().
*
* https://github.com/google/guava/wiki/GraphsExplained#building-graph-instances
*
* This will load an adjacency matrix from a file.
*
* nodes is the number of nodes on the graph.
* connectivity is a number between 0 (totally disconnected) and 1 (fully connected).
*/
// MutableNetwork is an interface requiring a type for nodes and a type for edges
MutableNetwork<Node,Edge> roads = NetworkBuilder.undirected().build();
// Add nodes to graph
List<Node> all_nodes = new LinkedList<Node>();
for(int n=0; n<N; n++) {
Node thenode = new Node(n);
all_nodes.add(thenode);
roads.addNode(thenode);
}
// Adding random edges to graph
// between n_i and n_j
//
// If i != j, and edges are single and symmetric,
// N nodes have N! possible connections.
//
// start with a sequence enumerating all possible edges of the graph:
// j = 1 ... N!
// Now we can convert each enumeration to its corresponding pair
//
//
class Pair {
int left;
int right;
public Pair(int left, int right) {
this.left = left;
this.right = right;
}
}
// Make 2 arrays:
// one integers ix = 1 .. E
// one pairs P(i,j), i != j
// we will make all possible pairs,
// then shuffle indexes to pick pairs at random.
Pair[] all_edges = new Pair[(N*(N-1))/2];
int[] index = new int[(N*(N-1))/2];
int c = 0;
for(int i=0;i<N;i++){
for(int j=i+1;j<N;j++){
// make the pair and increment the index
all_edges[c] = new Pair(i,j);
index[c] = c;
c++;
}
}
// mix up the pair indexes
RandomArray.shuffle(index);
for(int e : index) {
Pair p = all_edges[e];
// now we have our random pair.
// create a random distance and add to the graph.
int distance = 10 + r.nextInt(100);
Edge egg = new Edge(distance);
roads.addEdge(all_nodes.get(p.left),all_nodes.get(p.right),egg);
}
// freeze the network
ImmutableNetwork<Node,Edge> frozen_roads = ImmutableNetwork.copyOf(roads);
return frozen_roads;
}
public static void toDot( ImmutableNetwork<Node,Edge> graph) {
String dot = "graph G{\n";
dot += "\tratio = fill; node [shape = circle]; edge [dir=none];\n";
int i = 0;
for(Node n : graph.nodes()) {
dot += "\t" + n.id + " [style=filled fillcolor=gray];\n";
}
int j = 0;
for(Edge e : graph.edges()) {
EndpointPair<Node> pair = graph.incidentNodes(e);
Node left = pair.nodeU();
Node right = pair.nodeV();
dot += "\t" + left.id + " -- " + right.id + " [label = \"" + e.value + "\"];\n";
}
dot += "}\n";
try{
PrintStream p = new PrintStream(new File("graphviz.dot"));
p.println(dot);
} catch(Exception e) {
// meh.
}
}
}
/** Static class to shuffle an array.
* (That's Java for you.)
*/
class RandomArray {
public static void shuffle(int[] arr) {
Random r = new Random(150);
for(int i=(arr.length-1); i>0; i--) {
int j = r.nextInt(i+1);
// swap arr[i] and arr[j]
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
}

5
guava/time_java.sh

@ -10,7 +10,7 @@ cat /dev/null > ${OUT} @@ -10,7 +10,7 @@ cat /dev/null > ${OUT}
#for N in 4 5 6 7 8 9 10 11 12 13 # make a cup of coffee.
#for N in 14 15 # pack a lunch. this will go on all night and then some.
for N in 4 5 6 7 8 9 10 11 12 13 # blink and/or yawn
for N in 4 5 6 7 8 9 10 11 12 13 # yawn
do
echo "**************************************" >> ${OUT}
echo "Running TSP with $N nodes with Java..." >> ${OUT}
@ -19,6 +19,9 @@ do @@ -19,6 +19,9 @@ do
make build
make time SIZE=${N} >> ${OUT} 2>&1
make dot
mv graphviz.png graphviz_tsp_${N}.png
echo "Done." >> ${OUT}

40
guava/timeout_tsp_java_20170327_215133_version1.out → guava/timeout_tsp_java_20170328_003528_v1.out

@ -1,33 +1,33 @@ @@ -1,33 +1,33 @@
**************************************
Running TSP with 4 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 4
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 4
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 1, 2] Distance: 171.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 2, 1] Distance: 154.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 1, 3] Distance: 129.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 3, 1] Distance: 112.0
Found solution...?
Elapsed time 0.020427 s
Elapsed time 0.005836 s
Done.
**************************************
Running TSP with 5 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 5
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 5
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 1, 2, 4] Distance: 195.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 4, 2] Distance: 179.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 2, 4, 3] Distance: 162.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 2, 1, 3] Distance: 130.0
Found solution...?
Elapsed time 0.029062 s
Elapsed time 0.006724 s
Done.
**************************************
Running TSP with 6 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 6
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 6
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 2, 4, 5] Distance: 291.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 5, 4, 2] Distance: 249.0
@ -36,13 +36,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -36,13 +36,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 5, 1, 4, 2] Distance: 178.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 4, 1, 5, 3] Distance: 163.0
Found solution...?
Elapsed time 0.034622 s
Elapsed time 0.009517 s
Done.
**************************************
Running TSP with 7 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 7
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 7
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 1, 6, 5, 3, 2] Distance: 266.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 1, 5, 6, 3, 2] Distance: 227.0
@ -54,13 +54,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -54,13 +54,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 1, 3, 6, 4, 2] Distance: 185.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 4, 2, 3, 1] Distance: 182.0
Found solution...?
Elapsed time 0.054107 s
Elapsed time 0.017136 s
Done.
**************************************
Running TSP with 8 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 8
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 8
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 1, 5, 6, 3, 4, 2] Distance: 430.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 1, 5, 6, 2, 4, 3] Distance: 429.0
@ -75,13 +75,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -75,13 +75,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 5, 6, 3, 1, 7, 2] Distance: 226.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 5, 6, 1, 3, 7, 2] Distance: 220.0
Found solution...?
Elapsed time 0.079082 s
Elapsed time 0.029719 s
Done.
**************************************
Running TSP with 9 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 9
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 9
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 8, 5, 7, 6, 1, 4, 2] Distance: 359.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 8, 5, 7, 6, 1, 2, 4] Distance: 344.0
@ -105,13 +105,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -105,13 +105,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 6, 7, 3, 2, 5, 8, 4] Distance: 180.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 1, 7, 3, 2, 5, 8, 4] Distance: 166.0
Found solution...?
Elapsed time 0.188802 s
Elapsed time 0.083378 s
Done.
**************************************
Running TSP with 10 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 10
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 10
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 4, 2, 5, 8, 9, 6, 7, 1] Distance: 449.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 4, 2, 5, 8, 6, 9, 7, 1] Distance: 436.0
@ -150,13 +150,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -150,13 +150,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 5, 8, 1, 2, 7, 3, 9, 4] Distance: 202.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 5, 1, 2, 7, 3, 9, 4, 8] Distance: 198.0
Found solution...?
Elapsed time 0.775580 s
Elapsed time 0.305489 s
Done.
**************************************
Running TSP with 11 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 11
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 11
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 9, 3, 4, 5, 6, 7, 8, 10, 2, 1] Distance: 479.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 9, 3, 4, 5, 6, 7, 8, 10, 1, 2] Distance: 474.0
@ -191,13 +191,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -191,13 +191,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 8, 1, 3, 2, 9, 10, 4, 6, 7, 5] Distance: 249.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 8, 1, 5, 7, 3, 2, 9, 10, 4, 6] Distance: 243.0
Found solution...?
Elapsed time 3.144994 s
Elapsed time 1.443478 s
Done.
**************************************
Running TSP with 12 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 12
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 12
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 7, 4, 2, 9, 10, 5, 3, 6, 8, 11] Distance: 585.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 7, 4, 2, 9, 10, 5, 3, 8, 11, 6] Distance: 558.0
@ -235,13 +235,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -235,13 +235,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 4, 5, 7, 3, 9, 11, 10, 8, 6, 2] Distance: 245.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 5, 4, 1, 8, 6, 10, 11, 9, 3, 2] Distance: 236.0
Found solution...?
Elapsed time 31.963532 s
Elapsed time 15.808344 s
Done.
**************************************
Running TSP with 13 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 13
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 13
------------------- TSP Version 1: First Pass Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 2, 12, 5, 1, 3, 10, 9, 11, 7, 4, 8] Distance: 551.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 2, 12, 5, 1, 3, 10, 9, 11, 7, 8, 4] Distance: 512.0
@ -288,6 +288,6 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -288,6 +288,6 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 2, 7, 11, 8, 9, 10, 4, 1, 12, 3] Distance: 289.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 2, 10, 4, 1, 12, 3, 11, 7, 9, 8] Distance: 288.0
Found solution...?
Elapsed time 374.962175 s
Elapsed time 180.078049 s
Done.

40
guava/timeout_tsp_java_20170327_215842_version2.out → guava/timeout_tsp_java_20170328_003857_v2.out

@ -1,33 +1,33 @@ @@ -1,33 +1,33 @@
**************************************
Running TSP with 4 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 4
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 4
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 1, 2] Distance: 171.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 2, 1] Distance: 154.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 1, 3] Distance: 129.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 3, 1] Distance: 112.0
Found solution...?
Elapsed time 0.037849 s
Elapsed time 0.006417 s
Done.
**************************************
Running TSP with 5 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 5
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 5
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 1, 2, 4] Distance: 195.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 4, 2] Distance: 179.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 2, 4, 3] Distance: 162.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 2, 1, 3] Distance: 130.0
Found solution...?
Elapsed time 0.020722 s
Elapsed time 0.006804 s
Done.
**************************************
Running TSP with 6 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 6
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 6
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 2, 4, 5] Distance: 291.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 3, 5, 4, 2] Distance: 249.0
@ -36,13 +36,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -36,13 +36,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 5, 1, 4, 2] Distance: 178.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 2, 4, 1, 5, 3] Distance: 163.0
Found solution...?
Elapsed time 0.032393 s
Elapsed time 0.008745 s
Done.
**************************************
Running TSP with 7 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 7
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 7
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 1, 6, 5, 3, 2] Distance: 266.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 1, 5, 6, 3, 2] Distance: 227.0
@ -54,13 +54,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -54,13 +54,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 1, 3, 6, 4, 2] Distance: 185.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 4, 2, 3, 1] Distance: 182.0
Found solution...?
Elapsed time 0.045407 s
Elapsed time 0.011839 s
Done.
**************************************
Running TSP with 8 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 8
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 8
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 1, 5, 6, 3, 4, 2] Distance: 430.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 1, 5, 6, 2, 4, 3] Distance: 429.0
@ -75,13 +75,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -75,13 +75,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 5, 6, 3, 1, 7, 2] Distance: 226.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 4, 5, 6, 1, 3, 7, 2] Distance: 220.0
Found solution...?
Elapsed time 0.059606 s
Elapsed time 0.020236 s
Done.
**************************************
Running TSP with 9 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 9
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 9
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 8, 5, 7, 6, 1, 4, 2] Distance: 359.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 8, 5, 7, 6, 1, 2, 4] Distance: 344.0
@ -105,13 +105,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -105,13 +105,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 6, 7, 3, 2, 5, 8, 4] Distance: 180.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 1, 7, 3, 2, 5, 8, 4] Distance: 166.0
Found solution...?
Elapsed time 0.068645 s
Elapsed time 0.023548 s
Done.
**************************************
Running TSP with 10 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 10
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 10
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 4, 2, 5, 8, 9, 6, 7, 1] Distance: 449.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 3, 4, 2, 5, 8, 6, 9, 7, 1] Distance: 436.0
@ -150,13 +150,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -150,13 +150,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 5, 8, 1, 2, 7, 3, 9, 4] Distance: 202.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 5, 1, 2, 7, 3, 9, 4, 8] Distance: 198.0
Found solution...?
Elapsed time 0.118529 s
Elapsed time 0.053768 s
Done.
**************************************
Running TSP with 11 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 11
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 11
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 9, 3, 4, 5, 6, 7, 8, 10, 2, 1] Distance: 479.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 9, 3, 4, 5, 6, 7, 8, 10, 1, 2] Distance: 474.0
@ -191,13 +191,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -191,13 +191,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 8, 1, 3, 2, 9, 10, 4, 6, 7, 5] Distance: 249.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 8, 1, 5, 7, 3, 2, 9, 10, 4, 6] Distance: 243.0
Found solution...?
Elapsed time 0.313265 s
Elapsed time 0.118732 s
Done.
**************************************
Running TSP with 12 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 12
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 12
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 7, 4, 2, 9, 10, 5, 3, 6, 8, 11] Distance: 585.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 7, 4, 2, 9, 10, 5, 3, 8, 11, 6] Distance: 558.0
@ -235,13 +235,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -235,13 +235,13 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 1, 4, 5, 7, 3, 9, 11, 10, 8, 6, 2] Distance: 245.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 7, 5, 4, 1, 8, 6, 10, 11, 9, 3, 2] Distance: 236.0
Found solution...?
Elapsed time 0.438333 s
Elapsed time 0.149585 s
Done.
**************************************
Running TSP with 13 nodes with Java...
# Java times itself, we just have to pass it the size
java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 13
java -cp '.:/Users/charles/codes/guava/jars/guava-21.0.jar' TSP 13
------------------- TSP Version 2: The Pessimistic Algorithm ----------------------
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 2, 12, 5, 1, 3, 10, 9, 11, 7, 4, 8] Distance: 551.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 6, 2, 12, 5, 1, 3, 10, 9, 11, 7, 8, 4] Distance: 512.0
@ -288,6 +288,6 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP @@ -288,6 +288,6 @@ java -cp '.:/Volumes/noospace/Users/charles/codes/guava/jars/guava-21.0.jar' TSP
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 2, 7, 11, 8, 9, 10, 4, 1, 12, 3] Distance: 289.0
!!!!!YAY!!!!!! NEW SOLUTION Route: [0, 5, 6, 2, 10, 4, 1, 12, 3, 11, 7, 9, 8] Distance: 288.0
Found solution...?
Elapsed time 1.234788 s
Elapsed time 0.524635 s
Done.
Loading…
Cancel
Save