Convex Optimization (or Mathematical Programming) in Go
github.com·1d·
Discuss: r/golang
Flag this post

MatProInterface.go

A common interface used for modeling Mathematical Programs in the language Go.

| | | | | Effectively Model Mathematical Programs |

How to Install

go get github.com/The-Velo-Network/MatProInterface.go

The interface is very useful on its own, but typically you won’t want to install it alone. You should use it with a solver that can address the problems specified by your model.

Available Solvers

Modeling the Mathematical Program Above

For example, to model the program above one would write the following code:


import (
...
"github.com/MatProGo-dev/MatProInterface.go/problem"
getKVector "github.com/MatProGo-dev/SymbolicMath.go...

Similar Posts

Loading similar posts...