
org.deeplearning4j.graph.api.IVertexSequence Maven / Gradle / Ivy
package org.deeplearning4j.graph.api;
import java.util.Iterator;
/**Represents a sequence of vertices in a graph.
* General-purpose, but can be used to represent a walk on a graph, for example.
*/
public interface IVertexSequence extends Iterator> {
/** Length of the vertex sequence */
int sequenceLength();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy