在哪里可以找到关于输出中获得的cplex统计部分的解释?
Where can I find the explanations about the part of cplex statistics that are obtained in output?
我想了解输出中提供cplex的统计部分的各个项目的含义。还要知道是否可以将获得的解决方案保存在 excel 文件中。
谢谢
首先,您可以将统计信息存储在变量中:
int nbKids=300;
float costBus40=500;
float costBus30=400;
dvar int+ nbBus40;
dvar int+ nbBus30;
minimize
costBus40*nbBus40 +nbBus30*costBus30;
subject to
{
40*nbBus40+nbBus30*30>=nbKids;
}
int n1;
int n2;
int n3;
execute
{
n1=cplex.getNcols();
n2=cplex.getNrows();
n3=cplex.getNNZs();
}
然后您可以使用 SheetWrite 在 excel 电子表格中写入这些数字。
我想了解输出中提供cplex的统计部分的各个项目的含义。还要知道是否可以将获得的解决方案保存在 excel 文件中。 谢谢
首先,您可以将统计信息存储在变量中:
int nbKids=300;
float costBus40=500;
float costBus30=400;
dvar int+ nbBus40;
dvar int+ nbBus30;
minimize
costBus40*nbBus40 +nbBus30*costBus30;
subject to
{
40*nbBus40+nbBus30*30>=nbKids;
}
int n1;
int n2;
int n3;
execute
{
n1=cplex.getNcols();
n2=cplex.getNrows();
n3=cplex.getNNZs();
}
然后您可以使用 SheetWrite 在 excel 电子表格中写入这些数字。