From 8f063f9547ebcbef1e7ece25295a5754be4c33e1 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sat, 15 Aug 2020 17:42:03 +0200 Subject: add extra files --- static/Makefile | 6 ++++++ static/approach.dot | 11 +++++++++++ static/approach.png | Bin 0 -> 35562 bytes 3 files changed, 17 insertions(+) create mode 100644 static/Makefile create mode 100644 static/approach.dot create mode 100644 static/approach.png (limited to 'static') diff --git a/static/Makefile b/static/Makefile new file mode 100644 index 0000000..9b84114 --- /dev/null +++ b/static/Makefile @@ -0,0 +1,6 @@ +approach.png: approach.dot + dot -Tpng $^ > $@ + +.PHONY: clean +clean: + rm -rf approach.png diff --git a/static/approach.dot b/static/approach.dot new file mode 100644 index 0000000..9360ffe --- /dev/null +++ b/static/approach.dot @@ -0,0 +1,11 @@ +digraph f { + "matching" -> "strings"; + "matching" -> "entities"; + + "strings" -> "lookups"; + "strings" -> "normalization"; + "strings" -> "fuzzy"; + + "entities" -> "identifiers"; + "entities" -> "string subsets"; +} diff --git a/static/approach.png b/static/approach.png new file mode 100644 index 0000000..d4ea579 Binary files /dev/null and b/static/approach.png differ -- cgit v1.2.3