]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Repr/Dup.hs
init
[haskell/symantic.git] / Language / Symantic / Repr / Dup.hs
1 -- | Interpreter to duplicate the representation of an expression
2 -- in order to evaluate it with different interpreters.
3 --
4 -- NOTE: this is a more verbose, less clear,
5 -- and maybe less efficient alternative
6 -- to maintaining the universal polymorphism of @repr@ at parsing time
7 -- as done with 'Forall_Repr_with_Context';
8 -- it is mainly here for the sake of curiosity.
9 module Language.Symantic.Repr.Dup where
10
11 import Language.Symantic.Expr
12
13 -- | Interpreter's data.
14 data Dup repr1 repr2 a
15 = Dup
16 { dup1 :: repr1 a
17 , dup2 :: repr2 a
18 }
19
20 instance -- Sym_Bool
21 ( Sym_Bool r1
22 , Sym_Bool r2
23 ) => Sym_Bool (Dup r1 r2) where
24 bool x = bool x `Dup` bool x
25 not (x1 `Dup` x2) = not x1 `Dup` not x2
26 (&&) (x1 `Dup` x2) (y1 `Dup` y2) = (&&) x1 y1 `Dup` (&&) x2 y2
27 (||) (x1 `Dup` x2) (y1 `Dup` y2) = (||) x1 y1 `Dup` (||) x2 y2
28 xor (x1 `Dup` x2) (y1 `Dup` y2) = xor x1 y1 `Dup` xor x2 y2
29 instance -- Sym_Int
30 ( Sym_Int r1
31 , Sym_Int r2
32 ) => Sym_Int (Dup r1 r2) where
33 int x = int x `Dup` int x
34 abs (x1 `Dup` x2) = abs x1 `Dup` abs x2
35 negate (x1 `Dup` x2) = negate x1 `Dup` negate x2
36 (+) (x1 `Dup` x2) (y1 `Dup` y2) = (+) x1 y1 `Dup` (+) x2 y2
37 (-) (x1 `Dup` x2) (y1 `Dup` y2) = (-) x1 y1 `Dup` (-) x2 y2
38 (*) (x1 `Dup` x2) (y1 `Dup` y2) = (*) x1 y1 `Dup` (*) x2 y2
39 mod (x1 `Dup` x2) (y1 `Dup` y2) = mod x1 y1 `Dup` mod x2 y2
40 instance -- Sym_Eq
41 ( Sym_Eq r1
42 , Sym_Eq r2
43 ) => Sym_Eq (Dup r1 r2) where
44 (==) (x1 `Dup` x2) (y1 `Dup` y2) = (==) x1 y1 `Dup` (==) x2 y2
45 instance -- Sym_Ord
46 ( Sym_Ord r1
47 , Sym_Ord r2
48 ) => Sym_Ord (Dup r1 r2) where
49 compare (x1 `Dup` x2) (y1 `Dup` y2) =
50 compare x1 y1 `Dup` compare x2 y2
51 instance -- Sym_If
52 ( Sym_If r1
53 , Sym_If r2
54 ) => Sym_If (Dup r1 r2) where
55 if_ (c1 `Dup` c2) (ok1 `Dup` ok2) (ko1 `Dup` ko2) =
56 if_ c1 ok1 ko1 `Dup` if_ c2 ok2 ko2
57 instance -- Sym_When
58 ( Sym_When r1
59 , Sym_When r2
60 ) => Sym_When (Dup r1 r2) where
61 when (c1 `Dup` c2) (ok1 `Dup` ok2) =
62 when c1 ok1 `Dup` when c2 ok2
63 instance -- Sym_List
64 ( Sym_List r1
65 , Sym_List r2
66 ) => Sym_List (Dup r1 r2) where
67 list_empty = list_empty `Dup` list_empty
68 list_cons (a1 `Dup` a2) (l1 `Dup` l2) = list_cons a1 l1 `Dup` list_cons a2 l2
69 list l =
70 let (l1, l2) =
71 foldr (\(x1 `Dup` x2) (xs1, xs2) ->
72 (x1:xs1, x2:xs2)) ([], []) l in
73 list l1 `Dup` list l2
74 instance -- Sym_List_Lam
75 ( Sym_List_Lam lam r1
76 , Sym_List_Lam lam r2
77 ) => Sym_List_Lam lam (Dup r1 r2) where
78 list_filter (f1 `Dup` f2) (l1 `Dup` l2) =
79 list_filter f1 l1 `Dup` list_filter f2 l2
80 instance -- Sym_Maybe
81 ( Sym_Maybe r1
82 , Sym_Maybe r2
83 ) => Sym_Maybe (Dup r1 r2) where
84 nothing = nothing `Dup` nothing
85 just (a1 `Dup` a2) = just a1 `Dup` just a2
86 instance -- Sym_Maybe_Lam
87 ( Sym_Maybe_Lam lam r1
88 , Sym_Maybe_Lam lam r2
89 ) => Sym_Maybe_Lam lam (Dup r1 r2) where
90 maybe (m1 `Dup` m2) (n1 `Dup` n2) (j1 `Dup` j2) =
91 maybe m1 n1 j1 `Dup`
92 maybe m2 n2 j2
93 instance -- Sym_Lambda
94 ( Sym_Lambda lam r1
95 , Sym_Lambda lam r2
96 ) => Sym_Lambda lam (Dup r1 r2) where
97 type Lambda_from_Repr (Dup r1 r2) = Lambda_from_Repr r1
98 app (f1 `Dup` f2) (x1 `Dup` x2) = app f1 x1 `Dup` app f2 x2
99 inline f = dup1 (inline f) `Dup` dup2 (inline f)
100 val f = dup1 (val f) `Dup` dup2 (val f)
101 lazy f = dup1 (lazy f) `Dup` dup2 (lazy f)
102 instance -- Sym_Tuple2
103 ( Sym_Tuple2 r1
104 , Sym_Tuple2 r2
105 ) => Sym_Tuple2 (Dup r1 r2) where
106 tuple2 (a1 `Dup` a2) (b1 `Dup` b2) =
107 tuple2 a1 b1 `Dup` tuple2 a2 b2
108 instance -- Sym_Map
109 ( Sym_Map r1
110 , Sym_Map r2
111 ) => Sym_Map (Dup r1 r2) where
112 map_from_list (l1 `Dup` l2) =
113 map_from_list l1 `Dup` map_from_list l2
114 instance -- Sym_Map_Lam
115 ( Sym_Map_Lam lam r1
116 , Sym_Map_Lam lam r2
117 ) => Sym_Map_Lam lam (Dup r1 r2) where
118 map_map (f1 `Dup` f2) (m1 `Dup` m2) =
119 map_map f1 m1 `Dup` map_map f2 m2