Uses of Class
es.urjc.etsii.grafo.graphs.model.MSTSolution
Packages that use MSTSolution
Package
Description
-
Uses of MSTSolution in es.urjc.etsii.grafo.graphs
Fields in es.urjc.etsii.grafo.graphs with type parameters of type MSTSolutionModifier and TypeFieldDescriptionstatic final Objective<?, MSTSolution, MSTInstance> Main.OBJECTIVE -
Uses of MSTSolution in es.urjc.etsii.grafo.graphs.algorithms
Subclasses with type arguments of type MSTSolution in es.urjc.etsii.grafo.graphs.algorithmsModifier and TypeClassDescriptionclassclassclassclassMethods in es.urjc.etsii.grafo.graphs.algorithms that return MSTSolutionModifier and TypeMethodDescriptionFloydWharshallAlg.algorithm(MSTInstance instance) KruskalAlg.algorithm(MSTInstance instance) NDijkstraAlg.algorithm(MSTInstance instance) PrimAlg.algorithm(MSTInstance instance) -
Uses of MSTSolution in es.urjc.etsii.grafo.graphs.experiments
Subclasses with type arguments of type MSTSolution in es.urjc.etsii.grafo.graphs.experimentsModifier and TypeClassDescriptionclassclassMinimum Vertex Cover (MVC), solved with CMSA (Construct, Merge, Solve & Adapt).classMethods in es.urjc.etsii.grafo.graphs.experiments that return types with arguments of type MSTSolutionModifier and TypeMethodDescriptionMinSpanTreeExp.getAlgorithms()MinVertexCoverExp.getAlgorithms()ShortestPathsExp.getAlgorithms() -
Uses of MSTSolution in es.urjc.etsii.grafo.graphs.model
Subclasses with type arguments of type MSTSolution in es.urjc.etsii.grafo.graphs.modelModifier and TypeClassDescriptionclassclassValidate that a solution is valid for the MST problem.Methods in es.urjc.etsii.grafo.graphs.model that return MSTSolutionMethods in es.urjc.etsii.grafo.graphs.model with parameters of type MSTSolutionModifier and TypeMethodDescriptionMSTSolutionValidator.validate(MSTSolution solution) Validate the current solution, check that no constraint is broken and everything is fineConstructors in es.urjc.etsii.grafo.graphs.model with parameters of type MSTSolution -
Uses of MSTSolution in es.urjc.etsii.grafo.graphs.mvc
Subclasses with type arguments of type MSTSolution in es.urjc.etsii.grafo.graphs.mvcModifier and TypeClassDescriptionclassProbabilistic constructive method for the Minimum Vertex Cover (MVC) problem, used as the "Construct" step of the CMSA demo in this project.classExact solver for the CMSA "Solve" step of the Minimum Vertex Cover demo: given a restricted set of candidate vertices, finds the smallest subset of those candidates that covers every edge of the original instance.Methods in es.urjc.etsii.grafo.graphs.mvc that return MSTSolutionModifier and TypeMethodDescriptionMVCConstructive.construct(MSTSolution solution) MVCExactCoverSolver.solve(MSTInstance instance, Set<Integer> restrictedComponents, long maxDurationInMillis) Methods in es.urjc.etsii.grafo.graphs.mvc with parameters of type MSTSolutionModifier and TypeMethodDescriptionMVCConstructive.construct(MSTSolution solution) MVCConstructive.usedComponents(MSTSolution solution)