首页 文章

在Linux上构建JSCIPOpt(Scip的Java接口)

提问于
浏览
0

我正在尝试使用JSCIPOpt“用于SCIP优化套件的Java接口(参见链接[1]) . 继续INSTALL.md文件中的步骤,我被困在3a)这个命令行”

**cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]**

我收到了这条消息:

cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]
    **CMake Error:** The source directory "/home/soukaina/JSCIPOpt-master/build/Release" does not exist.
    Specify --help for usage, or press the help button on the CMake GUI.

and then I did this and this time I got this message:

soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ rm -rf build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ mkdir build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master$ cd build
soukaina@soukaina-Aspire-5250:~/JSCIPOpt-master/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Found JNI: /usr/lib/jvm/default-java/jre/lib/amd64/libjawt.so 
-- Java version 1.7.0.85 configured successfully!
-- Found Java: /usr/bin/java (found version "1.7.0.85")
CMake Error at CMakeLists.txt:18 (include):
  include could not find load file:    
    UseJava    

-- Could NOT find SWIG (missing:  SWIG_EXECUTABLE SWIG_DIR) 
found SCIP library: SCIPOPT_LIBRARIES-NOTFOUND
CMake Error at CMakeLists.txt:96 (add_jar):
  Unknown CMake command "add_jar".


CMake Error: **The following variables are used in this project, but they are set to NOTFOUND.**
Please set them or make sure they are set and tested correctly in the CMake files:
SCIPOPT_LIBRARIES
    linked by target "jscip" in directory /home/soukaina/JSCIPOpt-master

-- Configuring incomplete, errors occurred!}


>  The INSTALL.md look like :....to use/extend the Java interface, you need:  
 - SCIP optimization suite
 - Java JDK
 - C compiler
 - CMake
 - SWIG (optional)

The following steps need to be done before compiling the Java interface.   
1) Create a shared library of the [SCIP optimization suite](http://scip.zib.de/#download) by executing     
    make SHARED=true scipoptlib     
in the SCIP optimization suite directory. Afterwards, you will find the library (*.so) in the ./lib directory of the
optimization suite.

2) Create a symbolic link in JSCIPOpt to the library compiled in 1) and to the source directory of SCIP (in the
optimization suite)

    mkdir -p lib;
    cd lib;
    ln -s <SCIP source directory> scipinc
    ln -s <SCIP opt suite directory>/lib/<scip opt library> libscipopt.so

**3a)** Building JSCIPOpt on Linux.

Compile the interface by executing the following commands:

 - mkdir build
 - cd build
 **- cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default:** "Release">]
 - make

Execute the examples via

 - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./
 - java -cp scip.jar:examples.jar <"Linear" or "Quadratic" or "Read">


  [1]: https://github.com/SCIP-Interfaces/JSCIPOpt

非常感谢任何帮助...请回答我不是一个成熟的开发人员时请记住 . 提前致谢!

1 回答

  • 1

    JSCIPOpt/lib 目录的内容如何?你有指向SCIP源目录的符号链接和指向 libscipopt.so 的另一个符号链接吗?你能下载并安装最新版本的Java JDK吗?

    我也认为你误解了

    cmake .. [-DCMAKE_BUILD_TYPE=<"Debug" or "Release", default: "Release">]
    

    例如,在调试模式下编译JSCIPOpt需要执行以下命令:

    cmake .. -DCMAKE_BUILD_TYPE=Debug
    

    EDIT:

    您没有正确设置符号链接 . 基本上,您需要执行以下命令:

    cd JSCIPOpt
    mkdir lib; cd lib
    ln -s /home/soukaina/scipoptsuite-4.0.0/scip-4.0.0/src scipinc
    ln -s /home/soukaina/scipoptsuite-4.0.0/lib/libscipopt.so libscipopt.so
    cd ..
    mkdir build; cd build
    cmake ..
    make
    

相关问题