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

Packages that use Relation
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 Relation in edu.iu.pcl.absurdist.absurdist
 

Methods in edu.iu.pcl.absurdist.absurdist that return Relation
 Relation ConceptSystem.getRelation(int i, int j, java.lang.String label)
          Gets the relation of the specified label between concept i and concept j.
static Relation ConceptSystem.getRelation(java.util.Vector rellist, java.lang.String label)
          Gets the relation of the specified label in a relation list.
 

Methods in edu.iu.pcl.absurdist.absurdist with parameters of type Relation
 int Relation.compareTo(Relation relation)
          Compares the lexicographical order of this relation and the specified one, according to their label.
 double Relation.difWeight(Relation relation)
          Return the difference between the weight of this relation and the specified one.
 void ConceptSystem.putRelation(int i, int j, Relation relation)
          Adds the specified relation to the relation list between concept i and concept j.
static void ConceptSystem.putRelation(java.util.Vector rellist, Relation relation)
          Adds the specified relation to a relation list.
 void ConceptSystem.removeRelation(int i, int j, Relation relation)
          Removes the specified relation from the relation list between concept i and concept j; if this causes the list to be empty, remove the list from the system.
 

Constructors in edu.iu.pcl.absurdist.absurdist with parameters of type Relation
Relation(Relation relation)
          Creates a copy of a relation sharing the same concepts.
Relation(Relation relation, Concept c1, Concept c2)
          Creates a copy of a relation, using the specified concepts.
Relation(Relation relation, Concept c1, Concept c2, double noise)
          Creates a copy of a relation, using the specified concepts, with some noise.
 

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

Subclasses of Relation in edu.iu.pcl.absurdist.gui
 class RelationLink
          Class RelationLink: Visual representation of a relation in a concept system graph.
 

Constructors in edu.iu.pcl.absurdist.gui with parameters of type Relation
RelationLink(Relation relation, ConceptSystem system, ConceptGraph graph)
          Creates a relation link by encoding its relation features.