Hey,
I am trying to run the Concorde on a TSP generated from a distance matrix. Here is my Code
data_4 = matrix(sample.int(15, size = 9*100, replace = TRUE), nrow = num_rows, ncol = num_cols)
data_4[data_4<floor(mean(data_4))] = 1
data_4[data_4>=floor(mean(data_4))] = 2
atsp <- ATSP(data_4)
tsp <- reformulate_ATSP_as_TSP(atsp)
o2 <- solve_TSP(tsp, method = "concorde",rep=10)
When I run the above code, I get the following error
OVERFLOW in CCbigguy_addmult (4)
BIGGUY errors are fatal
FATAL ERROR - received signal SIGABRT (6/6)
sleeping 1 more hours to permit debugger access
Can anyone tell me that what am I doing wrong?
Hey,
I am trying to run the Concorde on a TSP generated from a distance matrix. Here is my Code
data_4 = matrix(sample.int(15, size = 9*100, replace = TRUE), nrow = num_rows, ncol = num_cols)
data_4[data_4<floor(mean(data_4))] = 1
data_4[data_4>=floor(mean(data_4))] = 2
atsp <- ATSP(data_4)
tsp <- reformulate_ATSP_as_TSP(atsp)
o2 <- solve_TSP(tsp, method = "concorde",rep=10)
When I run the above code, I get the following error
OVERFLOW in CCbigguy_addmult (4)
BIGGUY errors are fatal
FATAL ERROR - received signal SIGABRT (6/6)
sleeping 1 more hours to permit debugger access
Can anyone tell me that what am I doing wrong?