summaryrefslogtreecommitdiff
path: root/src/GF/Formalism
diff options
context:
space:
mode:
authorpeb <peb@cs.chalmers.se>2006-04-04 09:33:22 +0000
committerpeb <peb@cs.chalmers.se>2006-04-04 09:33:22 +0000
commitc437f63404dc0a4fdb42cd6eff661b071d3fca1d (patch)
treea455ae560107cdf92cc942bd61d124d3fcb67130 /src/GF/Formalism
parentf1000ca8c3c07f851f1f278fc75fdf7caec9848e (diff)
adding support for 2nd order functions in SimpleGFC format
Diffstat (limited to 'src/GF/Formalism')
-rw-r--r--src/GF/Formalism/GCFG.hs2
-rw-r--r--src/GF/Formalism/SimpleGFC.hs43
2 files changed, 28 insertions, 17 deletions
diff --git a/src/GF/Formalism/GCFG.hs b/src/GF/Formalism/GCFG.hs
index 1248208c0..9cf47637a 100644
--- a/src/GF/Formalism/GCFG.hs
+++ b/src/GF/Formalism/GCFG.hs
@@ -42,7 +42,7 @@ instance (Print c, Print n, Print l, Print t) => Print (Rule n c l t) where
instance (Print c, Print n) => Print (Abstract c n) where
prt (Abs cat args name) = prt name ++ ". " ++ prt cat ++
( if null args then ""
- else " -> " ++ prtSep " " args )
+ else " --> " ++ prtSep " " args )
instance (Print l, Print t) => Print (Concrete l t) where
prt (Cnc lcat args term) = prt term
diff --git a/src/GF/Formalism/SimpleGFC.hs b/src/GF/Formalism/SimpleGFC.hs
index 24e8e3f73..63a9ed43f 100644
--- a/src/GF/Formalism/SimpleGFC.hs
+++ b/src/GF/Formalism/SimpleGFC.hs
@@ -37,22 +37,29 @@ type SimpleRule c n t = Rule (Decl c) n (LinType c t) (Maybe (Term c t))
-- ** dependent type declarations
--- | 'Decl x c ts' == x is of type (c applied to ts)
-data Decl c = Decl Var c [TTerm]
- deriving (Eq, Ord, Show)
+-- 'Decl x c ts' == x is of type (c applied to ts)
+-- data Decl c = Decl Var c [TTerm]
+-- deriving (Eq, Ord, Show)
+
+-- | 'Decl x t' == 'x' is of type 't'
+data Decl c = Decl Var (AbsType c) deriving (Eq, Ord, Show)
+-- | '[t1..tn] ::--> t' == 't1 -> ... -> tn -> t'
+data AbsType c = [FOType c] ::--> FOType c deriving (Eq, Ord, Show)
+-- | 'c ::@ [t1..tn]' == '(c t1 ... tn)'
+data FOType c = c ::@ [TTerm] deriving (Eq, Ord, Show)
+
+-- including second order functions:
+-- (A -> B) ==> Decl _ ([A ::@ []] ::--> (B ::@ []))
+-- (x : A -> B -> C) ==> Decl x ([A ::@ [], B ::@ []] ::--> (C ::@ []))
+-- (y : A t x -> B (t x)) ==> Decl y ([A ::@ [t:@[],TVar x]] ::--> (B ::@ [t:@[TVar x]]))
+
+
data TTerm = Constr :@ [TTerm]
| TVar Var
deriving (Eq, Ord, Show)
-{-- andra ordningens funktioner:
-data Decl c = Decl Var [(c,[TTerm])] (c,[TTerm])
--- (A -> B) ==> Decl _ [(A,[])] (B,[])
--- (A -> B -> C) ==> Decl _ [(A,[]), (B,[])] (C,[])
--- (y : A t x -> B (t x)) ==> Decl y [(A,[t:@[],TVar x])] (B,[t:@[TVar x]])
--}
-
decl2cat :: Decl c -> c
-decl2cat (Decl _ cat _) = cat
+decl2cat (Decl _ (_ ::--> (cat ::@ _))) = cat
varsInTTerm :: TTerm -> [Var]
varsInTTerm tterm = vars tterm []
@@ -218,11 +225,15 @@ lintype2paths path (TblT pt vt) = concat [ lintype2paths (path ++! pat) vt |
-- * pretty-printing
instance Print c => Print (Decl c) where
- prt (Decl var cat args)
- | null args = prVar ++ prt cat
- | otherwise = "(" ++ prVar ++ prt cat ++ prtBefore " " args ++ ")"
- where prVar | var == anyVar = ""
- | otherwise = "?" ++ prt var ++ ":"
+ prt (Decl var typ) | var == anyVar = prt typ
+ | otherwise = "(?" ++ prt var ++ ":" ++ prt typ ++ ")"
+
+instance Print c => Print (AbsType c) where
+ prt ([] ::--> typ) = prt typ
+ prt (args ::--> typ) = "(" ++ prtAfter "->" args ++ prt typ ++ ")"
+
+instance Print c => Print (FOType c) where
+ prt (cat ::@ args) = prt cat ++ prtBefore " " args
instance Print TTerm where
prt (con :@ args)