-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem.java
84 lines (67 loc) · 2.5 KB
/
Problem.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.ArrayList;
import java.util.Random;
public class Problem {
private ArrayList<Node> customers;
private ArrayList<Node> allNodes;
private double[][] distanceMatrix;
public void createAllNodesAndCustomerLists(int numberOfCustomers, int seed) {
// Create the list with the customers.
customers = new ArrayList<Node>();
Random ran = new Random(seed);
for (int i = 0 ; i < numberOfCustomers; i++) {
Node cust = new Node();
cust.x = ran.nextInt(100);
cust.y = ran.nextInt(100);
cust.demand = 100*(1 + ran.nextInt(5));
cust.serviceTime = 0.25;
customers.add(cust);
}
// Build the allNodes array and the corresponding distance matrix.
allNodes = new ArrayList<Node>();
Node depot = new Node();
depot.x = 50;
depot.y = 50;
depot.demand = 0;
allNodes.add(depot);
for (int i = 0 ; i < customers.size(); i++) {
Node cust = customers.get(i);
allNodes.add(cust);
}
for (int i = 0 ; i < allNodes.size(); i++) {
Node nd = allNodes.get(i);
nd.ID = i;
}
this.distanceMatrix = new double [allNodes.size()][allNodes.size()];
this.calculateDistanceMatrix(this.allNodes);
}
public void printDistanceMatrix() {
for (int i = 0; i < this.distanceMatrix.length; i++) {
for (int j = 0; j < this.distanceMatrix[i].length; j++) {
System.out.print(this.distanceMatrix[i][j] + "\t");
}
System.out.println();
}
}
private void calculateDistanceMatrix(ArrayList<Node> allNodes) {
for (int i = 0 ; i < allNodes.size(); i++) {
Node from = allNodes.get(i);
for (int j = 0 ; j < allNodes.size(); j++) {
Node to = allNodes.get(j);
double deltaX = (from.x - to.x);
double deltaY = (from.y - to.y);
double distance = Math.sqrt((deltaX * deltaX) + (deltaY * deltaY));
distance = Math.round(distance);
this.distanceMatrix[i][j] = distance;
}
}
}
public ArrayList<Node> getCustomers() {
return customers;
}
public ArrayList<Node> getAllNodes() {
return allNodes;
}
public double[][] getDistanceMatrix() {
return distanceMatrix;
}
}