summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-10-26 19:08:13 -0600
committerRocky Madden <git@rockymadden.com>2012-10-26 19:08:13 -0600
commitd1f5fd5438a6867edf873399b4683b935b33a8ef (patch)
tree64c54243065c1bb9605f3cf47c5cb0fdffda380c /cli
parent9f24c3ebbd923cfce281605ae0242a815c3f28f6 (diff)
downloadstringmetric-d1f5fd5438a6867edf873399b4683b935b33a8ef.tar.gz
stringmetric-d1f5fd5438a6867edf873399b4683b935b33a8ef.tar.bz2
stringmetric-d1f5fd5438a6867edf873399b4683b935b33a8ef.zip
Renamed distance package to similarity.
Diffstat (limited to 'cli')
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/command/diceSorensenMetric.scala2
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/command/hammingMetric.scala2
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroMetric.scala2
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/command/jaroWinklerMetric.scala2
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/command/levenshteinMetric.scala2
5 files changed, 5 insertions, 5 deletions
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