1

私が持っているさまざまなコンピューターにSCIPをインストールしようとしています。新しくインストールしたUbuntu 14.04を試しています。だから私はここから scip スーツを得て、それをmake編集しました。次にscipoptsuite-3.1.1/scip-3.1.1/interfaces/jni、README の指示にアクセスして従いました。

1) doxygen jniinterface.dxy
   - generates xml documentation
2) ./createJniInterface.py xml/*
   - uses the xml documentation and creates JNI interface
3) create softlinks to soplex and scip in "lib" folder:
   mkdir ./lib
   cd lib
   ln -s ../../../../soplex-2.0.0 soplex
   ln -s ../../.. scip
   cd ..
4) make soplex
   - creates shared library of Soplex
   - use options (e.g., ZLIB=false GMP=false) as required
5) make scip
   - creates shared library of SCIP
   - use options (e.g., ZIMPL=false READLINE=false ZLIB=false GMP=false)
     as required
6) make
7) test your installation:
   cd examples/JniKnapsack
   make
   make run

ステップ 6 までは問題ありませんが、その間に次のエラーが発生します。何か案が?

daniel-ubuntu@ubuntu:~/Downloads/scipoptsuite-3.1.1/scip-3.1.1/interfaces/jni$ make
make: *** No rule to make target `classes/de/zib/jscip/nativ/jni/JniScip.class', needed by `all'.  Stop.
4

1 に答える 1

1

メモリの制限により、手順 1 と 2 では正しいファイル セットが作成されず、クラッシュします。そのため、期待される適切なファイルのセットがありません。

于 2015-06-10T20:22:14.243 に答える