Hi,
I am running a code to visit each waypoint from a list of options.
%sample waypoints
V = [520.0000 -200.0000;
-961.9101 314.7838;
304.2910 226.2424;
-969.5442 205.6109;
296.6569 117.0695;
520.0000 -200.0000];
by using these waypoints, i get these errors.
presolve, variable S[1,10,1]:
impossible deduced bounds: lower = 520, upper = 30.4558;
difference = 489.544
presolve, variable S[1,10,1]:
impossible deduced bounds: lower = 520, upper = 30.4558;
difference = 489.544
But when I have these as my waypoints,
V = [-5 -2;
3 4;
1 6;
-2 5;
4 3;
-5 -2];
it runs normally.
Here is how I declared my model file parameters.
param n{N}; #size of waypts for vehicle k
set N ordered; #vehicle numbering
param T integer >=1; #maximal horizon
var b{k in N, w in 1..n[k], i in 0..T} binary; #visit variable
Is there a way to fix that error for feasibility?
Thank you