Uses of Class
edu.cs.ai.kreator.logic.ClauseNetworkNode

Packages that use ClauseNetworkNode
edu.cs.ai.kreator.logic   
 

Uses of ClauseNetworkNode in edu.cs.ai.kreator.logic
 

Methods in edu.cs.ai.kreator.logic that return types with arguments of type ClauseNetworkNode
 java.util.Set<ClauseNetworkNode> ClauseNetworkNode.getChildren()
          Returns the children of this node.
 Pair<ClauseNetworkNode,ClauseNetworkNode> ClauseNetwork.getCombinableClauses()
          Checks whether there are at least two nodes in this network which's clauses share the same head and returns this pair if existing.
 Pair<ClauseNetworkNode,ClauseNetworkNode> ClauseNetwork.getCombinableClauses()
          Checks whether there are at least two nodes in this network which's clauses share the same head and returns this pair if existing.
 java.util.Set<ClauseNetworkNode> ClauseNetwork.getLeafs()
          Returns the set of leafs of this network.
 java.util.Set<ClauseNetworkNode> ClauseNetworkNode.getParents()
          Returns the parents of this node.
 java.util.Set<ClauseNetworkNode> ClauseNetwork.getRoots()
          Returns the set of roots of this network.
 java.util.Iterator<ClauseNetworkNode> ClauseNetwork.iterator()
           
 

Methods in edu.cs.ai.kreator.logic with parameters of type ClauseNetworkNode
 boolean ClauseNetwork.add(ClauseNetworkNode e)
           
protected  void ClauseNetworkNode.addChild(ClauseNetworkNode node)
          Adds the given node to this node's children.
protected  void ClauseNetworkNode.addParent(ClauseNetworkNode node)
          Adds the given node to this node's parents.
protected  void ClauseNetworkNode.removeChild(ClauseNetworkNode node)
          Removes the given node from this node's children (if present),
 boolean ClauseNetwork.removeDownwardsRecursively(ClauseNetworkNode node)
          Removes the given clause and all its descendents.
protected  void ClauseNetworkNode.removeParent(ClauseNetworkNode node)
          Removes the given node from this node's parents (if present),
 

Method parameters in edu.cs.ai.kreator.logic with type arguments of type ClauseNetworkNode
 boolean ClauseNetwork.addAll(java.util.Collection<? extends ClauseNetworkNode> c)