diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-21 01:09:48 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-21 01:09:48 +0100 |
commit | 3ab4829870a90d7a3a7c359436776e0a96370ba5 (patch) | |
tree | 349ee9f947378207d2a0b0f60c9a6ffc2d2e2ab2 /docs | |
parent | d2d73dac0bc408719be0e9e142e4d946a050bbed (diff) | |
download | fuzzycat-3ab4829870a90d7a3a7c359436776e0a96370ba5.tar.gz fuzzycat-3ab4829870a90d7a3a7c359436776e0a96370ba5.zip |
get rid of static folder
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile | 6 | ||||
-rw-r--r-- | docs/approach.dot | 13 | ||||
-rw-r--r-- | docs/approach.png | bin | 0 -> 40516 bytes |
3 files changed, 19 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..9b84114 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,6 @@ +approach.png: approach.dot + dot -Tpng $^ > $@ + +.PHONY: clean +clean: + rm -rf approach.png diff --git a/docs/approach.dot b/docs/approach.dot new file mode 100644 index 0000000..0bf3cbb --- /dev/null +++ b/docs/approach.dot @@ -0,0 +1,13 @@ +digraph f { + "matching" -> "strings"; + "matching" -> "entities"; + + "strings" -> "lookups"; + "strings" -> "normalization"; + "strings" -> "fuzzy"; + + "entities" -> "identifiers"; + "entities" -> "field subsets"; + + "field subsets" -> "strings"; +} diff --git a/docs/approach.png b/docs/approach.png Binary files differnew file mode 100644 index 0000000..cce18d7 --- /dev/null +++ b/docs/approach.png |