java 为JNI和Or-Tools制作SCIP

zaq34kh6  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(211)

第一次尝试SCIP。无法完全理解如何在MacOS上使用SCIP 8.x.x版本的JNI。
我从网站上下载了scipoptsuite-8.0.4,然后按照说明编译它:

  1. mkdir build
  2. cd build
  3. cmake .. -DAUTOBUILD=on
  4. make
  5. make install

字符串
在我验证之后,创建了共享库:

  1. ls /usr/local/lib/libscip.dylib
  2. /usr/local/lib/libscip.dylib


然后,我按照Or-Tools的指示,这样做:

  1. System.loadLibrary("scip"); // added to verify, that shared lib is accessible
  2. MPSolver mpSolver = MPSolver.createSolver("SCIP");


我得到了这个错误:

  1. Exception in thread "main" java.lang.UnsatisfiedLinkError: 'long com.google.ortools.linearsolver.mainJNI.MPSolver_createSolver(java.lang.String)'
  2. at com.google.ortools.linearsolver.mainJNI.MPSolver_createSolver(Native Method)
  3. at com.google.ortools.linearsolver.MPSolver.createSolver(MPSolver.java:140)
  4. at org.example.Solver.solve(Solver.java:58)
  5. at org.example.Solver.main(Solver.java:24)


遗憾的是,我没有任何C++相关的背景知识来进一步研究。

mkh04yzy

mkh04yzy1#

它是如此的碰巧,经过两个小时的挖掘,我发现,我完全忘记了包括:
第一个月
在实际加载这个库之前。
希望将来有人会花更少的时间来调查这样的事情。

相关问题