SONNET builds on top of the well-known COIN libraries for optimisation (see http://www.coin-or.org). It brings the power of (integer) linear programming projects of COIN to .NET.

SONNET is licensed under the terms of the Eclipse Public License (EPL).

SONNET consists of two parts:

1) A .NET library that consists of .NET wrapper classes around existing COIN classes such as OsiSolverInterface.

2) A .NET library implemented in C# that adds a powerful (rudimentary) modelling API with classes like Model, Constraint, Variable, Expression, etc, and overloaded operators to allow for things like

Model model = new Model();

Variable x = new Variable();

Variable y = new Variable();

model.Add(2 * x + 3 * y <= 10);

model.Objective = 3 * x + y;

Solver solver = new Solver(model, typeof(OsiClpSolverInterface));

solver.Maximize();

Console.WriteLine(solver.ToSolutionString());

Features

  • Linear programming in .NET
  • Build large models (>100K variables and constraints)
  • Near-algebraic formulations

Project Samples

Project Activity

See All Activity >

Follow SONNET

SONNET Web Site

Other Useful Business Software
Get Avast Free Antivirus with 24/7 AI-powered online scam detection Icon
Get Avast Free Antivirus with 24/7 AI-powered online scam detection

Get protection for today’s online threats. Free.

Award-winning antivirus protection, as well as protection against online scams, dangerous Wi-Fi connections, hacked accounts, and ransomware. It includes Avast Assistant, your built-in AI partner, which gives you help with suspicious online messages, offers, and more.
Free Download
Rate This Project
Login To Rate This Project

User Reviews

Be the first to post a review of SONNET!

Additional Project Details

Registered

2011-11-16