From 34c8934b5d5204241dae38995781c932dd5eacf1 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 16 Dec 2020 22:17:56 +0100 Subject: focus on notes, first --- notes/Makefile | 6 ++++++ notes/approach.dot | 13 +++++++++++++ notes/approach.png | Bin 0 -> 40516 bytes 3 files changed, 19 insertions(+) create mode 100644 notes/Makefile create mode 100644 notes/approach.dot create mode 100644 notes/approach.png (limited to 'notes') diff --git a/notes/Makefile b/notes/Makefile new file mode 100644 index 0000000..9b84114 --- /dev/null +++ b/notes/Makefile @@ -0,0 +1,6 @@ +approach.png: approach.dot + dot -Tpng $^ > $@ + +.PHONY: clean +clean: + rm -rf approach.png diff --git a/notes/approach.dot b/notes/approach.dot new file mode 100644 index 0000000..0bf3cbb --- /dev/null +++ b/notes/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/notes/approach.png b/notes/approach.png new file mode 100644 index 0000000..cce18d7 Binary files /dev/null and b/notes/approach.png differ -- cgit v1.2.3