Uses of Class
es.urjc.etsii.grafo.solution.neighborhood.ExploreResult
Packages that use ExploreResult
Package
Description
-
Uses of ExploreResult in es.urjc.etsii.grafo.solution.neighborhood
Subclasses of ExploreResult in es.urjc.etsii.grafo.solution.neighborhoodModifier and TypeClassDescriptionclass
ListExploreResult<M extends Move<S,
I>, S extends Solution<S, I>, I extends Instance> Methods in es.urjc.etsii.grafo.solution.neighborhood that return ExploreResultModifier and TypeMethodDescriptionstatic <M extends Move<S,
I>, S extends Solution<S, I>, I extends Instance>
ExploreResult<M, S, I> ExploreResult.empty()
Empty explore resultsExploreResult
<M, S, I> abstract ExploreResult
<M, S, I> Build an exhaustive stream that allows iterating the whole neighborhood Using a stream is more efficient that a list as moves are only generated if they are neededstatic <M extends Move<S,
I>, S extends Solution<S, I>, I extends Instance>
ExploreResult<M, S, I> Explore result from a liststatic <M extends Move<S,
I>, S extends Solution<S, I>, I extends Instance>
ExploreResult<M, S, I> ExploreResult.fromStream
(Stream<M> moves) Unknown size constructor from streamstatic <M extends Move<S,
I>, S extends Solution<S, I>, I extends Instance>
ExploreResult<M, S, I> ExploreResult.fromStream
(Stream<M> moves, int size) Explore result from a stream of moves, with given size. -
Uses of ExploreResult in es.urjc.etsii.grafo.testutil
Methods in es.urjc.etsii.grafo.testutil that return ExploreResult -
Uses of ExploreResult in es.urjc.etsii.grafo.TSP.model.neighs
Methods in es.urjc.etsii.grafo.TSP.model.neighs that return ExploreResultModifier and TypeMethodDescriptionInsertNeighborhood.explore
(TSPSolution solution) SwapNeighborhood.explore
(TSPSolution solution)