Branch-and-bound algorithm for the discrete ordered median problem
- Read an instance from Deleplanque et al, or any other data in a similar fashion, executing
julia> data = DiscreteOrderedMedian.read_deleplanque(filename)
- Optionally, you can modify the lambda vector, executing for instance
julia> data = DiscreteOrderedMedian.modify_lambda(data, :T1)
- Solve the problem using our B&B algorithm executing
julia> DiscreteOrderedMedian.bnb(data)