Jonathan Graveline pushed to branch graveline at Stefan / Typer
Commits: 572470f8 by Jonathan Graveline at 2018-07-27T05:30:17Z `plain-let` (not recursive nor sequential) without grammar yet
- - - - - 84261c57 by Jonathan Graveline at 2018-07-27T06:20:33Z keep count of `insert`/`remove` for faster `length` calculation
- - - - - 4d149272 by Jonathan Graveline at 2018-07-27T06:22:26Z use `if ... then ... else ...` syntax where appropriate
- - - - - 0ab2e43c by Jonathan Graveline at 2018-07-27T12:39:23Z Minimal built-in functions for unit tests in Typer
- - - - - 14f1aafb by Jonathan Graveline at 2018-07-30T20:57:35Z Correction of some unit test primitive (put action in `Vcommand` and set to correct type)
New primitive Integer->String (useful with Sexp_dispatch)
- - - - - e1917e8b by Jonathan Graveline at 2018-07-30T21:05:01Z Don't print related name with the single character symbol "_"
Added boolean operation from samples/bool.typer to pervasive.typer
- - - - - 35f6bc54 by Jonathan Graveline at 2018-07-30T21:09:57Z *polyfun.typer: Implicit `case` at function definition level (macro not working if at top-level, but working in `let`)
- - - - - a9f1a0dd by Jonathan Graveline at 2018-07-30T21:13:49Z macro for tuple creation and access (more to come) (`_,_` not working yet, temporarily using `_:_`)
- - - - -
12 changed files:
- btl/builtins.typer - btl/case.typer - btl/do.typer - btl/pervasive.typer - + btl/plain-let.typer - + btl/polyfun.typer - + btl/tuple.typer - samples/bbst.typer - samples/table.typer - src/debruijn.ml - src/eval.ml - src/util.ml
Changes:
===================================== btl/builtins.typer ===================================== @@ -134,6 +134,8 @@ Integer_eq = Built-in "Integer.=" : Integer -> Integer -> Bool; Integer_<= = Built-in "Integer.<=" : Integer -> Integer -> Bool; Integer_>= = Built-in "Integer.>=" : Integer -> Integer -> Bool;
+Integer->String = Built-in "Integer->String" : Integer -> String; + Float_+ = Built-in "Float.+" : Float -> Float -> Float; Float_- = Built-in "Float.-" : Float -> Float -> Float; Float_* = Built-in "Float.*" : Float -> Float -> Float; @@ -262,4 +264,24 @@ Elab_isbound = Built-in "Elab.isbound" : String -> Elab_Context -> Bool; Elab_isconstructor = Built-in "Elab.isconstructor" : String -> Elab_Context -> Bool;
+%%%% Unit test helper IO + +%% Print message and/or fail (terminate) +%% These message are registered like any other error + +Test_fatal = Built-in "Test.fatal" : String -> String -> IO Unit; +Test_warning = Built-in "Test.warning" : String -> String -> IO Unit; +Test_info = Built-in "Test.info" : String -> String -> IO Unit; + +%% Get a string representing location of call ("file:line:column") + +Test_location = Built-in "Test.location" : Unit -> String; + +%% Do some test which print a message + +Test_true = Built-in "Test.true" : String -> Bool -> IO Bool; +Test_false = Built-in "Test.false" : String -> Bool -> IO Bool; +Test_eq = Built-in "Test.eq" : (a : Type) ≡> String -> a -> a -> IO Bool; +Test_neq = Built-in "Test.neq" : (a : Type) ≡> String -> a -> a -> IO Bool; + %%% builtins.typer ends here.
===================================== btl/case.typer ===================================== @@ -85,7 +85,8 @@ is-dflt : Var -> Bool; is-dflt v = Sexp_eq dflt-var v;
%% -%% Get pattern to match +%% Get pattern to match as a List of pair +%% with all patterns and the user code for each branches %%
get-branches : List Sexp -> List (Pair Pats Code); @@ -122,9 +123,12 @@ renamed-pat pat names = let
mf : Sexp -> Int -> Sexp; mf v i = Sexp_dispatch v - (lambda sym ss -> if_then_else_ (Sexp_eq sym (Sexp_symbol "_:=_")) - (Sexp_node sym (cons (List_nth 0 ss Sexp_error) (cons (List_nth i names Sexp_error) nil))) - (List_nth i names Sexp_error)) + (lambda sym ss -> + if (Sexp_eq sym (Sexp_symbol "_:=_")) + then + (Sexp_node sym (cons (List_nth 0 ss Sexp_error) (cons (List_nth i names Sexp_error) nil))) + else + (List_nth i names Sexp_error)) (lambda _ -> List_nth i names Sexp_error) serr serr serr serr;
@@ -133,12 +137,6 @@ in return (Sexp_dispatch pat (lambda s -> Sexp_symbol s) serr serr serr serr);
-%%% -%%% -%%% -%%% -%%% - %% %% Takes an Sexp as argument and return `IO true` if it is a pattern %% (i.e. a constructor with or without argument) @@ -203,12 +201,7 @@ introduced-vars pat = let (lambda s ss -> do { o <- o; % bind if_then_else_ (Sexp_eq s (Sexp_symbol "_:=_")) - %% (if_then_else_ (Sexp_eq (List_nth 0 ss Var_error) dflt-var) - %% (return (List_concat o (cons dflt-var nil))) (return (List_concat o (cons (List_nth 1 ss Var_error) nil))) - %% there's no introduced variable here - %% `case` on sub pattern will introduce new variable - %% but not here (return (List_concat o (cons dflt-var nil))); }) (lambda s -> do { @@ -288,10 +281,8 @@ in Sexp_dispatch pat return r; }) (lambda sym -> do { - %% %% constructor has no argument %% so there can't be any sub pattern - %% return nil; }) err err err err; @@ -331,10 +322,8 @@ pattern-sub-pats-vars rvars branches = let (return (List_mapi (lambda c n -> let new-sym = List_nth n rvars Var_error; prev-sym = List_nth n psubs dflt-var; - in if_then_else_ (is-dflt c) - (prev-sym) - (new-sym) - ) subs)); + in if_then_else_ (is-dflt c) (prev-sym) (new-sym) + ) subs)); };
in List_foldl ff (return nil) pats; @@ -351,9 +340,11 @@ pattern-term : Pat -> List Var -> IO (List (Pair Var Var)); pattern-term pat rvars = let
ff : List (Pair Var Var) -> Var -> Var -> List (Pair Var Var); - ff o v0 v1 = if_then_else_ (is-dflt v0) - (o) - (List_concat o (cons (pair v0 v1) nil)) + ff o v0 v1 = + if (is-dflt v0) then + (o) + else + (List_concat o (cons (pair v0 v1) nil));
in do { ivars <- introduced-vars pat; @@ -372,7 +363,7 @@ in do { part-type = Pair (Triplet Pat (List Var) (List (Pair Pat (List (Pair Var Var))))) (List (Pair Pats Code));
%% -%% return a pair of renamed and patitioned pattern +%% return a pair of renamed and partitioned pattern %% (i.e. a Pair of renamed pattern, introduced variables, old pattern and tail of branches) %% (Yeah, I need old pattern to get sub pattern at some point) %% @@ -401,7 +392,7 @@ partition-branches branches = let %% %% Type for first step partition %% - %% Pair of List sorted with similar hd (hd as in `fst`) + %% Pair of List sorted with similar head (head as in first) %%
pre-part-type = Pair (List Pat) (List (Pair Pats Code)); @@ -416,18 +407,22 @@ partition-branches branches = let ff o p = case p | pair pat tail => (case o | nil => cons (pair (cons pat nil) (cons tail nil)) nil | cons part parts => (case part | pair ps _ => - if_then_else_ (is-dflt pat) - %% default is both equivalent and different from every pattern? - %% the are merged with `merge-dflt` - (case part | pair pp tt => cons - (pair (List_concat pp (cons pat nil)) - (List_concat tt (cons tail nil))) - (ff parts p)) %% This line sometimes produce too many patterns - (if_then_else_ (is-similar pat (List_nth 0 ps Pat_error)) + + %% default is both equivalent and different from every pattern? + %% they are merged with `merge-dflt` + + if (is-dflt pat) then + (case part | pair pp tt => cons + (pair (List_concat pp (cons pat nil)) + (List_concat tt (cons tail nil))) + (ff parts p)) % This line sometimes produce too many patterns + else + (if (is-similar pat (List_nth 0 ps Pat_error)) then (case part | pair pp tt => cons (pair (List_concat pp (cons pat nil)) (List_concat tt (cons tail nil))) parts) + else (cons part (ff parts p)))));
in List_foldl ff nil hd-pair; @@ -489,20 +484,24 @@ merge-dflt parts odflt = let
in case parts | cons part parts => (case part | pair p pp => - (case p | triplet pat _ vars => if_then_else_ (is-dflt pat) - (case odflt - | some dflt => merge-dflt parts (some (append pat vars pp dflt)) - | none => merge-dflt parts (some part)) - (case odflt - %% merge previous default to all branches - | some dflt => cons (preppend pat vars pp dflt) (merge-dflt parts odflt) - | none => cons part (merge-dflt parts odflt)))) + (case p | triplet pat _ vars => + if (is-dflt pat) then + (case odflt + | some dflt => merge-dflt parts (some (append pat vars pp dflt)) + | none => merge-dflt parts (some part)) + else + (case odflt + %% merge previous default to all branches + | some dflt => cons (preppend pat vars pp dflt) (merge-dflt parts odflt) + | none => cons part (merge-dflt parts odflt)))) | nil => (case odflt | some dflt => (cons dflt nil) | none => nil);
+%% %% takes some branches and preppend default variable to smaller branches - +%% + adjust-len : List (Pair Pats Code) -> List (Pair Pats Code); adjust-len branches = let
@@ -511,9 +510,11 @@ adjust-len branches = let
ff : Int -> Pair Pats Code -> Int; ff n branch = case branch - | pair pats _ => if_then_else_ (Int_< n (List_length pats)) - (List_length pats) - (n); + | pair pats _ => + if (Int_< n (List_length pats)) then + (List_length pats) + else + (n);
in List_foldl ff 0 branches;
@@ -521,9 +522,11 @@ adjust-len branches = let preppend-dflt n branch = let
sup : Int -> Pats; - sup n = if_then_else_ (Int_eq n 0) - (nil) - (cons dflt-var (sup (n - 1))); + sup n = + if (Int_eq n 0) then + (nil) + else + (cons dflt-var (sup (n - 1)));
in case branch | pair pats code => pair (List_concat (sup (n - (List_length pats))) pats) code; @@ -683,9 +686,11 @@ rec-case args = let %% Only the Sexp after "_|_" are interesting
case1 : Sexp -> List Sexp -> IO Sexp; - case1 s ss = if_then_else_ (Sexp_eq (Sexp_symbol "_|_") s) - (case0 ss) - (IO_return Sexp_error); + case1 s ss = + if (Sexp_eq (Sexp_symbol "_|_") s) then + (case0 ss) + else + (IO_return Sexp_error);
err = (lambda _ -> IO_return Sexp_error);
===================================== btl/do.typer ===================================== @@ -25,12 +25,10 @@ get-sym sexp = let dflt-sym = (lambda _ -> (Sexp_symbol " %not used% "));
in Sexp_dispatch sexp - - ( lambda s ss -> if_then_else_ (Sexp_eq (List_nth 0 ss Sexp_error) assign) - (s) - (dflt-sym ()) - ) - + (lambda s ss -> if (Sexp_eq (List_nth 0 ss Sexp_error) assign) then + (s) + else + (dflt-sym ())) dflt-sym dflt-sym dflt-sym dflt-sym dflt-sym; % there must be a command
@@ -41,9 +39,10 @@ get-op sexp = let
helper = (lambda sexp -> Sexp_dispatch sexp
- ( lambda s ss -> if_then_else_ (Sexp_eq (List_nth 0 ss Sexp_error) assign) - (Sexp_node (List_nth 1 ss Sexp_error) (List_tail (List_tail ss))) - (Sexp_node s ss) + ( lambda s ss -> if (Sexp_eq (List_nth 0 ss Sexp_error) assign) then + (Sexp_node (List_nth 1 ss Sexp_error) (List_tail (List_tail ss))) + else + (Sexp_node s ss) )
as-is as-is as-is as-is as-is @@ -51,7 +50,7 @@ get-op sexp = let
op = (helper sexp);
-in if_then_else_ (Sexp_eq op (Sexp_symbol "")) Sexp_error op; +in if (Sexp_eq op (Sexp_symbol "")) then Sexp_error else op;
get-decl : List Sexp -> List Sexp; get-decl args = let
===================================== btl/pervasive.typer ===================================== @@ -378,7 +378,7 @@ BoolMod = (##datacons %% %% typecons _ (cons (τ₁ : Type) (t : τ₁) %% (τ₂ : Type) (true : τ₂) - %% (τ₃ : Type) (false : τ₃) + %% (τ₃ : Type) (false : τ₃)) %% %% And it's actually even worse because it tries to generalize %% over the level of those `Type`s, so we end up with an invalid @@ -488,6 +488,28 @@ if_then_else_ | true => uquote e2 | false => uquote e3)));
+%%%% More boolean + +%% FIXME: Type annotations should not be needed below. +not : Bool -> Bool; +%% FIXME: We use braces here to delay parsing, otherwise the if/then/else +%% part of the grammar declared above is not yet taken into account. +not x = { if x then false else true }; + +or : Bool -> Bool -> Bool; +or x y = { if x then x else y }; + +and : Bool -> Bool -> Bool; +and x y = { if x then y else x }; + +xor : Bool -> Bool -> Bool; +xor x y = { if x then (not y) else y }; + +%% FIXME: Can't use ?a because that is generalized to be universe-polymorphic, +%% which we don't support in `load` yet. +fold : Bool -> (a : Type) ≡> a -> a -> a; +fold x t e = { if x then t else e}; + %%%% Test test1 : ?; test2 : Option Int;
===================================== btl/plain-let.typer ===================================== @@ -0,0 +1,110 @@ +%%%% +%%%% Macro `plain-let` +%%%% +%%%% normal `let` but not recursive nor sequential +%%%% + +io-serr = lambda _ -> IO_return Sexp_error; + +serr = lambda _ -> Sexp_error; + +xserr = lambda _ -> (nil : List Sexp); + +List_nth = list.nth; +List_fold2 = list.fold2; +List_map = list.map; +List_foldl = list.foldl; +List_reverse = list.reverse; +List_tail = list.tail; + +impl : List Sexp -> IO Sexp; +impl args = let + + gen-sym : Sexp -> IO Sexp; + gen-sym arg = Sexp_dispatch arg + (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_=_")) then + (gensym ()) else + (IO_return Sexp_error)) + io-serr io-serr io-serr io-serr io-serr; + + get-def : Sexp -> Sexp; + get-def arg = Sexp_dispatch arg + (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_=_")) then + (List_nth 1 ss Sexp_error) else + (Sexp_error)) + serr serr serr serr serr; + + get-var : Sexp -> Sexp; + get-var arg = Sexp_dispatch arg + (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_=_")) then + (List_nth 0 ss Sexp_error) else + (Sexp_error)) + serr serr serr serr serr; + + get-sym-def : List Sexp -> IO (List (Pair Sexp Sexp)); + get-sym-def args = do { + r <- List_foldl (lambda o arg -> do { + o <- o; + sym <- gen-sym arg; + def <- IO_return (get-def arg); + IO_return (cons (pair sym def) o); % order doesn't matter + }) (IO_return nil) args; + IO_return r; + }; + + get-var-sym : List Sexp -> List (Pair Sexp Sexp) -> IO (List (Pair Sexp Sexp)); + get-var-sym args syms = let + + ff : IO (List (Pair Sexp Sexp)) -> Pair Sexp Sexp -> Sexp -> IO (List (Pair Sexp Sexp)); + ff o p arg = do { + o <- o; + sym <- IO_return (case p | pair s _ => s); + var <- IO_return (get-var arg); + IO_return (cons (pair var sym) o); + }; + + in do { + r <- List_fold2 ff (IO_return nil) syms args; + IO_return r; + }; + + let-in : Sexp -> Sexp -> Sexp; + let-in decls body = Sexp_node (Sexp_symbol "let_in_") (cons decls (cons body nil)); + + let-decls : List Sexp -> Sexp; + let-decls decls = Sexp_node (Sexp_symbol "_;_") decls; + + gen-code : List (Pair Sexp Sexp) -> List (Pair Sexp Sexp) -> Sexp -> Sexp; + gen-code sym-def var-sym body = let + + mf : Pair Sexp Sexp -> Sexp; + mf p = case p | pair s0 s1 => + Sexp_node (Sexp_symbol "_=_") (cons s0 (cons s1 nil)); + + decls0 = List_map mf sym-def; + + decls1 = List_map mf var-sym; + + in let-in (let-decls decls0) (let-in (let-decls decls1) body); + + get-decls : Sexp -> List Sexp; + get-decls sexp = Sexp_dispatch sexp + (lambda s ss -> if (Sexp_eq s (Sexp_symbol "_;_")) then + (ss) else + (nil)) + xserr xserr xserr xserr xserr; + +in do { + defs <- IO_return (get-decls (List_nth 0 args Sexp_error)); + body <- IO_return (List_nth 1 args Sexp_error); + sym-def <- get-sym-def defs; + sym-def <- IO_return (List_reverse (List_tail sym-def) nil); + var-sym <- get-var-sym defs sym-def; + IO_return (gen-code sym-def var-sym body); +}; + +plain-let_in_ = macro (lambda args -> do { + r <- impl args; + r <- Sexp_debug_print r; + IO_return r; +});
===================================== btl/polyfun.typer ===================================== @@ -0,0 +1,94 @@ +%%%% +%%%% Polymorphic function +%%%% +%%%% (Just a `case` at function definition level) +%%%% + +serr = lambda _ -> Sexp_error; + +xserr = lambda a ≡> lambda s -> (nil : List a); + +%% List_nth = list.nth; +%% List_map = list.map; +%% List_tail = list.tail; + +%% Not working because of `_=_` and `_;_` +%% I don't know what the right syntax for the declaration to be top-level + +fun-decl : Sexp -> Sexp -> Sexp; +fun-decl decl body = Sexp_node (Sexp_symbol "_;_") (cons (quote ( + (uquote decl) = (uquote body) +)) nil); + +%% Sexp_node (Sexp_symbol "_;_") (cons +%% (Sexp_node (Sexp_symbol "_=_") (cons decl (cons body nil))) +%% nil); + +fun-args : Sexp -> List Sexp; +fun-args decl = Sexp_dispatch decl + (lambda s ss -> let + + mf : Sexp -> Sexp; + mf arg = Sexp_dispatch arg + (lambda s ss -> + if (Sexp_eq s (Sexp_symbol "_:_")) then + (List_nth 0 ss Sexp_error) + else + (Sexp_node s ss)) + (lambda s -> Sexp_symbol s) + serr serr serr serr; + + in List_map mf ss) + xserr xserr xserr xserr xserr; + +fun-cases : List Sexp -> List (Pair (List Sexp) Sexp); +fun-cases args = let + + node2list : Sexp -> List Sexp; + node2list node = Sexp_dispatch node + (lambda s ss -> cons s ss) + xserr xserr xserr xserr xserr; + + mf : Sexp -> Pair (List Sexp) Sexp; + mf arg = let + + err = lambda _ -> pair nil Sexp_error; + + in Sexp_dispatch arg + (lambda s ss -> + if (Sexp_eq s (Sexp_symbol "_=>_")) then + (pair (node2list (List_nth 0 ss Sexp_error)) (List_nth 1 ss Sexp_error)) + else + (err ())) + err err err err err; + +in List_map mf args; + +cases-to-sexp : List Sexp -> List (Pair (List Sexp) Sexp) -> Sexp; +cases-to-sexp vars cases = let + + mf : Pair (List Sexp) Sexp -> Sexp; + mf p = case p | pair xs body => + Sexp_node (Sexp_symbol "_=>_") + (cons (Sexp_node (Sexp_symbol "_,_") xs) + (cons body nil)); + +in Sexp_node (Sexp_symbol "case_") (cons + (Sexp_node (Sexp_symbol "_|_") (cons + (Sexp_node (Sexp_symbol "_,_") vars) + (List_map mf cases))) nil); + +_|_ = macro (lambda args -> let + + decl : Sexp; + decl = List_nth 0 args Sexp_error; + + fargs : List Sexp; + fargs = fun-args decl; + + cases : List (Pair (List Sexp) Sexp); + cases = fun-cases (List_tail args); + +in do { + IO_return (fun-decl decl (cases-to-sexp fargs cases)); +});
===================================== btl/tuple.typer ===================================== @@ -0,0 +1,137 @@ +%%%% +%%%% macro '_,_' for tuple +%%%% + +%% +%% Sample tuple: a module holding Bool and its constructors. +%% +%% We need the `?` metavars to be lexically outside of the +%% `typecons` expression, otherwise they end up generalized, so +%% we end up with a type constructor like +%% +%% typecons _ (cons (τ₁ : Type) (t : τ₁) +%% (τ₂ : Type) (true : τ₂) +%% (τ₃ : Type) (false : τ₃)) +%% +%% And it's actually even worse because it tries to generalize +%% over the level of those `Type`s, so we end up with an invalid +%% inductive type. +%% +%% BoolMod = (##datacons +%% ((lambda t1 t2 t3 +%% -> typecons _ (cons (t :: t1) (true :: t2) (false :: t3))) +%% ? ? ?) +%% cons) +%% (_ := Bool) (_ := true) (_ := false); +%% + +%% List_nth = list.nth; +%% List_map = list.map; +%% List_mapi = list.mapi; +%% List_map2 = list.map2; +%% List_concat = list.concat; + +%% Move IO outside List (from element to List) +%% (Was helpful for me when translating code that used to not be IO code) +%% (The function's type explain everything) +io-list : List (IO ?a) -> IO (List ?a); +io-list l = let + ff : IO (List ?a) -> IO ?a -> IO (List ?a); + ff o v = do { + o <- o; + v <- v; + IO_return (cons v o); + }; +in do { + l <- (List_foldl ff (IO_return nil) l); + IO_return (List_reverse l nil); +}; + +%% +%% Generate a List of pseudo-unique symbol +%% +%% Takes a List of Sexp and generate a List of new name of the same length +%% whatever are the element of the List +%% + +gen-vars : List Sexp -> IO (List Sexp); +gen-vars vars = io-list (List_map + (lambda _ -> gensym ()) + vars); + +gen-tuple-names : List Sexp -> List Sexp; +gen-tuple-names vars = List_mapi + (lambda _ i -> Sexp_symbol (String_concat "%" (Int->String i))) + vars; + +gen-deduce : List Sexp -> List Sexp; +gen-deduce vars = List_map + (lambda _ -> Sexp_symbol "?") + vars; + +make-tuple : List Sexp -> IO Sexp; +make-tuple values = let + + mf1 : Sexp -> Sexp -> Sexp; + mf1 name value = Sexp_node (Sexp_symbol "_::_") (cons name (cons value nil)); + + mf2 : Sexp -> Sexp; + mf2 value = Sexp_node (Sexp_symbol "_:=_") (cons (Sexp_symbol "_") (cons value nil)); + +in do { + args <- gen-vars values; + names <- IO_return (gen-tuple-names values); + fun <- IO_return (Sexp_node (Sexp_symbol "lambda_->_") + (cons (Sexp_node (List_nth 0 args Sexp_error) (List_tail args)) (cons + (Sexp_node (Sexp_symbol "typecons") (cons (Sexp_symbol "_") + (cons (Sexp_node (Sexp_symbol "cons") (List_map2 mf1 names args)) nil))) + nil)) + ); + call-fun <- IO_return (Sexp_node fun (gen-deduce values)); + tuple <- IO_return (Sexp_node (Sexp_symbol "##datacons") + (cons call-fun (cons (Sexp_symbol "cons") nil))); + affect <- IO_return (Sexp_node tuple (List_map mf2 values)); + IO_return affect; +}; + +_:_ = macro (lambda args -> + make-tuple args +); + +%%% +%%% Access one tuple's element +%%% + +%% tuple_nth : (tup-type : Type) ≡> (elem-type : Type) ≡> tup-type -> Int -> elem-type; + +tuple_nth = macro (lambda args -> let + + nerr = lambda _ -> (Int->Integer (-1)); + + n : Integer; + n = Sexp_dispatch (List_nth 1 args Sexp_error) + (lambda _ _ -> nerr ()) + nerr nerr + (lambda n -> n) + nerr nerr; + + elem-sym : Sexp; + elem-sym = Sexp_symbol (String_concat "%" (Integer->String n)); + + tup : Sexp; + tup = List_nth 0 args Sexp_error; + +in IO_return (Sexp_node (Sexp_symbol "__.__") (cons tup (cons elem-sym nil))) +); + +%%% +%%% Affectation, unwraping tuple +%%% + +%% _=_ = macro (lambda args -> +%% +%% ); + + + +
===================================== samples/bbst.typer ===================================== @@ -23,7 +23,7 @@ type BbsTree (a : Type) %%
type Bbst (a : Type) - | bbst (c : a -> a -> Bool) (t : BbsTree a); + | bbst (s : Int) (c : a -> a -> Bool) (t : BbsTree a);
%% %% Fold the tree in an unspecified order @@ -55,7 +55,7 @@ fold f o t = let | node-leaf => o;
in case t - | bbst c t => helper f o t; + | bbst _ c t => helper f o t;
%% %% Fold the tree leftmost element first @@ -89,12 +89,12 @@ foldl f o t = let | node-leaf => o;
in case t - | bbst c t => helper f o t; + | bbst _ c t => helper f o t;
%% %% Fold the tree rightmost element first %% -%% (If comparator is ">=" then it fold the biggest first) +%% (If comparator is "<=" then it fold the biggest first) %%
foldr : (b : Type) ≡> (a : Type) ≡> (b -> a -> b) -> b -> Bbst a -> b; @@ -123,13 +123,17 @@ foldr f o t = let | node-leaf => o;
in case t - | bbst c t => helper f o t; + | bbst _ c t => helper f o t;
%% %% Get the number of element in the tree %%
-length = fold (lambda len _ -> len + 1) 0; +%% length = fold (lambda len _ -> len + 1) 0; + +length : (a : Type) ≡> Bbst a -> Int; +length tree = case tree + | bbst s _ _ => s;
%% %% Is the tree empty? @@ -146,6 +150,63 @@ comp-equal comp x y = if_then_else_ (comp x y) (comp y x) (false);
+%% +%% Find an element in the tree and return it +%% + +find : (a : Type) ≡> a -> Bbst a -> Option a; +find elem tree = let + + helper : (a -> a -> Bool) -> a -> BbsTree a -> Option a; + helper comp elem tree = case tree + | node2 d0 l0 l1 => + if_then_else_ (comp elem d0) + (if_then_else_ (comp d0 elem) + (some d0) + (helper comp elem l0)) + (helper comp elem l1) + | node3 d0 d1 l0 l1 l2 => + if_then_else_ (comp elem d0) + (if_then_else_ (comp d0 elem) + (some d0) + (helper comp elem l0)) + (if_then_else_ (comp elem d1) + (if_then_else_ (comp d1 elem) + (some d1) + (helper comp elem l1)) + (helper comp elem l2)) + | node4 d0 d1 d2 l0 l1 l2 l3 => + if_then_else_ (comp elem d0) + (if_then_else_ (comp d0 elem) + (some d0) + (helper comp elem l0)) + (if_then_else_ (comp elem d1) + (if_then_else_ (comp d1 elem) + (some d1) + (helper comp elem l1)) + (if_then_else_ (comp elem d2) + (if_then_else_ (comp d2 elem) + (some d2) + (helper comp elem l2)) + (helper comp elem l3))) + | node-leaf => none; + +in case tree + | bbst _ c t => helper c elem t; + +%% +%% Is elem in the tree? +%% + +member : (a : Type) ≡> a -> Bbst a -> Bool; +member elem tree = let + + oe = find elem tree; + +in case oe + | some _ => true + | none => false; + %% %% Insert an element in the tree %% @@ -264,8 +325,11 @@ insert elem tree = let
| node-leaf => node2 e node-leaf node-leaf;
-in case tree - | bbst c t => bbst c (helper c elem t); +in if_then_else_ (member elem tree) + (case tree % we may want to replace an element (partial comparison function) + | bbst s c t => bbst s c (helper c elem t)) + (case tree + | bbst s c t => bbst (s + 1) c (helper c elem t));
%% %% Remove the smallest element. Used in remove. @@ -578,72 +642,17 @@ remove elem tree = let
| node-leaf => node-leaf;
-in case tree - | bbst c t => bbst c (helper c elem t); - -%% -%% Find an element in the tree and return it -%% - -find : (a : Type) ≡> a -> Bbst a -> Option a; -find elem tree = let - - helper : (a -> a -> Bool) -> a -> BbsTree a -> Option a; - helper comp elem tree = case tree - | node2 d0 l0 l1 => - if_then_else_ (comp elem d0) - (if_then_else_ (comp d0 elem) - (some d0) - (helper comp elem l0)) - (helper comp elem l1) - | node3 d0 d1 l0 l1 l2 => - if_then_else_ (comp elem d0) - (if_then_else_ (comp d0 elem) - (some d0) - (helper comp elem l0)) - (if_then_else_ (comp elem d1) - (if_then_else_ (comp d1 elem) - (some d1) - (helper comp elem l1)) - (helper comp elem l2)) - | node4 d0 d1 d2 l0 l1 l2 l3 => - if_then_else_ (comp elem d0) - (if_then_else_ (comp d0 elem) - (some d0) - (helper comp elem l0)) - (if_then_else_ (comp elem d1) - (if_then_else_ (comp d1 elem) - (some d1) - (helper comp elem l1)) - (if_then_else_ (comp elem d2) - (if_then_else_ (comp d2 elem) - (some d2) - (helper comp elem l2)) - (helper comp elem l3))) - | node-leaf => none; - -in case tree - | bbst c t => helper c elem t; - -%% -%% Is elem in the tree? -%% - -member : (a : Type) ≡> a -> Bbst a -> Bool; -member elem tree = let - - oe = find elem tree; - -in case oe - | some _ => true - | none => false; +in if_then_else_ (member elem tree) + (case tree + | bbst s c t => bbst (s - 1) c (helper c elem t)) + (tree);
%% %% An empty tree with a key compare function as argument %%
empty : (a : Type) ≡> (a -> a -> Bool) -> Bbst a; -empty comp-fun = bbst comp-fun node-leaf; +empty comp-fun = bbst 0 comp-fun node-leaf;
%%% %%% Test helper
===================================== samples/table.typer ===================================== @@ -19,7 +19,7 @@ type TableTree (a : Type) | table-nil;
type Table (a : Type) - | table (c : a -> a -> Bool) (h : a -> Int) (t : TableTree a); + | table (s : Int) (c : a -> a -> Bool) (h : a -> Int) (t : TableTree a);
%% %% fold left in an unspecified order @@ -38,7 +38,7 @@ foldl f o t = let | table-nil => o;
in case t - | table _ _ t => helper f o t; + | table _ _ _ t => helper f o t;
%% %% Get the number of element in the tree @@ -47,9 +47,13 @@ in case t %% (currently O(n)) %%
-length t = let - fold-fun len _ = len + 1; -in foldl fold-fun 0 t; +%% length t = let +%% fold-fun len _ = len + 1; +%% in foldl fold-fun 0 t; + +length : (a : Type) ≡> Table a -> Int; +length t = case t + | table s _ _ _ => s;
%% %% Is the tree empty? @@ -57,6 +61,40 @@ in foldl fold-fun 0 t;
is-empty t = Int_eq (length t) 0;
+%% +%% Find an element in the tree and return it +%% + +find : (a : Type) ≡> a -> Table a -> Option a; +find elem tree = let + + get : a -> (a -> a -> Bool) -> List a -> Option a; + get e c es = case es + | cons e1 es => if_then_else_ (c e e1) (some e1) (get e c es) + | nil => none; + + helper : a -> (a -> a -> Bool) -> Int -> TableTree a -> Option a; + helper e c h t = case t + | table-node l r => if_then_else_ (Int_eq 0 (Int_and h 1)) + (helper e c (Int_lsr h 1) l) + (helper e c (Int_lsr h 1) r) + | table-leaf h1 es => if_then_else_ (Int_eq h h1) + (get e c es) + (none) % element not found + | table-nil => none; % element not found + +in case tree + | table _ c h t => (helper elem c (h elem) t); + +%% +%% Is this element in the tree? +%% + +member : (a : Type) ≡> a -> Table a -> Bool; +member elem tree = case (find elem tree) + | some _ => true + | none => false; + %% %% Insert an element in the tree %% @@ -85,8 +123,11 @@ insert elem tree = let (table-node table-nil (table-leaf (Int_lsr h1 1) es)))) | table-nil => table-leaf h (cons e nil);
-in case tree - | table c h t => table c h (helper elem c (h elem) t); +in if_then_else_ (member elem tree) + (case tree % we may want to replace a variable (partial comparison function) + | table s c h t => table s c h (helper elem c (h elem) t)) + (case tree + | table s c h t => table (s + 1) c h (helper elem c (h elem) t));
%% %% Remove an element from the tree. @@ -125,8 +166,10 @@ remove elem tree = let (table-leaf h1 es) % element not found | table-nil => table-nil; % element not found
-in case tree - | table c h t => table c h (helper elem c (h elem) t); +in if_then_else_ (member elem tree) + (case tree + | table s c h t => table (s - 1) c h (helper elem c (h elem) t)) + (tree);
%% %% Change an element @@ -140,62 +183,12 @@ in case tree update : (a : Type) ≡> a -> Table a -> Table a; update elem tree = insert elem tree; % used to be more complicated
-%% -%% Is this element in the tree? -%% - -member : (a : Type) ≡> a -> Table a -> Bool; -member elem tree = let - - is-in : a -> (a -> a -> Bool) -> List a -> Bool; - is-in e c es = case es - | cons e1 es => if_then_else_ (c e e1) (true) (is-in e c es) - | nil => false; - - helper : a -> (a -> a -> Bool) -> Int -> TableTree a -> Bool; - helper e c h t = case t - | table-node l r => if_then_else_ (Int_eq 0 (Int_and h 1)) - (helper e c (Int_lsr h 1) l) - (helper e c (Int_lsr h 1) r) - | table-leaf h1 es => if_then_else_ (Int_eq h h1) - (is-in e c es) - (false) % element not found - | table-nil => false; % element not found - -in case tree - | table c h t => (helper elem c (h elem) t); - -%% -%% Find an element in the tree and return it -%% - -find : (a : Type) ≡> a -> Table a -> Option a; -find elem tree = let - - get : a -> (a -> a -> Bool) -> List a -> Option a; - get e c es = case es - | cons e1 es => if_then_else_ (c e e1) (some e1) (get e c es) - | nil => none; - - helper : a -> (a -> a -> Bool) -> Int -> TableTree a -> Option a; - helper e c h t = case t - | table-node l r => if_then_else_ (Int_eq 0 (Int_and h 1)) - (helper e c (Int_lsr h 1) l) - (helper e c (Int_lsr h 1) r) - | table-leaf h1 es => if_then_else_ (Int_eq h h1) - (get e c es) - (none) % element not found - | table-nil => none; % element not found - -in case tree - | table c h t => (helper elem c (h elem) t); - %% %% An empty tree with a key compare function and a key hash function as argument %%
empty : (a : Type) ≡> (a -> a -> Bool) -> (a -> Int) -> Table a; -empty comp-fun hash-fun = table comp-fun hash-fun table-nil; +empty comp-fun hash-fun = table 0 comp-fun hash-fun table-nil;
%%% %%% Test helper
===================================== src/debruijn.ml ===================================== @@ -151,7 +151,8 @@ let _get_related_name (n : db_ridx) name map = ps ) map [] in if ((String.sub name 0 1) = "_" || - (String.sub name ((String.length name) - 1) 1) = "_") then + (String.sub name ((String.length name) - 1) 1) = "_") && + ((String.length name) > 1) then search r else []
===================================== src/eval.ml ===================================== @@ -129,6 +129,8 @@ let ttrue = Vcons ((dloc, "true"), []) let tfalse = Vcons ((dloc, "false"), []) let o2v_bool b = if b then ttrue else tfalse
+let tunit = Vcons ((dloc, "()"), []) + (* * Builtins *) @@ -669,11 +671,15 @@ let io_return loc depth args_val = match args_val with
let float_to_string loc depth args_val = match args_val with | [Vfloat x] -> Vstring (string_of_float x) - | _ -> error loc "Float->String expects one Float arg" + | _ -> error loc "Float->String expects one Float argument"
let int_to_string loc depth args_val = match args_val with | [Vint x] -> Vstring (string_of_int x) - | _ -> error loc "Int->String expects one Int arg" + | _ -> error loc "Int->String expects one Int argument" + +let integer_to_string loc depth args_val = match args_val with + | [Vinteger x] -> Vstring (BI.string_of_big_int x) + | _ -> error loc "Integer->String expects one Integer argument"
let sys_exit loc depth args_val = match args_val with | [Vint n] -> Vcommand (fun _ -> exit n) @@ -710,7 +716,7 @@ let ref_read loc depth args_val = match args_val with
let ref_write loc depth args_val = match args_val with | [value; Vref (actual)] -> - Vcommand (fun () -> actual := value; Vcons ((dloc,"()"),[])) + Vcommand (fun () -> actual := value; tunit) | _ -> error loc "Ref.write takes a value and a Ref as argument"
let gensym = let count = ref 0 in @@ -793,6 +799,67 @@ let array_empty loc depth args_val = match args_val with | [_] -> Varray (Array.make 0 Vundefined) | _ -> error loc "Array.empty takes a Unit as single argument"
+let test_fatal loc depth args_val = match args_val with + | [Vstring section; Vstring msg] -> + Vcommand (fun () -> Util.msg_user_fatal section loc msg; + tunit) + | _ -> error loc "Test.fatal takes two String as argument" + +let test_warning loc depth args_val = match args_val with + | [Vstring section; Vstring msg] -> + Vcommand (fun () -> Util.msg_user_warning section loc msg; + tunit) + | _ -> error loc "Test.warning takes two String as argument" + +let test_info loc depth args_val = match args_val with + | [Vstring section; Vstring msg] -> + Vcommand (fun () -> Util.msg_user_info section loc msg; + tunit) + | _ -> error loc "Test.info takes two String as argument" + +let test_location loc depth args_val = match args_val with + | [_] -> Vstring (loc.file ^ ":" ^ string_of_int loc.line + ^ ":" ^ string_of_int loc.column) + | _ -> error loc "Test.location takes a Unit as argument" + +let test_true loc depth args_val = match args_val with + | [Vstring name; Vcons ((dloc, b), [])] -> + if b = "true" then + Vcommand (fun () -> print_string ("[ OK] "^name^"\n"); + ttrue) + else + Vcommand (fun () -> print_string ("[FAIL] "^name^"\n"); + tfalse) + | _ -> error loc "Test.true takes a String and a Bool as argument" + +let test_false loc depth args_val = match args_val with + | [Vstring name; Vcons ((dloc, b), [])] -> + if b = "false" then + Vcommand (fun () -> print_string ("[ OK] "^name^"\n"); + ttrue) + else + Vcommand (fun () -> print_string ("[FAIL] "^name^"\n"); + tfalse) + | _ -> error loc "Test.false takes a String and a Bool as argument" + +let test_eq loc depth args_val = match args_val with + | [Vstring name; v0; v1] -> if Env.value_equal v0 v1 then + Vcommand (fun () -> print_string ("[ OK] "^name^"\n"); + ttrue) + else + Vcommand (fun () -> print_string ("[FAIL] "^name^"\n"); + tfalse) + | _ -> error loc "Test.eq takes a String and two values as argument" + +let test_neq loc depth args_val = match args_val with + | [Vstring name; v0; v1] -> if Env.value_equal v0 v1 then + Vcommand (fun () -> print_string ("[FAIL] "^name^"\n"); + tfalse) + else + Vcommand (fun () -> print_string ("[ OK] "^name^"\n"); + ttrue) + | _ -> error loc "Test.neq takes a String and two values as argument" + let register_builtin_functions () = List.iter (fun (name, f, arity) -> add_builtin_function name f arity) [ @@ -811,6 +878,7 @@ let register_builtin_functions () = ("Sexp.debug_print", sexp_debug_print, 1); ("Float->String" , float_to_string, 1); ("Int->String" , int_to_string, 1); + ("Integer->String", integer_to_string, 1); ("IO.bind" , io_bind, 2); ("IO.return" , io_return, 1); ("IO.run" , io_run, 2); @@ -834,6 +902,14 @@ let register_builtin_functions () = ("Array.set" , array_set,3); ("Array.get" , array_get,3); ("Array.empty" , array_empty,1); + ("Test.fatal" , test_fatal,2); + ("Test.warning" , test_warning,2); + ("Test.info" , test_info,2); + ("Test.location" , test_location,1); + ("Test.true" , test_true,2); + ("Test.false" , test_false,2); + ("Test.eq" , test_eq,3); + ("Test.neq" , test_neq,3); ] let _ = register_builtin_functions ()
===================================== src/util.ml ===================================== @@ -63,6 +63,9 @@ let internal_error s = raise (Internal_error s) exception Unreachable_error of string let typer_unreachable s = raise (Unreachable_error s)
+exception User_error of string +let user_error s = raise (User_error s) + exception Stop_Compilation of string let stop_compilation s = raise (Stop_Compilation s)
@@ -137,6 +140,15 @@ let msg_error = msg_message true 1 "Error:" let msg_warning = msg_message false 2 "Warning:" let msg_info = msg_message false 3 "Info:"
+let msg_user_fatal s l m = + msg_message true 1 "Unit test (fatal):" s l m; + flush stdout; + reset_error_log (); + user_error "User Fatal Error" + +let msg_user_warning = msg_message false 2 "Unit test (warning):" +let msg_user_info = msg_message false 3 "Unit test (info):" + (* Compiler Internal Debug print *) let debug_msg expr = if 4 <= !typer_verbose then (print_string expr; flush stdout) else ()
View it on GitLab: https://gitlab.com/monnier/typer/compare/b0b911ec7fcc4cebd576ebff4815f39d2d2...
Afficher les réponses par date