Beispiel #1
0
 public Set <CGEdge> EdgesFrom(CGNode mn)
 {
     return(edgesNode(mn, true));
 }
Beispiel #2
0
 public Set <CGEdge> EdgesTo(CGNode mn)
 {
     return(edgesNode(mn, false));
 }
Beispiel #3
0
 public Set <CGNode> Predecessors(CGNode mn)
 {
     return(adjacents(mn, false));
 }
Beispiel #4
0
 public Set <CGNode> Successors(CGNode mn)
 {
     return(adjacents(mn, true));
 }
Beispiel #5
0
        public void AddEdge(CGNode m1, CGNode m2, Label lb, bool isV)
        {
            CGEdge e = new CGEdge(m1, lb, m2, isV);

            AddEdge(e);
        }
Beispiel #6
0
 public CGVerbTerm(CGNode target, CGRelation relation, int level)
 {
     this.Node     = target;
     this.Level    = level;
     this.Relation = relation;
 }
Beispiel #7
0
 public void Execute(CGNode Node)
 {
 }