165166167168169170171172173174175176
} return headEdge; } public void removeDependencyEdge(int headIndex, int dependentIndex) throws MaltChainedException { Node head = null; Node dependent = null; if (headIndex == 0) { head = root; } else if (headIndex > 0) { head = terminalNodes.get(headIndex); }
139140141142143144145146147148149150
checkInLabelSet(labels); return headEdge; } public void removeDependencyEdge(int headIndex, int dependentIndex) throws MaltChainedException { Node head = null; Node dependent = null; if (headIndex == 0) { head = root; } else if (headIndex > 0) { head = terminalNodes.get(headIndex); }