summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-11-17 10:47:36 -0700
committerRocky Madden <git@rockymadden.com>2012-11-17 10:47:36 -0700
commitbc40b9b4f51fc14f6855738a209c618e8370737a (patch)
tree54c667dadf1a60269332b382022c2852bf5a1275 /readme.md
parent4c56d519849e321501331f7265c36e1d6442b76f (diff)
downloadstringmetric-bc40b9b4f51fc14f6855738a209c618e8370737a.tar.gz
stringmetric-bc40b9b4f51fc14f6855738a209c618e8370737a.tar.bz2
stringmetric-bc40b9b4f51fc14f6855738a209c618e8370737a.zip
Less is more.
Diffstat (limited to 'readme.md')
-rwxr-xr-xreadme.md19
1 files changed, 2 insertions, 17 deletions
diff --git a/readme.md b/readme.md
index f1d745c..2b65c5c 100755
--- a/readme.md
+++ b/readme.md
@@ -2,10 +2,9 @@
A small library of string metrics and phonetic algorithms. Each has a command line interface and [Google Caliper](http://code.google.com/p/caliper/) microbenchmark suite.
* __Phonetic metrics__ determine if two arguments sound the same phonetically.
-* __Phonetic algorithms__ provide a means to determine the phonetic representation of the argument passed. All phonetic metrics have an algorithm counterpart.
+* __Phonetic algorithms__ determine the phonetic representation of the argument passed. All phonetic metrics have a standalone algorithm counterpart.
* __Similarity metrics__ determine the distance or coefficient between two arguments.
-* __Similarity algorithms__ provide a means to access underlying similarity metric functionality, when applicable. An example is the N-Gram algorithm, which provides a means to get n-grams for a given argument with a specific n.
-* __Filters__, which can optionally be applied to metrics and algorithms, clean up arguments prior to evaluation. Filtering rules can easily be combined via trait stacking.
+* __Filters__, which can optionally be applied to metrics and algorithms, clean up arguments prior to evaluation. Filters can be combined via trait stacking.
## Metrics and Algorithms
* __[Dice / Sorensen](http://en.wikipedia.org/wiki/Dice%27s_coefficient)__ (Similarity metric)
@@ -20,20 +19,6 @@ A small library of string metrics and phonetic algorithms. Each has a command li
* __[Soundex](http://en.wikipedia.org/wiki/Soundex)__ (Phonetic metric and algorithm)
* __Weighted Levenshtein__ (Similarity metric)
-## Filters
-* __Ensure only ASCII control characters matter__
-* __Ensure ASCII controls do not matter__
-* __Ensure ASCII letter case-sensitivity does not matter__
-* __Ensure only ASCII letters and numbers matter__
-* __Ensure ASCII letters and numbers do not matter__
-* __Ensure only ASCII letters matter__
-* __Ensure ASCII letters do not matter__
-* __Ensure only ASCII numbers matter__
-* __Ensure ASCII numbers do not matter__
-* __Ensure ASCII spaces do not matter__
-* __Ensure only ASCII symbols matter__
-* __Ensure ASCII symbols do not matter__
-
## Building the API
```shell
gradle :stringmetric-core:jar