0

我正在做一个 Gecode 项目,代码应该输出一个如下所示的文件:

n: 17
x: {0, 0, 16, 18, 17, 31, 32, 0, 34, 10, 30, 37, 38, 30, 30, 10}
y: {0, 27, 28, 14, 0, 31, 20, 17, 11, 17, 0, 0, 6, 7, 11, 25}
s: 43
runtime: 0.137
failure: 127

以上是代码应输出的示例。我尝试执行以下代码:

virtual void
print(std::ostream& os) const {
    string filename = "project1-t15-n" + n + ".txt";

    ofstream myfile;
    myfile.open (filename);

    myfile << "n: " << n << std::endl;
    myfile << "x: {";
    for (int i = 0; i < x.size(); i++) {
        if (i != 0) {
            myfile << ", ";
        }
        myfile << x[i];
    }
    myfile << "}" << std::endl;
    myfile << "y: {";
    for (int i = 0; i < y.size(); i++) {
        if (i != 0) {
            myfile << ", ";
        }
        myfile << y[i];
    }
    myfile << "}" << std::endl;
    myfile << "s: " << s << std::endl;

    //???????????????????????????????? print runtime and failures

    myfile.close();
}

我知道 n、s、x 和 y 是正确的,但我有两个问题:

1:print(std::ostream& os) const打印到文件时使用正确吗?

2:如何从 Gecode 输出中获取运行时和故障?他们内置的打印功能可以做到这一点。

4

1 回答 1

1

myfile << "s: " << s << std::endl;我在您的代码中没有看到任何s内容,它是什么?此外,您的 print 方法的签名表明它已经获得了输出流。这是真的?谁调用它,从哪里调用它,使用哪些参数?如果其他一些方法真的调用 print 并给它输出流,那么你可能应该使用它,而不是创建你自己的。

更新:查看了 Gecode 的文档,发现 print() 的定义位置:

http://www.gecode.org/doc-latest/reference/driver_8hh_source.html#l00666

因此,您可以在自己的 ScriptBase 派生类中重新定义此方法(我想这就是您应该为 Gecode 编写内容的方式),但您应该使用提供的参数,即:

    virtual void
    print(std::ostream& os) const {
        os << "n: " << n << std::endl;
        os << "x: {";
// etc

实际打印到特定文件 i/o 控制台的一种选择是简单地运行带有重新路由输出的程序。例如,如果您的程序名为 myprogram,而您的文件名为 myfile.txt,则将其运行为:

myprogram >> myfile.txt

它会将所有内容打印到文件而不是控制台。

此外,就文档(http://www.gecode.org/doc-latest/MPG.pdf)而言,如果您有 ScriptBase 派生类 S,则可以直接从您的 main() 方法,并在那里提供正确的文件流,即:

S* s= new S; // something like that
ofstream f("myfile.txt");
s->print(f);
...
于 2013-10-27T20:02:35.257 回答