如何找到集合中元素的数量? CPLEX OPL

How to find the number of elements in a set? CPLEX OPL

假设我有一套:

{int} A ={1,2,3,4};

如何在 CPLEX 中获取此集合中的元素数?

提前致谢!

{int} A ={1,2,3,4};

int n=card(A);

execute
{
  writeln(n);
}

给予

4