Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
ZviRosenfeld committed Jan 17, 2020
1 parent 95fa089 commit 04b9f0d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ BestMatch2 = { "A", "B", "I", "D"}
- [Correlaters](#correlaters)
- [LevenshteinCorrelater\<T>](#levenshteincorrelater)
- [DamerauLevenshteinCorrelater\<T>](#dameraulevenshteincorrelater)
- [CorrelaterWrapper](#correlaterwrapper)
- [Optimizations](#optimizations)
- [SplitToChunksCorrelaterWrapper\<T>](#splittochunkscorrelaterwrapper)
- [IContinuousCorrelaters](#icontinuouscorrelaters)
- [OnProgressUpdate Event](#onprogressupdate-event)
Expand Down Expand Up @@ -140,10 +140,11 @@ class CharDistanceCalculator : IDistanceCalculator<char>

[DamerauLevenshteinCorrelater\<T>](IEnumerableCorrelater/Correlaters/DamerauLevenshteinCorrelater.cs) Finds the [DamerauLevenshteinDistance](https://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance) and best correlation between two collections.

## CorrelaterWrappers
## Optimizations

There are a number of ICorrelater\<T> that can be wrapped around the [base correlaters](#correlaters).
These wrappers can increase the base correlater's performance, or add other abilities.
Correlation of big collections can take a lot of time.
To solve this, there are a number of ICorrelater\<T> that can be wrapped around the [base correlaters](#correlaters).
These wrappers can greatly increase the base correlater's performance.

### SplitToChunksCorrelaterWrapper

Expand Down

0 comments on commit 04b9f0d

Please sign in to comment.