Class NodeEmbedding<V>

java.lang.Object
org.apache.commons.math3.ml.clustering.DoublePoint
org.nlpub.watset.graph.NodeEmbedding<V>
Type Parameters:
V - the type of nodes in the graph
All Implemented Interfaces:
Serializable, Supplier<V>, org.apache.commons.math3.ml.clustering.Clusterable

public class NodeEmbedding<V> extends org.apache.commons.math3.ml.clustering.DoublePoint implements Supplier<V>
Coordinates of the graph node.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    NodeEmbedding(V node, double[] point)
    Create an instance of node coordinates.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
     

    Methods inherited from class org.apache.commons.math3.ml.clustering.DoublePoint

    equals, getPoint, hashCode, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • NodeEmbedding

      public NodeEmbedding(V node, double[] point)
      Create an instance of node coordinates.
      Parameters:
      node - the node
      point - the coordinates
  • Method Details

    • get

      public V get()
      Specified by:
      get in interface Supplier<V>