Uses of Class
es.urjc.etsii.grafo.graphs.model.MSTInstance
Packages that use MSTInstance
Package
Description
-
Uses of MSTInstance in es.urjc.etsii.grafo.graphs
Fields in es.urjc.etsii.grafo.graphs with type parameters of type MSTInstanceModifier and TypeFieldDescriptionstatic final Objective<?, MSTSolution, MSTInstance> Main.OBJECTIVE -
Uses of MSTInstance in es.urjc.etsii.grafo.graphs.algorithms
Subclasses with type arguments of type MSTInstance in es.urjc.etsii.grafo.graphs.algorithmsModifier and TypeClassDescriptionclassclassclassclassMethods in es.urjc.etsii.grafo.graphs.algorithms with parameters of type MSTInstanceModifier and TypeMethodDescriptionFloydWharshallAlg.algorithm(MSTInstance instance) KruskalAlg.algorithm(MSTInstance instance) NDijkstraAlg.algorithm(MSTInstance instance) PrimAlg.algorithm(MSTInstance instance) -
Uses of MSTInstance in es.urjc.etsii.grafo.graphs.experiments
Subclasses with type arguments of type MSTInstance 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 MSTInstanceModifier and TypeMethodDescriptionMinSpanTreeExp.getAlgorithms()MinVertexCoverExp.getAlgorithms()ShortestPathsExp.getAlgorithms() -
Uses of MSTInstance in es.urjc.etsii.grafo.graphs.model
Subclasses with type arguments of type MSTInstance in es.urjc.etsii.grafo.graphs.modelModifier and TypeClassDescriptionclassclassclassValidate that a solution is valid for the MST problem.Methods in es.urjc.etsii.grafo.graphs.model that return MSTInstanceModifier and TypeMethodDescriptionstatic MSTInstanceMSTInstanceImporter.generateErdosRenyi(int n, double p, int seed) Generate a Graph using the Erdos-Renyi model.MSTInstanceImporter.importInstance(BufferedReader reader, String suggestedName) Load instance from file.Methods in es.urjc.etsii.grafo.graphs.model with parameters of type MSTInstanceModifier and TypeMethodDescriptionMSTSolutionValidator.initGraph(MSTInstance instance, List<Edge> edges) Constructors in es.urjc.etsii.grafo.graphs.model with parameters of type MSTInstanceModifierConstructorDescriptionMSTSolution(MSTInstance instance) Initialize solution from instance -
Uses of MSTInstance in es.urjc.etsii.grafo.graphs.mvc
Subclasses with type arguments of type MSTInstance 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 with parameters of type MSTInstanceModifier and TypeMethodDescriptionMVCExactCoverSolver.solve(MSTInstance instance, Set<Integer> restrictedComponents, long maxDurationInMillis)