November 2017
Beginner
316 pages
6h 40m
English
JuMP is an AML implemented in Julia. Readers coming from a Python background may be familiar with PuLP. It currently supports several open source solvers for a wide variety of problem cases. Some of its features include:
Installing and getting started with JuMP is easy. However, we also need to install a solver alongside, which in this case will be Clp:
julia> Pkg.add("JuMP") julia> Pkg.add("Clp") julia> using JuMP julia> using Clp # creating a model without a solver julia> m = JuMP.Model() Feasibility problem with: * 0 linear constraints * 0 variables Solver is default solver # but we want to use Clp as solver, we have julia> m ...Read now
Unlock full access