-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
23 lines (17 loc) · 681 Bytes
/
main.cpp
File metadata and controls
23 lines (17 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include "gtest/gtest.h"
#include "solucion.h"
#include "auxiliares.h"
#include "ejemplos.h"
int main(int argc, char **argv) {
std::cout << "Implementando TPI!!" << std::endl;
testing::InitGoogleTest(&argc, argv);
escribirRecorridos({RECORRIDO1, RECORRIDO2, RECORRIDO3}, "recorridos.csv");
cout << "Recorridos grabados en ./transporteUrbano/recorridos.csv" << endl;
// Descomentar cuando implementen la grilla
grilla g = construirGrilla( CORDOBA_ESQ1, CORDOBA_ESQ2, 18, 25);
escribirGrilla(g, "grilla.csv");
cout << "Grilla grabada en ./transporteUrbano/grilla.csv" << endl;
RUN_ALL_TESTS();
return 0;
}