使用 MS Solver Foundation v2.1 出现 MissingMethodException
我是 MS Solver Foundation 的新手,正在尝试从 C# 运行 CompactQuasiNewtonSolver,但出现错误。
我的主要方法中唯一的代码是这样的:
CompactQuasiNewtonSolver solver = new CompactQuasiNewtonSolver(1);
但我收到以下错误:
未处理的异常:System.MissingMethodException:找不到方法:“Void Microsoft.SolverFoundation.Solvers.CompactQuasiNewtonSolver..ctor(Int32)”。在 VAR.Program.Main(String[] args)
有人知道为什么吗?
I am new to MS Solver Foundation and am trying to run the CompactQuasiNewtonSolver from C# but I am getting an error.
The only code I have inside my main method is this:
CompactQuasiNewtonSolver solver = new CompactQuasiNewtonSolver(1);
but I get the following error:
Unhandled Exception: System.MissingMethodException: Method not found: 'Void Microsoft.SolverFoundation.Solvers.CompactQuasiNewtonSolver..ctor(Int32)'. at VAR.Program.Main(String[] args)
Anyone has an idea why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎错误地调用了 CompactQuasiNewtonSolver。您可能应该只使用采用零参数的构造函数,如 MSDN 文档。
It looks like you are invoking the CompactQuasiNewtonSolver incorrectly. You should probably just use the constructor that takes zero arguments as described in the MSDN docs.