From d1f5fd5438a6867edf873399b4683b935b33a8ef Mon Sep 17 00:00:00 2001 From: Rocky Madden Date: Fri, 26 Oct 2012 19:08:13 -0600 Subject: Renamed distance package to similarity. --- .../org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala | 2 +- .../scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala | 2 +- .../core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala | 2 +- .../scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala | 2 +- .../scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'cli/source') diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala index 3cb40a5..5906acf 100755 --- a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala +++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala @@ -3,7 +3,7 @@ package org.hashtree.stringmetric.cli.command import org.hashtree.stringmetric.{ AsciiCaseStringCleaner, StringCleanerDelegate } import org.hashtree.stringmetric.cli._ import org.hashtree.stringmetric.cli.command._ -import org.hashtree.stringmetric.distance.DiceSorensenMetric +import org.hashtree.stringmetric.similarity.DiceSorensenMetric /** * The diceSorensenMetric [[org.hashtree.stringmetric.cli.command.Command]]. Compares the similarity of two strings diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala index 2de9e8e..4068c84 100755 --- a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala +++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala @@ -3,7 +3,7 @@ package org.hashtree.stringmetric.cli.command import org.hashtree.stringmetric.{ AsciiCaseStringCleaner, StringCleanerDelegate } import org.hashtree.stringmetric.cli._ import org.hashtree.stringmetric.cli.command._ -import org.hashtree.stringmetric.distance.HammingMetric +import org.hashtree.stringmetric.similarity.HammingMetric /** * The hammingMetric [[org.hashtree.stringmetric.cli.command.Command]]. Compares the number of characters that two equal diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala index a784214..28d7abb 100755 --- a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala +++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala @@ -3,7 +3,7 @@ package org.hashtree.stringmetric.cli.command import org.hashtree.stringmetric.{ AsciiCaseStringCleaner, StringCleanerDelegate } import org.hashtree.stringmetric.cli._ import org.hashtree.stringmetric.cli.command._ -import org.hashtree.stringmetric.distance.JaroMetric +import org.hashtree.stringmetric.similarity.JaroMetric /** * The jaroMetric [[org.hashtree.stringmetric.cli.command.Command]]. Compares two strings to calculate the diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala index d6b225e..1a031b3 100755 --- a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala +++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala @@ -3,7 +3,7 @@ package org.hashtree.stringmetric.cli.command import org.hashtree.stringmetric.{ AsciiCaseStringCleaner, StringCleanerDelegate } import org.hashtree.stringmetric.cli._ import org.hashtree.stringmetric.cli.command._ -import org.hashtree.stringmetric.distance.JaroWinklerMetric +import org.hashtree.stringmetric.similarity.JaroWinklerMetric /** * The jaroWinklerMetric [[org.hashtree.stringmetric.cli.command.Command]]. Compares two strings to calculate the diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala index 6f963f1..a4c917f 100755 --- a/cli/source/core/scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala +++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala @@ -3,7 +3,7 @@ package org.hashtree.stringmetric.cli.command import org.hashtree.stringmetric.{ AsciiCaseStringCleaner, StringCleanerDelegate } import org.hashtree.stringmetric.cli._ import org.hashtree.stringmetric.cli.command._ -import org.hashtree.stringmetric.distance.LevenshteinMetric +import org.hashtree.stringmetric.similarity.LevenshteinMetric /** * The levenshteinMetric [[org.hashtree.stringmetric.cli.command.Command]]. Compares the number of characters that two -- cgit v1.2.3