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

org.nd4j.autodiff.graph.api.Vertex Maven / Gradle / Ivy

package org.nd4j.autodiff.graph.api;

import lombok.AllArgsConstructor;
import lombok.Data;

/** Vertex in a graph
 *
 * @param  the type of the value/object associated with the vertex
 */
@AllArgsConstructor
@Data
public class Vertex {

    protected  int idx;
    protected  T value;

    public int vertexID() {
        return idx;
    }

    public T getValue() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy