我试图解决不平等问题,并希望使用Java ILP(http://javailp.sourceforge.net/)。我已将javailp-1.2a.jar包含在该项目中。
然而,在我的代码中,我收到错误说:
Exception in thread "main" java.lang.NoClassDefFoundError: lpsolve/LpSolveException
at net.sf.javailp.SolverFactoryLpSolve.getInternal(SolverFactoryLpSolve.java:29)
at net.sf.javailp.AbstractSolverFactory.get(AbstractSolverFactory.java:36)
我已经包含了这些进口商品:
import net.sf.javailp.Solver;
import net.sf.javailp.SolverFactory;
import net.sf.javailp.SolverFactoryLpSolve;
可能是什么原因?