Open netotz opened 1 week ago
A new class to run GRASP.
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> { }
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.