Uses of Interface
org.cicirello.permutations.distance.PermutationDistanceMeasurerDouble
-
Packages that use PermutationDistanceMeasurerDouble Package Description org.cicirello.permutations.distance Implementations of a variety of permutation distance measures. -
-
Uses of PermutationDistanceMeasurerDouble in org.cicirello.permutations.distance
Subinterfaces of PermutationDistanceMeasurerDouble in org.cicirello.permutations.distance Modifier and Type Interface Description interface
PermutationDistanceMeasurer
Implement this interface, PermutationDistanceMeasurer, to define a distance metric for permutations.Classes in org.cicirello.permutations.distance that implement PermutationDistanceMeasurerDouble Modifier and Type Class Description class
AcyclicEdgeDistance
Acyclic Edge Distance:class
BlockInterchangeDistance
Block Interchange Distance:class
CyclicEdgeDistance
Cyclic Edge Distance:class
CyclicIndependentDistance
This class implements the concept of a cyclic independent distance measure.class
CyclicIndependentDistanceDouble
This class implements the concept of a cyclic independent distance measure.class
CyclicReversalIndependentDistance
This class implements the combination of cyclic independence and reversal independence.class
CyclicReversalIndependentDistanceDouble
This class implements the combination of cyclic independence and reversal independence.class
CyclicRTypeDistance
Cyclic RType Distance:class
DeviationDistance
Deviation Distance:class
DeviationDistanceNormalized
Normalized Deviation Distance:class
DeviationDistanceNormalized2005
Normalized Deviation Distance:class
EditDistance
Edit Distance:class
ExactMatchDistance
Exact Match Distance:class
InterchangeDistance
Interchange Distance:class
KendallTauDistance
Kendall Tau Distance:class
LeeDistance
Lee Distance:class
ReinsertionDistance
Reinsertion Distance:class
ReversalDistance
Reversal Distance:class
ReversalIndependentDistance
This class implements the concept of a reversal independent distance measure.class
ReversalIndependentDistanceDouble
This class implements the concept of a reversal independent distance measure.class
RTypeDistance
RType Distance:class
ScrambleDistance
Scramble Distance:class
SquaredDeviationDistance
Squared Deviation Distance:Constructors in org.cicirello.permutations.distance with parameters of type PermutationDistanceMeasurerDouble Constructor Description CyclicIndependentDistanceDouble(PermutationDistanceMeasurerDouble d)
Constructs a distance measure for measuring distance with cyclic independence, such that distance = min_{i in [0,N)} distance(p1,rotate(p2,i))CyclicReversalIndependentDistanceDouble(PermutationDistanceMeasurerDouble d)
Constructs a distance measure for measuring distance with cyclic and reversal independence, such that distance = min_{i in [0,N)} { distance(p1,rotate(p2,i)), distance(p1,rotate(reverse(p2),i)) }ReversalIndependentDistanceDouble(PermutationDistanceMeasurerDouble d)
Constructs a distance measure for measuring distance with reversal independence, such that distance = min { distance(p1,p2), distance(p1,reverse(p2)) }
-