Tagged Questions

Microsoft Solver Foundation is a .NET solution for mathematical optimization and modeling. Solver Foundation makes it easier to build and solve real-world optimization models by providing a .NET API and runtime for model creation, reporting, and analysis; a declarative language (OML) for model specification; and powerful built-in solvers.

learn more… | top users | synonyms

12
votes
4answers
4k views

Does Microsoft Solver Foundation fit my needs?

I'm looking into options for a linear and non-linear programming (optimization) framework. Requirements are: Support linear and non-linear programming problems with approx. 100-1000 variables and ...
5
votes
3answers
162 views

how to: solver foundation quadratic least squares

I have two independant variables (GSH and Gls). Using these two variables I'm trying to predict an outcome (prob). Using a function of the form: prob=a*Gls^2+b*GSH^2+c*Gls+d*GSH+e. (where a,b,c,d,e ...
3
votes
3answers
386 views

Use Microsoft Solver Foundation in C#

I'm trying to use Microsoft Solver Foundation in my C# application in VS2010 Ultimate. I've installed MSF (64 bit version) and as far as I understand I should be able to use the services after ...
3
votes
1answer
273 views

Microsoft Solver Foundation for semi-integer

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 ...
3
votes
2answers
201 views

How to evaluate the pros and cons when changing language

I am working in a company that develops computing kernels. Their design is simple : it's a library in c++ which only has one function available to compute results out of available data. There are ...
2
votes
0answers
35 views

Unit testing and Solver Foundation

I'm currently working on a large scale business application and I'm going to use Solver Foundation with Solver Foundation Services to solve a huge portfolio optimization problem with user defined ...
2
votes
1answer
267 views

Simple time constraint problem using C# and Microsoft Solver Foundation?

I am trying to figure out the following simple problem in order to get acquainted with Solver Foundation. I have 8 hours, 1 room and 3 teachers. Each teacher must hold 2 lectures 1 hour long each and ...
1
vote
1answer
265 views

solver solve constraint programming problem

Do anyone know any simple solver that can solve linear constraint math models? Example a simple model: a + b + c = 100; a/b/c = 2/3/4; a > d I'm using MS Solver foundation and this is my C# ...
1
vote
2answers
114 views

How to enforce a Square number constraint in Microsoft Solver foundation OML?

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.
1
vote
1answer
582 views

How to model simple scheduling problem using MS Solver Foundation?

I have the following simple problem that I'd like to use to experiment with MS Solver Foundation: I have a schedule where I need to have 2 workers per day for 30 days. I need to honor the following ...
1
vote
1answer
1k views

Microsoft Solver Fundation tutorial?

I develop an application (in C# Winform) that try to solve calendar issues and time slots assignments. This should be done by contraint programming. Do you know some good url and tutorials to get ...
0
votes
1answer
7 views

What function does Microsoft Solver Foundation's InteriorPointSolver minimize?

I am attempting to use InteriorPointSolver to solve a standard Quadratic Programming problem with linear constraints (per the definition that can be found here). My problem has no linear term (the ...
0
votes
0answers
33 views

Get details on Decision object

I am using the MS Solver Foundation with the Gurobi plugin to solve a big MILP problem. I am having trouble to test my model, that is, to validate that the right Decisions are generated with the ...
0
votes
0answers
53 views

Minimize SE by changing variable using Microsoft Solver Foundation

So I know how to do this with the regular Solver built into Excel but unfortunately, my Solver is broken so I installed the MS Solver Foundation. I basically need to do something like this and ...
0
votes
0answers
78 views

Team Building Optimization Using Microsoft Solver Foundation 3.0

I'm working on a student project team building application. I'm familiar with optimization but haven't used Microsoft Solver Foundation before. I have my constraints worked out but am having trouble ...
0
votes
2answers
86 views

Automatic parameter tuning

I've got a an audio processing app that takes an input audio file, processes it, and spits out a modified output audio file. This audio processing app has 10-15 parameters that affect how it processes ...
0
votes
0answers
192 views

Solve an assignment problem with simplex in c# with help from ms solver foundation services

Hy I'm doing my diploma thesis on an assignment problem in logistics. There is a logistics software in c# and my part is to solve that assignment problem with a (primal or primal-dual-simplex). I ...
0
votes
0answers
144 views

Solving a simple algebraic equation with MS Solver Foundation

Is it possible to solve problems that are purely algebraic with the MS Solver Foundation? I cant come up with a suitable Domain to use to represent this. Basically what I am trying to do is solve the ...
0
votes
0answers
114 views

Microsoft Solver Foundation - Multiple Bound Ranges?

Is it possible to add multiple bound ranges to a variable? For example: InteriorPointSolver solver = new InteriorPointSolver(); int[] variables = new int[n]; for (int i = 0; i < n; i++) { ...
0
votes
1answer
56 views

MissingMethodException using MS Solver Foundation v2.1

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 ...
0
votes
1answer
323 views

Disadvantages of using Solver Foundation for constraint programming

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 ...
0
votes
0answers
62 views

Describe discrete function MSF

Hi i'm working with microsoft solver foundation and i want solve a MIP. MIP looks like the following: a1^x1 * const1 + a2^x2 * const2 +....+ ak^xk * constk = qaulity where xk>0 and xk is integer. ...
0
votes
2answers
522 views

Microsoft Solver Foundation constraint

I'm trying to use Microsoft Solver Foundation 2 to solve a fairly complicated situation, however I'm stuck with an UnsupportedModelException even when I dumb down the model as much as possible. Does ...
0
votes
2answers
551 views

Microsoft Solver Foundation Services declarative syntax

I have the following simple problem that I'd like to use to experiment with [MS Solver Foundation][1]: I have 10 slots that I need to fill with integers in the range 1 to 5. I want to enforce only ...