Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created December 9, 2021 14:50
Show Gist options
  • Save samueleresca/68189f57c43c32e0a74c089c3d737bd2 to your computer and use it in GitHub Desktop.
Save samueleresca/68189f57c43c32e0a74c089c3d737bd2 to your computer and use it in GitHub Desktop.
// lpDefinition defines a linear programming expression with its own Vars, Constraints, Objectives.
type lpDefinition struct {
Vars []float64
Constraints [][2]float64
Objectives [][]float64
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment