Class DirectedGraphType

java.lang.Object
org.drip.graph.core.DirectedGraphType

public class DirectedGraphType
extends java.lang.Object
DirectedGraphType holds the Pre-specified Directed Graph Types. The References are:

  • Bollobas, B. (1998): Modern Graph Theory Springer
  • Eppstein, D. (1999): Spanning Trees and Spanners https://www.ics.uci.edu/~eppstein/pubs/Epp-TR-96-16.pdf
  • Gross, J. L., and J. Yellen (2005): Graph Theory and its Applications Springer
  • Kocay, W., and D. L. Kreher (2004): Graphs, Algorithms, and Optimizations CRC Press
  • Wikipedia (2020): Spanning Tree https://en.wikipedia.org/wiki/Spanning_tree




Author:
Lakshmi Krishnamurthy
  • Field Summary

    Fields
    Modifier and Type Field Description
    static int COMPLETE
    Graph is Complete
    static int COMPLETE_BIPARTITE
    Graph is Complete Bipartite
    static int CYCLICAL
    Graph is Cyclical
    static int N_DIMENSIONAL_HYPERCUBE
    Graph is n-Dimensional Hypercube
    static int TREE
    Graph is a Tree
    static int UNSPECIFIED
    Graph is Unspecified
  • Constructor Summary

    Constructors
    Constructor Description
    DirectedGraphType()  
  • Method Summary

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • UNSPECIFIED

      public static final int UNSPECIFIED
      Graph is Unspecified
      See Also:
      Constant Field Values
    • TREE

      public static final int TREE
      Graph is a Tree
      See Also:
      Constant Field Values
    • CYCLICAL

      public static final int CYCLICAL
      Graph is Cyclical
      See Also:
      Constant Field Values
    • COMPLETE

      public static final int COMPLETE
      Graph is Complete
      See Also:
      Constant Field Values
    • COMPLETE_BIPARTITE

      public static final int COMPLETE_BIPARTITE
      Graph is Complete Bipartite
      See Also:
      Constant Field Values
    • N_DIMENSIONAL_HYPERCUBE

      public static final int N_DIMENSIONAL_HYPERCUBE
      Graph is n-Dimensional Hypercube
      See Also:
      Constant Field Values
  • Constructor Details

    • DirectedGraphType

      public DirectedGraphType()