4

I used the library to solve line equation, it works for one creation of a class object from this library, but when I want to re-create the object, it throws me away:

System.InvalidOperationException: There is already an active model in the context. At Microsoft.SolverFoundation.Services.SolverContext.CreateModel ()

The problem is that after counting the first example, I want to change data and click on the button and get results for another example.

class LinearResolve
{
    public string[] Zmienne = new string[3];

    public LinearResolve(string[] table)
    {
        Zmienne = table;
    }

    public string Solver()
    {
        SolverContext context = SolverContext.GetContext();
        Model model = context.CreateModel();
        Decision a = new Decision(Domain.Real, "a");
        Decision b = new Decision(Domain.Real, "b");
        Decision c = new Decision(Domain.Real, "c");
        model.AddDecisions(a, b, c);
        model.AddConstraint("eqA", Zmienne[0]);
        model.AddConstraint("eqB", Zmienne[1]);
        model.AddConstraint("eqC", Zmienne[2]);
        Solution solution = context.Solve();
        string results = solution.GetReport().ToString();
        return results;
    }
}}
BartoszKP
  • 34,786
  • 15
  • 102
  • 130
Karol Pisarzewski
  • 680
  • 3
  • 12
  • 21

1 Answers1

4

Call ClearModel first:

SolverContext context = SolverContext.GetContext();
context.ClearModel();
Model model = context.CreateModel();
BartoszKP
  • 34,786
  • 15
  • 102
  • 130