Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经开始使用 zpl.format 来解决带有 scip 的线性程序。
在我的线性程序中有 2 个索引的变量。我可以用 zpl.formatvar b[x,t]或类似的东西重建它吗?
var b[x,t]
您使用二维集进行索引。设置 I := { <1,2>, <2,3>, <5,7> };
变量 b[I];
因为在我...