netotz / alpha-neighbor-p-center-problem

Heuristic algorithms for the alpha-neighbor p-center problem.
MIT License
5 stars 0 forks source link

Add GRASP #20

Open netotz opened 1 week ago

netotz commented 1 week ago

A new class to run GRASP.

Ideas

It could be an abstract, generic base class and a specific child class with fixed types, e.g.

abstract class BaseGrasp<TConstructive, TLocalSearch> { }

class GraspRgdAfvs : BaseGrasp<RandomizedGreedyDispersion, AlphaFastVertexSubstitution> { }