ms-solver-foundation

solving the Chapman-Richards equation

社会主义新天地 提交于 2020-01-05 06:29:15
问题 I need to find a way to solve the Chapman-Richards with 3 parameters. The equation is F=a(1-EXP(-bt)) power c It is a nonlinear problem. The goal is to minimize the error and the constraints are that the 3 variables must be >= 0.0001. Our current implementation uses Excel and the Solver plugin (GRG nonlinear method). But now, we need to implement all this without making use of Excel. My questions are: 1. Is it possible to use MS Solver Foundation to solve this problem? I have read some docs

Microsoft Solver Foundation for semi-integer

隐身守侯 提交于 2019-12-12 09:47:32
问题 Is it possible to use the MSF api to specify a variable as semi-integer ( V = 0 , or a <= V <= b )? The following is an example in LP_Solve that uses the "sec" and "int" keywords to indicate the variables are semi-continuous and integer. max: 0.5 Q1 + 0.55 Q2 ; Q1 >= 5; Q1 <= 10 ; Q2 >= 5; Q2 <= 10; Q1 + Q2 <= 10; sec Q1,Q2 ; int Q1,Q2 ; Something similar in MSF would be nice. I note that it is possible to call a Gurobi Plugin DLL within MSF however I cannot find any place in that api to be

Microsoft Solver Foundation for semi-integer

耗尽温柔 提交于 2019-12-06 03:53:56
Is it possible to use the MSF api to specify a variable as semi-integer ( V = 0 , or a <= V <= b )? The following is an example in LP_Solve that uses the "sec" and "int" keywords to indicate the variables are semi-continuous and integer. max: 0.5 Q1 + 0.55 Q2 ; Q1 >= 5; Q1 <= 10 ; Q2 >= 5; Q2 <= 10; Q1 + Q2 <= 10; sec Q1,Q2 ; int Q1,Q2 ; Something similar in MSF would be nice. I note that it is possible to call a Gurobi Plugin DLL within MSF however I cannot find any place in that api to be able to set the type of the variable correctly (I think Gurobi calls it the VTYPE), so I assume it is

Disadvantages of using Solver Foundation for constraint programming

感情迁移 提交于 2019-12-01 09:03:21
What are the disadvantages of using Microsoft Solver Foundation for CLP? Solver does have some support in the Express/Standard versions, but would imagine that one would need to buy the expensive Gurobi / Knitro add-ons to accomplish anything more than the most basic constraint programming. Purely considering it's CLP capabilities, how does Solver compare to ECLiPSe? The main disadvantage is that Microsoft Solver Foundation is discontinued as a standalone product as mentioned here : As users have pointed out, Microsoft has not been active on the Solver Foundation forums since Nate left. We

Disadvantages of using Solver Foundation for constraint programming

霸气de小男生 提交于 2019-12-01 05:44:38
问题 What are the disadvantages of using Microsoft Solver Foundation for CLP? Solver does have some support in the Express/Standard versions, but would imagine that one would need to buy the expensive Gurobi / Knitro add-ons to accomplish anything more than the most basic constraint programming. Purely considering it's CLP capabilities, how does Solver compare to ECLiPSe? 回答1: The main disadvantage is that Microsoft Solver Foundation is discontinued as a standalone product as mentioned here: As