输出文件迭代解析

Output file iterativ resolution

如何创建对象 f var ofile = new IloOplOutputFile("Resultat.txt"); ;并在每次解决模型时调用我的 post 过程中的对象,我的目的是一次创建一个对象“ofile”并调用它,每次我的模型都会被解决并将结果显示在文件,我不想在主要集团上这样做,因为我有很多参数。

我的模型是一个迭代模型,所以它解决了不同的数据,我试图每次都输出结果。

此时它 returns 我只是最后一次迭代,因为每次我调用 post 过程它都会创建一个新文件并粉碎最后的结果...

另一种解决方案是将其脚本框中显示 Cplex/Opl 的结果直接复制到我的文件中,但我不知道如何使用 Cplex/OPL 的语言来做到这一点 ..

问候谢谢!

不要犹豫,使用追加参数:

IloOplOutputFile(path, append)


Parameters:
    path - Optional: The path of the file to open. 
    append - Optional: If true, sets the stream position at the end of the file. 

PS:https://www.ibm.com/developerworks/community/forums/html/topic?id=575928e1-eb6e-4468-9a10-46c6fe8fb73a&ps=25

的相同问题