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

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

Subclasses of Concept in edu.iu.pcl.absurdist.absurdist
 class FeatureVectorConcept
          This is a special subclass of Concept, in which each instance contains an internal feature vector used to compute external similarity.
 

Methods in edu.iu.pcl.absurdist.absurdist that return Concept
 Concept Relation.getConcept1()
          Returns the 1st concept in the relation.
 Concept Relation.getConcept2()
          Returns the 2nd concept in the relation.
 Concept ConceptSystem.getConcept(int i)
          Gets the ith concept.
 Concept ConceptSystem.getConcept(java.lang.String name)
          Gets the concept with the specified name
 

Methods in edu.iu.pcl.absurdist.absurdist with parameters of type Concept
 double FeatureVectorConcept.distance(Concept concept)
          Computes the normalized semantic distance between this concept and the specified one.
 int ConceptSystem.getConceptIndex(Concept concept)
          Gets the index of a concept in the system.
 void ConceptSystem.addConcept(Concept concept)
          Adds a concept.
 double Concept.distance(Concept concept)
          Computes the normalized semantic distance between this concept and the specified one.
 

Constructors in edu.iu.pcl.absurdist.absurdist with parameters of type Concept
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)
          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, 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.
Relation(RelationModel model, Concept c1, Concept c2, double weight)
          Creates a relation with full features between two 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)
          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.
Relation(Relation relation, Concept c1, Concept c2, double noise)
          Creates a copy of a relation, using the specified concepts, with some noise.
Concept(Concept concept)
          Creates a copy of a concept.
Concept(Concept concept, double noise)
          Creates a copy of a concept with some noise added to the feature values.
 

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

Subclasses of Concept in edu.iu.pcl.absurdist.gui
 class ConceptNode
          Class ConceptNode: Visual representation of a concept in a concept system graph.
 

Constructors in edu.iu.pcl.absurdist.gui with parameters of type Concept
ConceptNode(Concept concept, ConceptSystem system, ConceptGraph graph)
          Creates a concept node by encoding its concept features.