I'm having some trouble modeling this constraint in Julia
right now I have
for k=1:v
for j = 2:nodes
@constraint(model,sum(x[i,j,k] for i=1:nodes) == sum(x[j,i,k] for i=1:n))
end
end
where nodes is the customer set, n includes the depot and the depot clone. K is the number of vehicles, i is the start node and j is the end node.