summaryrefslogtreecommitdiff
path: root/grammars/ljung/thesis/CopyMorphism.gf
diff options
context:
space:
mode:
Diffstat (limited to 'grammars/ljung/thesis/CopyMorphism.gf')
-rw-r--r--grammars/ljung/thesis/CopyMorphism.gf22
1 files changed, 0 insertions, 22 deletions
diff --git a/grammars/ljung/thesis/CopyMorphism.gf b/grammars/ljung/thesis/CopyMorphism.gf
deleted file mode 100644
index 71faf1d99..000000000
--- a/grammars/ljung/thesis/CopyMorphism.gf
+++ /dev/null
@@ -1,22 +0,0 @@
-
--- the example 4.1 from Ljunglöf (2004, page 82)
-
-concrete CopyMorphism of CopyMorphismAbs = {
-
-lincat
-S = { s : Str };
-A = { s1 : Str; s2 : Str };
-
-lin
-
-f x = { s = x.s1 ++ x.s2 };
-
-g x y = { s1 = x.s1 ++ y.s1;
- s2 = x.s2 ++ y.s2 };
-
-ac = { s1 = "a"; s2 = "c" };
-
-bd = { s1 = "b"; s2 = "d" };
-
-
-}