我正在尝试测试CPLEX的COIN-OR OSI接口。在OSI website之后,我从源代码(在Ubuntu 18.04下)对其进行了编译,如下所示:
desc
但是在if($q !== false)
{
$result = $q->row();
}
else
{
return false;
}
中找不到CPLEX ./configure --with-cplex-incdir="$(pkg-config --variable=includedir lazycplex)/lazylpsolverlibs/ilcplex" \
--with-cplex-lib="$(pkg-config --libs lazycplex)" \
--with-gurobi-incdir="$(pkg-config --variable=includedir lazygurobi)/lazylpsolverlibs" \
--with-gurobi-lib="$(pkg-config --libs lazygurobi)" \
--with-xpress-incdir="$(pkg-config --variable=includedir lazyxprs)/lazylpsolverlibs" \
--with-xpress-lib="$(pkg-config --libs lazyxprs)"
make
make test
sudo make install
的头文件,而存在其他文件,例如OsiCplexSolverInterface.hpp
。
但是,它作为/usr/inclde/coin/
位于构建文件夹中。
我是否需要向/usr/include/coin/OsiClpSolverInterface.hpp
添加选项以让include/coin/OsiCpxSolverInterface.hpp
将其安装到系统文件夹?