如何从Excel中的求解器中删除所有约束?
如果我确切知道约束的样子,我可以使用 SolverDelete
删除约束。
如何在不知道约束的情况下使用 VBA 删除所有约束?
I can use SolverDelete
to delete a constraint if I know exactly what it looks like.
How can I delete all constraints with VBA without knowing them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用SolverGet函数。
TypeNum 是必需的整数。指定您想要的信息类型的数字。在“求解器参数”对话框中指定以下设置。
您需要的TypeNum参数是:
5,约束的数量。
6、约束左侧数组,文本形式。
7、对应约束左右两边关系的数字数组:1代表<=,2代表=,3代表>=,4代表int,5代表bin。
8、约束右侧的数组,文本形式。
有关更多详细信息,请参阅 SolverGet 上的 Excel 帮助。
You can use the SolverGet Function.
TypeNum is a required Integer. A number specifying the type of information you want. The following settings are specified in the Solver Parameters dialog box.
The TypeNum parameters you need are:
5, The number of constraints.
6, An array of the left sides of the constraints, in text form.
7, An array of numbers corresponding to the relationships between the left and right sides of the constraints: 1 represents <=, 2 represents =, 3 represents >=, 4 represents int, and 5 represents bin.
8, An array of the right sides of the constraints, in text form.
See Excel Help on SolverGet for more details.
如果您不知道所有参数,SolverReset 就可以工作。
SolverReset works if you don´t know all the parameters.