gpt4 book ai didi

c++ - 我如何在 Gecode 中使用评价函数?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:06:59 25 4
gpt4 key购买 nike

我正在尝试为我在 Gecode 中的分支使用评价函数。在 MPG Gecode 手册中,陈述了一个评价函数示例,以及如何将其传递给分支。但我无法弄清楚将功能放在哪里。它应该在脚本内部还是外部?现在我把它放在复制函数等旁边。我找不到任何有人使用评价函数的示例代码。

我收到以下错误:

program.cpp(247): error C2059: syntax error: '}'                                                          
program.cpp(247): error C2853: 'm': a non-static data member cannot have a type that contains 'auto'
program.cpp(259): fatal error C1004: unexpected end-of-file found

这是我正在尝试的代码:

    // ...
branch(*this, workers, BOOL_VAR_MERIT_MIN(m), BOOL_VAL_MAX());
}

auto m = [](const Space& home, BoolVar x, int i) {
return i;
}
// ...

我知道做一个只返回索引的评价函数是愚蠢的,我只是想在做我想做的事情之前让最简单的评价函数起作用。

最佳答案

根据Gecode documentation评价函数应该返回一个 double 值。正如 BoolBranchMerit 的类型定义所建议的那样:

typedef std::function<double(const Space& home, BoolVar x, int i)> Gecode::BoolBranchMerit

为了安全起见,您可能还想将m 声明为Gecode::BoolBranchMerit。所以我认为以下内容应该可以解决您的示例:

    // ...
branch(*this, workers, BOOL_VAR_MERIT_MIN(m), BOOL_VAL_MAX());
}

BoolBranchMerit m = [](const Space& home, BoolVar x, int i) -> double {
return (double) i;
}
// ...

关于c++ - 我如何在 Gecode 中使用评价函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48262858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com