Uses of Class
pt.tumba.ngram.bayes.InferenceGraphNode

Packages that use InferenceGraphNode
pt.tumba.ngram.bayes Implementation of Bayesian Network Classifiers that can be used to categorize text files using N-Grams as features. 
 

Uses of InferenceGraphNode in pt.tumba.ngram.bayes
 

Methods in pt.tumba.ngram.bayes that return InferenceGraphNode
private  InferenceGraphNode InferenceGraph.get_node(DiscreteVariable dv)
           
 

Methods in pt.tumba.ngram.bayes with parameters of type InferenceGraphNode
 void InferenceGraph.change_values(InferenceGraphNode node, java.lang.String[] values)
          Change the values of a variable.
 boolean InferenceGraph.create_arc(InferenceGraphNode parent, InferenceGraphNode child)
          Create an arc from parent to child.
 void InferenceGraph.delete_arc(InferenceGraphNode parent, InferenceGraphNode child)
          Delete the arc from parent to child.
 void InferenceGraph.delete_node(InferenceGraphNode node)
          Delete a node in the network.
 boolean InferenceGraph.hasCycle(InferenceGraphNode bottom_node, InferenceGraphNode head_node)
          Determines whether the connection of bottom_node to head_node would cause the network to have a cycle.
 void InferenceGraph.set_pos(InferenceGraphNode node, java.awt.Point position)
          Set a value for the position of the node.