Gecode,使用 gecode.int.hh 编译程序时出错

Gecode, error while compiling program with gecode.int.hh

我为 VS 2017 安装了 Gecode 6.0。添加目录到 /lib 和 /include。然后将 gecode/int.hh 包含到 Hello World 程序中。编译期间出现 3 个奇怪的错误:

错误 C2084 函数 "void Gecode::cmb_hash(size_t &,::size_t)" 已经有主体 ConsoleApplication3 c:\program files\gecode\include\gecode\support\hash.hpp 61

Error C2264 "Gecode::cmb_hash": 函数定义或声明错误;函数未调用 ConsoleApplication3 c:\program files\gecode\include\gecode\support\hash.hpp 62

Error C2264 "Gecode::cmb_hash": 函数定义或声明错误;函数未调用 ConsoleApplication3 c:\program files\gecode\include\gecode\int\extensional\dfa.hpp 100

有人知道如何消除这些错误吗? 提前致谢。

好的,知道了。我已经安装了 x64 Gecode 版本,但为 x86 编译了我的程序。在 VS2017 中切换到 x64,现在一切正常。