Class SMCollectionMappingImpl.AStarSolution
- java.lang.Object
-
- de.uni_trier.wi2.procake.similarity.base.collection.impl.SMCollectionMappingImpl.AStarSolution
-
- All Implemented Interfaces:
Comparable<de.uni_trier.wi2.procake.similarity.base.collection.impl.SMCollectionMappingImpl.AStarComparable>
- Enclosing class:
- SMCollectionMappingImpl
public class SMCollectionMappingImpl.AStarSolution extends Object
represents a possible solution for a mapping scenario
-
-
Field Summary
Fields Modifier and Type Field Description List<DataObject>caseCollectionlist of yet unmapped caseItemsdoubleg_h_Denominatorsim-calc: the denominator of g and h (refer to A-Star for more detail)doubleg_Numeratorsim-calc: the numerator of g (refer to A-Star for more detail)doubleh_Numeratorsim-calc: the numerator of h (refer to A-Star for more detail)Set<SMCollectionMappingImpl.AStarMap>mappinglist of mappings until nowList<DataObject>queryCollectionlist of yet unmapped queryItems
-
Constructor Summary
Constructors Constructor Description AStarSolution()AStarSolution(SMCollectionMappingImpl.AStarSolution oldSolution)copies the content of the submitted solution (convenience method)
-
-
-
Field Detail
-
queryCollection
public List<DataObject> queryCollection
list of yet unmapped queryItems
-
caseCollection
public List<DataObject> caseCollection
list of yet unmapped caseItems
-
mapping
public Set<SMCollectionMappingImpl.AStarMap> mapping
list of mappings until now
-
g_Numerator
public double g_Numerator
sim-calc: the numerator of g (refer to A-Star for more detail)
-
g_h_Denominator
public double g_h_Denominator
sim-calc: the denominator of g and h (refer to A-Star for more detail)
-
h_Numerator
public double h_Numerator
sim-calc: the numerator of h (refer to A-Star for more detail)
-
-
Constructor Detail
-
AStarSolution
public AStarSolution()
-
AStarSolution
public AStarSolution(SMCollectionMappingImpl.AStarSolution oldSolution)
copies the content of the submitted solution (convenience method)
-
-