自动驾驶车辆共享和预订问题

Autonomous vehicle sharing and reservation problem

我正在尝试为这篇关于自主车辆共享和预订的论文制作一个 objective 函数和约束。我现在想用它做玩具盒,但我现在卡住了。我根据论文设置了约束,但它说它有 语法错误,意外(标识符)。附上我写的代码。请帮帮我。 the code i wrotethe one i am trying

int n=3;
range N=1..n;


tuple arc
{
  int i;
  int j;
}

{arc} A={<1,2>};
int m[A]=[7];

dvar int+ x [<i,j> in A];

subject to
{
  forall(i in N) forall(<i,j> in A) x[<i,j>]<=m[<i,j>];
}

工作正常