Uses of Class
edu.uky.ai.planning.pg.Node

Packages that use Node
Package
Description
Contains objects for representing plan graphs and planners that search for a solution by finding a valid subgraph of a plan graph.
  • Uses of Node in edu.uky.ai.planning.pg

    Subclasses of Node in edu.uky.ai.planning.pg
    Modifier and Type
    Class
    Description
    class 
    Represents a unique literal, or fact, in a plan graph.
    class 
    Represents a unique step, or action, in a plan graph.
    Fields in edu.uky.ai.planning.pg declared as Node
    Modifier and Type
    Field
    Description
    final Node
    NodeInstance.node
    The plan graph node
    Methods in edu.uky.ai.planning.pg with parameters of type Node
    Modifier and Type
    Method
    Description
    Subgraph.add(Node node, int level)
    Returns a new subgraph which contains a given node at a given level.
    int
    Node.compareTo(Node other)
     
    boolean
    Subgraph.contains(Node node, int level)
    Tests whether this subgraph contains a given node at the given level.
    boolean
    Node.mutex(Node node, int level)
    Tests whether or not this node is mutually exclusive with another given node at the given level.
    Subgraph.remove(Node node, int level)
    Returns a new subgraph which does not contain a given node at a given level.
    Constructors in edu.uky.ai.planning.pg with parameters of type Node
    Modifier
    Constructor
    Description
     
    NodeInstance(Node node, int level)
    Constructs a new node instance for the given node and level.