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

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

The newest version!
/*
 *  ******************************************************************************
 *  *
 *  *
 *  * This program and the accompanying materials are made available under the
 *  * terms of the Apache License, Version 2.0 which is available at
 *  * https://www.apache.org/licenses/LICENSE-2.0.
 *  *
 *  *  See the NOTICE file distributed with this work for additional
 *  *  information regarding copyright ownership.
 *  * Unless required by applicable law or agreed to in writing, software
 *  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 *  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 *  * License for the specific language governing permissions and limitations
 *  * under the License.
 *  *
 *  * SPDX-License-Identifier: Apache-2.0
 *  *****************************************************************************
 */

package org.deeplearning4j.graph.api;

import org.deeplearning4j.graph.exception.NoEdgesException;

import java.util.List;
import java.util.Random;

public interface IGraph {

    /** Number of vertices in the graph */
    public int numVertices();

    /**Get a vertex in the graph for a given index
     * @param idx integer index of the vertex to get. must be in range 0 to numVertices()
     * @return vertex
     */
    public Vertex getVertex(int idx);

    /** Get multiple vertices in the graph
     * @param indexes the indexes of the vertices to retrieve
     * @return list of vertices
     */
    public List> getVertices(int[] indexes);

    /** Get multiple vertices in the graph, with secified indices
     * @param from first vertex to get, inclusive
     * @param to last vertex to get, inclusive
     * @return list of vertices
     */
    public List> getVertices(int from, int to);

    /** Add an edge to the graph.
     */
    public void addEdge(Edge edge);

    /** Convenience method for adding an edge (directed or undirected) to graph */
    public void addEdge(int from, int to, E value, boolean directed);

    /** Returns a list of edges for a vertex with a given index
     * For undirected graphs, returns all edges incident on the vertex
     * For directed graphs, only returns outward directed edges
     * @param vertex index of the vertex to
     * @return list of edges for this vertex
     */
    public List> getEdgesOut(int vertex);

    /** Returns the degree of the vertex.
* For undirected graphs, this is just the degree.
* For directed graphs, this returns the outdegree * @param vertex vertex to get degree for * @return vertex degree */ public int getVertexDegree(int vertex); /** Randomly sample a vertex connected to a given vertex. Sampling is done uniformly at random. * Specifically, returns a random X such that either a directed edge (vertex -> X) exists, * or an undirected edge (vertex -- X) exists
* Can be used for example to implement a random walk on the graph (specifically: a unweighted random walk) * @param vertex vertex to randomly sample from * @param rng Random number generator to use * @return A vertex connected to the specified vertex, * @throws NoEdgesException thrown if the specified vertex has no edges, or no outgoing edges (in the case * of a directed graph). */ public Vertex getRandomConnectedVertex(int vertex, Random rng) throws NoEdgesException; /**Get a list of all of the vertices that the specified vertex is connected to
* Specifically, for undirected graphs return list of all X such that (vertex -- X) exists
* For directed graphs, return list of all X such that (vertex -> X) exists * @param vertex Index of the vertex * @return list of vertices that the specified vertex is connected to */ public List> getConnectedVertices(int vertex); /**Return an array of indexes of vertices that the specified vertex is connected to.
* Specifically, for undirected graphs return int[] of all X.vertexID() such that (vertex -- X) exists
* For directed graphs, return int[] of all X.vertexID() such that (vertex -> X) exists * @param vertex index of the vertex * @return list of vertices that the specified vertex is connected to * @see #getConnectedVertices(int) */ public int[] getConnectedVertexIndices(int vertex); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy