Uses of Class
org.peace_tools.workspace.Heuristic

Packages that use Heuristic
org.peace_tools.core.job Contains the classes associated with the job wizard. 
org.peace_tools.views Contains the classes that provide views for the various data objects in the GUI. 
org.peace_tools.workspace Contains the classes that provide persistent storage of work space configuration. 
 

Uses of Heuristic in org.peace_tools.core.job
 

Methods in org.peace_tools.core.job that return types with arguments of type Heuristic
protected  java.util.ArrayList<Heuristic> HeuristicsWizardPage.getHeuristics()
          This method is a convenience method that can be used to obtain a HeuristicList object containing information from this page.
 

Uses of Heuristic in org.peace_tools.views
 

Methods in org.peace_tools.views with parameters of type Heuristic
private static javax.swing.tree.MutableTreeNode PropertiesTreeMaker.makeHeuristicProperties(Heuristic heuristic)
          Helper method to create a properties node for a given data set entry.
 

Uses of Heuristic in org.peace_tools.workspace
 

Fields in org.peace_tools.workspace with type parameters of type Heuristic
private  java.util.ArrayList<Heuristic> Job.heuristics
          The list of heuristics configured by the user for this job.
 

Methods in org.peace_tools.workspace that return Heuristic
static Heuristic Heuristic.create(org.w3c.dom.Element heuristic)
          Helper method to utilize data from a DOM tree to create a suitable Heuristic entry.
 

Methods in org.peace_tools.workspace that return types with arguments of type Heuristic
 java.util.ArrayList<Heuristic> Job.getHeuristicList()
          Obtain the list of heuristics that were used to accelerate the process of constructing the MST.
private static java.util.ArrayList<Heuristic> Job.parseHeuristicChain(org.w3c.dom.Element jobNode)
          Helper method to unmarshall the heuristic list into an in-memory array list.
 

Constructor parameters in org.peace_tools.workspace with type arguments of type Heuristic
Job(java.lang.String jobID, java.lang.String description, java.lang.String serverID, java.lang.String path, int nodes, int cpusPerNode, int memory, int maxRunTime, java.util.ArrayList<Heuristic> heuristics, java.util.ArrayList<Filter> filters)
          Constructor to create a Job object with the fixed value fields initialized to specific values.