Samchon Framework for CPP  1.0.0
main.cpp
1 #include <samchon/example/tsp/Scheduler.hpp>
2 #include <samchon/example/tsp/Travel.hpp>
3 
4 using namespace samchon::example::tsp;
5 
6 #ifdef _WIN64
7 # ifdef _DEBUG
8 # pragma comment(lib, "x64/Debug/SamchonFramework.lib")
9 # else
10 # pragma comment(lib, "x64/Release/SamchonFramework.lib")
11 # endif
12 #else
13 # ifdef _DEBUG
14 # pragma comment(lib, "Debug/SamchonFramework.lib")
15 # else
16 # pragma comment(lib, "Release/SamchonFramework.lib")
17 # endif
18 #endif
19 
20 void main()
21 {
22  Scheduler::main();
23 
24  system("pause");
25 }
Traveling Salesman Problem Solver.
Definition: example_tsp.hpp:36