Class HamiltonianCycleAlgorithmBase<V,​E>

    • Constructor Detail

      • HamiltonianCycleAlgorithmBase

        public HamiltonianCycleAlgorithmBase()
    • Method Detail

      • vertexListToTour

        protected GraphPath<V,​E> vertexListToTour​(List<V> tour,
                                                        Graph<V,​E> graph)
        Transform from a List representation to a graph path.
        Parameters:
        tour - a list containing the vertices of the tour
        graph - the graph
        Returns:
        a graph path
      • edgeSetToTour

        protected GraphPath<V,​E> edgeSetToTour​(Set<E> tour,
                                                     Graph<V,​E> graph)
        Transform from a Set representation to a graph path.
        Parameters:
        tour - a set containing the edges of the tour
        graph - the graph
        Returns:
        a graph path
      • getSingletonTour

        protected GraphPath<V,​E> getSingletonTour​(Graph<V,​E> graph)
        Creates a tour for a graph with 1 vertex
        Parameters:
        graph - The graph
        Returns:
        A tour with a single vertex