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

You Might Also Like
Red Hat Enterprise Linux on Microsoft Azure Icon
Red Hat Enterprise Linux on Microsoft Azure

Deploy Red Hat Enterprise Linux on Microsoft Azure for a secure, reliable, and scalable cloud environment, fully integrated with Microsoft services.

Red Hat Enterprise Linux (RHEL) on Microsoft Azure provides a secure, reliable, and flexible foundation for your cloud infrastructure. Red Hat Enterprise Linux on Microsoft Azure is ideal for enterprises seeking to enhance their cloud environment with seamless integration, consistent performance, and comprehensive support.
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