Interface SMListDP
-
- All Superinterfaces:
SimilarityMeasure
- All Known Subinterfaces:
SMGraphDTW,SMGraphSWA,SMListDTW,SMListSWA
- All Known Implementing Classes:
SMGraphDTWImpl,SMGraphSWAImpl,SMListDPImpl,SMListDTWImpl,SMListSWAImpl
public interface SMListDP extends SimilarityMeasure
-
-
Field Summary
-
Fields inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
COMPONENT, COMPONENT_KEY, LOG_ORDER_NAME_NOT_FOUND
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDataSimilarityToUse()booleangetForceAlignmentEndsWithQuery()Return property of similarity measure to find an alignment that ends with the query or not.doublegetHalvingDistancePercentage()StringgetLocalSimilarityToUse()voidsetDataSimilarityToUse(String name)Set the data similarity to be used during local node similarity calculation.voidsetForceAlignmentEndsWithQuery(boolean endWithQuery)Set property of similarity measures to find an alignment that ends with the query.voidsetHalvingDistancePercentage(double hDist)Set the percentage of the query length, at which the temporal factor shall equal one half.voidsetLocalSimilarityToUse(String name)Set the task similarity to be used during local node similarity calculation.voidsetNormScore(boolean normScore)-
Methods inherited from interface de.uni_trier.wi2.procake.similarity.SimilarityMeasure
compute, getDataClass, getName, getSystemName, isForceOverride, isReusable, setForceOverride
-
-
-
-
Method Detail
-
getHalvingDistancePercentage
double getHalvingDistancePercentage()
-
setHalvingDistancePercentage
void setHalvingDistancePercentage(double hDist)
Set the percentage of the query length, at which the temporal factor shall equal one half.- Parameters:
hDist- Distance as percentage between 0 and 1.
-
getDataSimilarityToUse
String getDataSimilarityToUse()
-
setDataSimilarityToUse
void setDataSimilarityToUse(String name)
Set the data similarity to be used during local node similarity calculation.- Parameters:
name- Name of the sim measure
-
getLocalSimilarityToUse
String getLocalSimilarityToUse()
-
setLocalSimilarityToUse
void setLocalSimilarityToUse(String name)
Set the task similarity to be used during local node similarity calculation.- Parameters:
name- Name of the sim measure
-
setNormScore
void setNormScore(boolean normScore)
-
getForceAlignmentEndsWithQuery
boolean getForceAlignmentEndsWithQuery()
Return property of similarity measure to find an alignment that ends with the query or not.- Returns:
-
setForceAlignmentEndsWithQuery
void setForceAlignmentEndsWithQuery(boolean endWithQuery)
Set property of similarity measures to find an alignment that ends with the query.- Parameters:
endWithQuery- Whether the alignment shall end with the query. Defaults to true.
-
-