From f4452a9f57482f233fe637a939abfe4f38508545 Mon Sep 17 00:00:00 2001 From: fhackett Date: Tue, 1 Nov 2022 12:25:47 -0700 Subject: study of Koka store effect --- entries/fhackett/fib.kk | 83 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 entries/fhackett/fib.kk diff --git a/entries/fhackett/fib.kk b/entries/fhackett/fib.kk new file mode 100644 index 0000000..e4d8107 --- /dev/null +++ b/entries/fhackett/fib.kk @@ -0,0 +1,83 @@ + +effect store { + fun put(key: k, value: v): () + fun get(key: k): maybe +} + +fun no-store(body: () -> ,div|e> t): t { + with handler { + fun get(key) Nothing + fun put(key, value) {} + } in { + body() + } +} + +fun list-store(eq: (k,k) -> total bool, body: () -> ,div|e> t): t { + var data := Nil + with handler { + fun get(key) { + data.lookup fn(candidate-key) key.eq(candidate-key) + } + fun put(key, value) { + data := Cons((key, value), data.filter(fn((kk, _)) !kk.eq(key))) + } + } in { + body() + } +} + +fun pair-store(body: () -> ,div|e> t): t { + var first := 0 + var second := 1 + var idx := 1 + + with handler { + fun get(key) { + if idx == key then Just(second) + else if idx - 1 == key then Just(first) + else Nothing + } + fun put(key, value) { + if key == idx + 1 then { + idx := idx + 1 + first := second + second := value + } else { + println("error: " ++ key.show ++ " := " ++ value.show ++ "; " ++ first.show ++ ", " ++ second.show ++ ", " ++ idx.show) + } + } + } in { + mask(body) + } +} + +fun fib(n: int): > int { + match get(n) { + Just(result) -> result + Nothing -> + match n { + 0 -> 0 + 1 -> 1 + _ -> + val result = fib(n - 2) + fib(n - 1) + put(n, result) + result + } + } +} + +pub fun fib-naive(n: int): div int { + with no-store + fib(n) +} + +pub fun fib-list(n: int): div int { + with list-store(fn(a: int, b: int) a == b) + fib(n) +} + +pub fun fib-pair(n: int): int { + with pair-store + fib(n) +} -- cgit v1.2.3-70-g09d2 From 3269b7e76a029b3a86f5f2e7291c55fd3d223604 Mon Sep 17 00:00:00 2001 From: fhackett Date: Tue, 1 Nov 2022 12:28:37 -0700 Subject: add myself to people.json --- people.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/people.json b/people.json index 4561b11..42d580b 100644 --- a/people.json +++ b/people.json @@ -93,6 +93,17 @@ } ] }, + { + "github": "fhackett", + "name": "Finn Hackett", + "title": "PhD Student, UBC", + "entries": [ + { + "name": "koka-store", + "link": "./entries/fhackett/fib.kk" + } + ] + }, { "github": "funemy", "name": "Yanze Li", -- cgit v1.2.3-70-g09d2