如何在 Microsoft Solver Foundation OML 中强制执行平方数约束?

发布于 2024-09-13 17:55:13 字数 77 浏览 3 评论 0原文

我想将结果限制为仅平方数(我正在使用 Excel 插件)。我该如何强制执行?

例如,最小化目标 X 的条件是 X 是平方数。

I want to limit the result to only square numbers ( I am using excel plugin). How do I enforce this?

As in, Minimize Goal X subject to a condition that X is a square number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

软甜啾 2024-09-20 17:55:13

创建一个可调整单元格 Y 并将其限制为整数。将您尝试最小化的方程设置为 Y^2。

Create an adjustable cell, Y and restrict it to be an integer. Set the equation that you are trying to minimize equal to Y^2.

生活了然无味 2024-09-20 17:55:13

马克的回答很有帮助。 OML 中的解决方案如下所示

Model[ 

Decisions[ .... ],  

Decisions[  
Integers[10000,31622],y  
],  

Constraints[  
x == y*y,  
... ]  

]

Mark's answer helped. The solution in OML would look like

Model[ 

Decisions[ .... ],  

Decisions[  
Integers[10000,31622],y  
],  

Constraints[  
x == y*y,  
... ]  

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