|
@@ -53,15 +53,15 @@ int main()
|
53
|
53
|
int salesmanSelection;
|
54
|
54
|
do
|
55
|
55
|
{
|
56
|
|
- cout << "1 - Wygeneruj losowe dane" << endl;
|
57
|
|
- cout << "2 - Wyswietl dane" << endl;
|
58
|
|
- cout << "3 - Ustawienia TS" << endl;
|
59
|
|
- cout << "4 - Tabu search" << endl;
|
60
|
|
- cout << "5 - Podzial i ograniczenia" << endl;
|
61
|
|
- cout << "6 - Przeglad zupelny" << endl;
|
62
|
|
- cout << "7 - Automatyczne pomiary (tabu search)" << endl;
|
63
|
|
- cout << "8 - Wczytaj dane z pliku TSPLIB FULL_MATRIX" << endl;
|
64
|
|
- cout << "9 - Wczytaj dane z pliku TSPLIB EUC_2D" << endl;
|
|
56
|
+ cout << "1. Wygeneruj losowe dane" << endl;
|
|
57
|
+ cout << "2. Wyswietl dane" << endl;
|
|
58
|
+ cout << "3. Ustawienia TS" << endl;
|
|
59
|
+ cout << "4. Tabu search" << endl;
|
|
60
|
+ cout << "5. Podzial i ograniczenia" << endl;
|
|
61
|
+ cout << "6. Przeglad zupelny" << endl;
|
|
62
|
+ cout << "7. Automatyczne pomiary (tabu search)" << endl;
|
|
63
|
+ cout << "8. Wczytaj dane z pliku TSPLIB FULL_MATRIX" << endl;
|
|
64
|
+ cout << "9. Wczytaj dane z pliku TSPLIB EUC_2D" << endl;
|
65
|
65
|
cout << "Aby zakonczyc - 0" << endl;
|
66
|
66
|
cout << "Wybierz: ";
|
67
|
67
|
cin >> salesmanSelection;
|
|
@@ -102,18 +102,18 @@ int main()
|
102
|
102
|
do
|
103
|
103
|
{
|
104
|
104
|
if(tabuDiversification == true)
|
105
|
|
- cout << "1 - Przelacz dywersyfikacje" << "\t" << "(wlaczona)" << endl;
|
|
105
|
+ cout << "1. Przelacz dywersyfikacje" << "\t" << "(wlaczona)" << endl;
|
106
|
106
|
else
|
107
|
|
- cout << "1 - Przelacz dywersyfikacje" << "\t" << "(wylaczona)" << endl;
|
|
107
|
+ cout << "1. Przelacz dywersyfikacje" << "\t" << "(wylaczona)" << endl;
|
108
|
108
|
|
109
|
|
- cout << "2 - Kryterium dywersyfikacji" << "\t" << "(" << tabuIterationsToRestart << " iteracji)" << endl;
|
|
109
|
+ cout << "2. Kryterium dywersyfikacji" << "\t" << "(" << tabuIterationsToRestart << " iteracji)" << endl;
|
110
|
110
|
|
111
|
111
|
if(tabuLength == 0)
|
112
|
|
- cout << "3 - Kadencja na liscie tabu" << "\t" << "(auto)" << endl;
|
|
112
|
+ cout << "3. Kadencja na liscie tabu" << "\t" << "(auto)" << endl;
|
113
|
113
|
else
|
114
|
|
- cout << "3 - Kadencja na liscie tabu" << "\t" << "(" << tabuLength << ")" << endl;
|
|
114
|
+ cout << "3. Kadencja na liscie tabu" << "\t" << "(" << tabuLength << ")" << endl;
|
115
|
115
|
|
116
|
|
- cout << "4 - Czas zatrzymania" << "\t\t" << "(" << tabuStopTime << " s)" << endl;
|
|
116
|
+ cout << "4. Czas zatrzymania" << "\t\t" << "(" << tabuStopTime << " s)" << endl;
|
117
|
117
|
cout << "Powrot - 0" << endl;
|
118
|
118
|
cout << "Wybierz: ";
|
119
|
119
|
cin >> settingsSelection;
|