All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.graph.api.IVertexSequence Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
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