RingStarProblems v0.2.0
Patch release v0.2.0
✅ Now possible to use coordinates to solve RSP and 1-R-RSP, #12 closing
Solving with nodes coordinates
Either:
julia> x = 1:10
julia> y = rand(1:10, 10)
julia> RSP.rspoptimize(pars, x, y, GLPK.Optimizer)
Or:
julia> xycoors = tuple.(1:10, rand(1:10, 10))
julia> RSP.rspoptimize(pars, xycoors, GLPK.Optimizer)
✅ Several enhancements
✅ Code readability improved
Merged pull requests:
- Adding node coordinates support (#16) (@jkhamphousone)