diff --git a/graph/travelling_salesman_problem.cpp b/graph/travelling_salesman_problem.cpp index 75003c848..20ef6b29a 100644 --- a/graph/travelling_salesman_problem.cpp +++ b/graph/travelling_salesman_problem.cpp @@ -17,11 +17,12 @@ * This is the naive implementation of the problem. */ -#include /// for limits of integral types -#include /// for std::min -#include /// for assert -#include /// for IO operations -#include /// header for std::vector +#include /// for std::min +#include /// for assert +#include /// for IO operations +#include /// for limits of integral types +#include /// header for std::vector +#define INT_MAX 2147483647 /// define INT_MAX /** * @namespace graph