Skip to content
#

linear-programming

Here are 344 public repositories matching this topic...

Go scientific library for machine learning, linear algebra, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, graph, plotting, visualisation, tensors, eigenvalues, differential equations, more.

  • Updated May 13, 2020
  • Go
JWally
JWally commented Dec 9, 2015

@bchevalier,

Would you be up for helping me better document this library's functionality?
No rush at all, but I haven't done a great job of documenting what is in this library or how to use it very well. I figure we can kick around what all to include in this thread until we're comfortable moving over pieces to the readme.

For instance, I think you've made it possible to have free-variables (no

dcaud
dcaud commented Apr 28, 2019

"duals" should be "dual" below (from p. 21 of the documentation):

## Not run:
library(magrittr)
result <- MIPModel() %>%
add_variable(x[i], i = 1:5) %>%
add_variable(y[i, j], i = 1:5, j = 1:5) %>%
add_constraint(x[i] >= 1, i = 1:5) %>%
set_bounds(x[i], lb = 3, i = 1:3) %>%
set_objective(0) %>%
solve_model(with_ROI("glpk"))
solution <- get_solution(result, x[i])
solution2 <- get_s
bug

Improve this page

Add a description, image, and links to the linear-programming topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the linear-programming topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.