使用 MS Solver Foundation v2.1 出现 MissingMethodException

发布于 2024-10-22 10:34:03 字数 427 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红衣飘飘貌似仙 2024-10-29 10:34:03

您似乎错误地调用了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文