Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.port80.graph.dot.impl.DotEdge

Uses of DotEdge in com.port80.graph.dot.impl
 

Fields in com.port80.graph.dot.impl declared as DotEdge
private  DotEdge[] NetworkSimplex.treeEdges
           
private  DotEdge NetworkSimplex.bestEnter
           
(package private)  DotEdge[] DotVertex.ins
          For efficiency, ins and outs are allowed to be accessed directly.
(package private)  DotEdge[] DotVertex.outs
           
(package private)  DotEdge DotVertex.treeParent
           
(package private)  DotEdge[] DotVertex.treeIos
          Tree parent edge.
(package private)  DotEdge DotEdge.next
          The original IEdge this DotEdge represent.
 

Methods in com.port80.graph.dot.impl that return DotEdge
private  DotEdge Position.createDotEdge(DotVertex head, DotVertex tail, int minlen, int weight)
           
private  DotEdge NetworkSimplex.leaveEdge()
          Find edge with minimum cutValue starting from the last leave edge in round-robin.
private  DotEdge NetworkSimplex.enterEdge(DotEdge e)
          Find an non-tree edge with minimum slack going from head component to the tail component.
 DotEdge[] DotVertex.getIns()
           
 DotEdge[] DotVertex.getOuts()
           
private  DotEdge[] DotVertex.grow(DotEdge[] a)
           
 DotEdge DotEdge.findReverseEdge()
           
 

Methods in com.port80.graph.dot.impl with parameters of type DotEdge
private  void Position.sprintXPositionEdge(java.lang.StringBuffer ret, DotEdge e)
           
private  DotVertex NetworkSimplex.incident(DotEdge e)
           
private  void NetworkSimplex.addTreeEdge(DotEdge e)
           
private  void NetworkSimplex.dfCutValue(DotVertex v, DotEdge parent)
          Calculate cut value of edges in a tree from bottom up.
private  DotEdge NetworkSimplex.enterEdge(DotEdge e)
          Find an non-tree edge with minimum slack going from head component to the tail component.
private  void NetworkSimplex.exchangeTreeEdges(DotEdge leave, DotEdge enter)
          Swap non-tree edge 'leave' with tree edge 'enter'.
private  void NetworkSimplex.update(DotEdge leave, DotEdge enter)
          Compute new cut values, ranks, and exchange leave and enter.
 int DotVertex.removeIn(DotEdge e)
           
 int DotVertex.removeOut(DotEdge e)
           
 void DotVertex.addIn(DotEdge e)
           
 void DotVertex.addOut(DotEdge e)
           
private  DotEdge[] DotVertex.grow(DotEdge[] a)
           
 void DotVertex.removeTreeEdge(DotEdge e)
          Remove e from treeIos.
 void DotVertex.addTreeEdge(DotEdge e)
          Add e to treeIos.
 int DotVertex.initRange(DotEdge p, int low)
          Label each vertices of a tree with the range of DFS index under its subtree.
private  void DotGraph.sprintRankDebugEdge(java.lang.StringBuffer ret, DotEdge e)
           
 void DotEdge.merge(DotEdge e)
          Merge the specified edge into this one.