Uses of Class
edu.iu.pcl.absurdist.absurdist.RelationModel

Packages that use RelationModel
edu.iu.pcl.absurdist.absurdist The main graph matching algorithm.  
edu.iu.pcl.absurdist.gui Graphical user interface for displaying the graph matching process, and the best match found.  
 

Uses of RelationModel in edu.iu.pcl.absurdist.absurdist
 

Fields in edu.iu.pcl.absurdist.absurdist declared as RelationModel
 RelationModel Relation.model
          Relation model of this relation.
 

Methods in edu.iu.pcl.absurdist.absurdist that return RelationModel
 RelationModel ConceptSystem.getModel(int i)
          Gets the ith relation model.
 RelationModel ConceptSystem.getModel(java.lang.String label)
          Gets the relation model with the specified label.
 

Methods in edu.iu.pcl.absurdist.absurdist with parameters of type RelationModel
 int RelationModel.compareTo(RelationModel model)
          Compares the ordering between this model and the specified one, according to their label.
 int ConceptSystem.getModelIndex(RelationModel model)
          Gets the index of a relation model in the system.
 void ConceptSystem.addModel(RelationModel model)
          Adds a relation model.
 

Constructors in edu.iu.pcl.absurdist.absurdist with parameters of type RelationModel
Relation(RelationModel model, Concept c1, Concept c2)
          Creates a relation of the specified model with default weight between two concepts.
Relation(RelationModel model, Concept c1, Concept c2, boolean weighted)
          Creates a relation of the specified model with random weight if weighted between two concepts.
Relation(RelationModel model, Concept c1, Concept c2, double weight)
          Creates a relation with full features between two concepts.
 

Uses of RelationModel in edu.iu.pcl.absurdist.gui
 

Methods in edu.iu.pcl.absurdist.gui with parameters of type RelationModel
static java.awt.Color RelationLink.label2color(RelationModel model, java.util.Vector models)
          Encodes relation label into link color.