-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.cpp
78 lines (63 loc) · 1.92 KB
/
Main.cpp
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
#include <ctime>
#include <fstream>
#include <iostream>
#include "tsp.h"
int main(int argc, char *argv[]) {
if (argc != 2) {
std::cerr << "A quantidade de argumentos está incorreta, é preciso do nome"
"do arquivo com as informações do problema." << std::endl;
return -1;
}
const std::string filename(argv[1]);
std::ifstream file(filename);
if (!file.is_open()) {
std::cerr << "O arquivo não pode ser aberto." << std::endl;
return -1;
}
// Ignora as três primeiras linhas que trazem informações irrelevantes para
// a resolução do problema, serve apenas para identificação.
std::string ignore;
for (int i = 0; i < 3; ++i) {
getline(file, ignore);
}
std::string key;
int nodeLength;
std::getline(file, key, ':');
file >> nodeLength;
std::string edgeDistanceMethod;
std::getline(file, key, ':');
file >> edgeDistanceMethod;
// Linha contendo o identificador que as coordenadas vão começar a serem lidas.
getline(file, ignore);
getline(file, ignore);
std::vector<TI::Node> nodes;
std::vector<int> cities;
for (int i = 0; i < nodeLength; ++i) {
TI::Node node;
file >> node.id >> node.x >> node.y;
cities.push_back(node.id);
nodes.push_back(node);
}
TI::Graph graph(nodes, nodeLength, edgeDistanceMethod);
std::vector<int> tour;
tour.push_back(1);
graph.visited[0] = true;
int remainingNodes = nodeLength - 1;
double totalCost = 0.0;
int firstNodeId = 1;
TI::TSP tsp(graph, firstNodeId);
std::clock_t start = std::clock();
double duration;
tsp.iteratedLocalSearch(tour, totalCost, cities, 300);
duration = (double)(std::clock() - start) / CLOCKS_PER_SEC;
std::cout << duration << " second" << std::endl;
/*
// Aqui mostra o caminho feito pelo viajante.
for (int id : tour) {
std::cout << id << std::endl;
}
*/
std::cout << "Total cost: " << totalCost << std::endl;
file.close();
return 0;
}