Uses of Class
de.unima.alcomox.mapping.Correspondence

Packages that use Correspondence
de.unima.alcomox.algorithms   
de.unima.alcomox.mapping   
de.unima.alcomox.ontology   
 

Uses of Correspondence in de.unima.alcomox.algorithms
 

Methods in de.unima.alcomox.algorithms with parameters of type Correspondence
 void StateAnalyzer.store(Correspondence[] chosenCorrespondences)
           
 

Uses of Correspondence in de.unima.alcomox.mapping
 

Methods in de.unima.alcomox.mapping that return Correspondence
 Correspondence Mapping.get(int index)
           
 Correspondence MappingMatrix.getCorrespondence(int x, int y)
           
 Correspondence Mapping.pop()
          Removes the last correspondence from this mapping.
 Correspondence Mapping.remove(int index)
          Removes a correspondence at a specified index.
 

Methods in de.unima.alcomox.mapping that return types with arguments of type Correspondence
 java.util.ArrayList<Correspondence> Mapping.getCorrespondences()
          Returns the correspondences of this mapping as list.
 java.util.HashSet<Correspondence> Mapping.getCorrespondencesAsSet()
          Returns the correspondences of this mapping as set.
 java.util.Iterator<Correspondence> Mapping.iterator()
           
 

Methods in de.unima.alcomox.mapping with parameters of type Correspondence
 int Correspondence.compareTo(Correspondence correspondence)
           
 boolean Mapping.contains(Correspondence c1)
          Checks if a given correspondence is contained in this mapping.
 void Mapping.push(Correspondence correspondence)
          Adds a correspondence at the end of a mapping.
 void Mapping.shrinkTill(Correspondence c)
          Removes every correspondence from the first one till the specified correspondence inclusive.
 

Method parameters in de.unima.alcomox.mapping with type arguments of type Correspondence
 void Mapping.setCorrespondences(java.util.AbstractList<Correspondence> correspondences)
          Sets a list of correspondences as correspondences of the mapping.
 void Mapping.setCorrespondences(java.util.Set<Correspondence> correspondencesAsSet)
          Sets a set of correspondences as correspondences of the mapping.
 

Constructor parameters in de.unima.alcomox.mapping with type arguments of type Correspondence
Mapping(java.util.ArrayList<Correspondence> correspondences)
          Constructs a mapping with the given list of correspondences.
Mapping(java.util.Set<Correspondence> correspondencesAsSet)
          Constructs a mapping with the given set of correspondences.
 

Uses of Correspondence in de.unima.alcomox.ontology
 

Methods in de.unima.alcomox.ontology that return Correspondence
 Correspondence ConflictPair.getCorrespondence1()
           
 Correspondence ConflictPair.getCorrespondence2()
           
 Correspondence CompleteReasoner.searchInvalidCorrespondence(Mapping mapping)
          Searches binary and returns a correspondence being part of a conflict.
 

Methods in de.unima.alcomox.ontology that return types with arguments of type Correspondence
 java.util.Set<Correspondence> ConflictPair.getCorrespondences()
           
 

Methods in de.unima.alcomox.ontology with parameters of type Correspondence
 boolean EfficientReasoner.conflictsWithMapping(Correspondence candidate, Mapping mapping)
           
 double EfficientReasoner.estimateConflictSensitivity(Correspondence c, int exactness)
          Estimates the conflict sensitivity by drawing a sample of randomly generated correspondences.
 boolean EfficientReasoner.isConflictPair(Correspondence c1, Correspondence c2)
          Checks wether two correspondences are in conflict.
 

Constructors in de.unima.alcomox.ontology with parameters of type Correspondence
ConflictPair(Correspondence c1, Correspondence c2)