jkhamphousone / RingStarProblems.jl

A Julia solver of Ring Star Problem variants
https://jkhamphousone.github.io/RingStarProblems.jl/
MIT License
9 stars 1 forks source link

Solve instances with coordinates #12

Closed jkhamphousone closed 3 months ago

jkhamphousone commented 3 months ago

Currently, the solver only solves a subset of TSPLIB adapted to RSP instances. We would like to make it solve instances with two matrices R and S as an input (ring costs) and (star costs):


R = [
     0  16   7  14
    16   0   3   5
     7   3   0  16
    14   5  16   0 
]
S = [
     0   6   7  14
    16   0   4   5
     7   3   0   1
    14   5   1   0 
]
RSP.rspoptimize(pars, R, S)```
jkhamphousone commented 3 months ago

closed by #16