Jonathan Graveline pushed to branch graveline at Stefan / Typer
Commits: c8fad518 by Jonathan Graveline at 2018-07-25T00:08:43Z update on macro `case`
- - - - -
2 changed files:
- samples/case2.typer - tests/case_test.ml
Changes:
===================================== samples/case2.typer ===================================== @@ -106,7 +106,9 @@ renamed-pat pat names = let
mf : Sexp -> Int -> Sexp; mf v i = Sexp_dispatch v - (lambda _ _ -> List_nth i names Sexp_error) + (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 _ -> List_nth i names Sexp_error) serr serr serr serr;
@@ -130,9 +132,20 @@ is-pat : Pat -> IO Bool; is-pat pat = let
err = lambda _ -> return false; + + serr = lambda _ -> "< error >"; + + sym-str : Sexp -> String; + sym-str sexp = Sexp_dispatch sexp + (lambda _ _ -> serr ()) + (lambda str -> str) + serr serr serr serr;
in Sexp_dispatch pat - (lambda _ _ -> return true) + (lambda sym _ -> do { + env <- Elab_getenv (); + return (Elab_isconstructor (sym-str sym) env); + }) (lambda sym -> do { env <- Elab_getenv (); return (Elab_isconstructor sym env); @@ -171,12 +184,14 @@ introduced-vars pat = let
ff : IO (List Sexp) -> Sexp -> IO (List Sexp); ff o v = Sexp_dispatch v - (lambda _ _ -> do { + (lambda s ss -> do { o <- o; % bind - %% 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)); + if_then_else_ (Sexp_eq s (Sexp_symbol "_:=_")) + (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 { o <- o; % bind @@ -201,8 +216,11 @@ in Sexp_dispatch pat
wrap-vars : List Var -> List Var -> Code -> Code; wrap-vars ivars rvars fun = List_fold2 (lambda fun v0 v1 -> + %% + %% I prefer `let` definition because a lambda function would need a type + %% (quote ((lambda (uquote v0) -> (uquote fun)) (uquote v1)))) + %% (quote (let (uquote v1) = (uquote v0) in (uquote fun)))) - %%(quote ((lambda (uquote v0) -> (uquote fun)) (uquote v1)))) fun ivars rvars;
%% @@ -308,6 +326,7 @@ in List_foldl ff (return nil) pats; %% %% new variable should be identical for each branches %% but old variable (from user code) are arbitrary +%% (except for explicit field pattern...) %%
pattern-term : Pat -> List Var -> IO (List (Pair Var Var));
===================================== tests/case_test.ml ===================================== @@ -241,8 +241,6 @@ let _ = (add_test "CASE MACROS" "sub pattern 1" (fun () -> let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in
let ecode = "va; vb; vc; vd; ve; vf; vg; vh;" in - - let print x = print_string ("\n"^(string_of_int x)) in
let ret = Elab.eval_expr_str ecode ectx rctx in
@@ -251,14 +249,52 @@ let _ = (add_test "CASE MACROS" "sub pattern 1" (fun () -> Vint e; Vint f; Vint g; Vint h] -> ( match (a,b,c,d,e,f,g,h) with | (1,1,1,2,0,0,0,2) -> success () - | (_,_,_,_,_,_,_,_) -> - (print a; print b; print c; print d; - print e; print f; print g; print h; - failure ()) ) + | (_,_,_,_,_,_,_,_) -> failure () ) | _ -> failure ()) )
let _ = (add_test "CASE MACROS" "sub pattern 2" (fun () -> + let dcode = (" + f : List (Option Bool) -> List (Option Bool) -> Int; + f xs ys = case (xs,ys) + | (cons (some true) xs, cons (some true) ys) => f xs ys + | (cons none nil, cons none nil) => 2 + | (cons none xs, cons none ys) => f xs ys + | (nil,nil) => 1 + | (cons (some false) (cons (some false) nil), + cons (some false) (cons (some false) nil)) => 7 + | (_,_) => 0; + + va = f (cons (some true) nil) (cons (some true) nil); + vb = f (cons (some true) (cons (some true) nil)) + (cons (some true) (cons (some true) nil)); + vc = f nil nil; + vd = f (cons (some true) (cons none nil)) (cons (some true) (cons none nil)); + ve = f (cons (some false) nil) (cons (some false) nil); + vf = f (cons none nil) (cons (some true) nil); + vg = f (cons (some true) nil) (cons none nil); + vh = f (cons (none : Option Bool) nil) (cons (none : Option Bool) nil); + vi = f (cons none (cons (some true) nil)) (cons none (cons (some true) nil)); + vj = f (cons (some false) (cons (some false) nil)) + (cons (some false) (cons (some false) nil)); + ") in + + let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in + + let ecode = "va; vb; vc; vd; ve; vf; vg; vh; vi; vj;" in + + let ret = Elab.eval_expr_str ecode ectx rctx in + + match ret with + | [Vint a; Vint b; Vint c; Vint d; Vint e; + Vint f; Vint g; Vint h; Vint i; Vint j] -> ( + match (a,b,c,d,e,f,g,h,i,j) with + | (1,1,1,2,0,0,0,2,1,7) -> success () + | (_,_,_,_,_,_,_,_,_,_) -> failure () ) + | _ -> failure ()) +) + +let _ = (add_test "CASE MACROS" "sub pattern 3" (fun () -> let dcode = (" f : Option Bool -> Option Bool -> Int; f ob0 ob1 = case (ob0,ob1) @@ -298,7 +334,7 @@ let _ = (add_test "CASE MACROS" "sub pattern 2" (fun () -> | _ -> failure ()) )
-let _ = (add_test "CASE MACROS" "sub pattern 3" (fun () -> +let _ = (add_test "CASE MACROS" "sub pattern 4" (fun () -> let dcode = (" g : Bool -> Bool -> Int; g b0 b1 = case (b0,b1) @@ -362,6 +398,46 @@ let _ = (add_test "CASE MACROS" "no default" (fun () -> | _ -> failure ()) )
+let _ = (add_test "CASE MACROS" "introduced variable name" (fun () -> + let dcode = (" + and : Bool -> Bool -> Int; + and b0 b1 = case (b0, b1) + | (true, true) => 2 + | (true, false) => 1 + | (false, true) => 1 + | (false, false) => 0; + + %% `cons x xs` vs `cons a as` and `cons y ys` vs `cons b bs` + + f : List Bool -> List Bool -> Int; + f xs ys = case (xs, ys) + | (cons x xs, nil) => (and x false) + (f xs nil) + | (nil, cons y ys) => (and false y) + (f nil ys) + | (cons a as, cons b bs) => (and a b) + (f as bs) + | (nil, nil) => 0; + + va = f (cons true nil) nil; + vb = f nil (cons false nil); + vc = f (cons true nil) (cons true nil); + vd = f (cons false nil) (cons false nil); + ve = f (cons true nil) (cons false nil); + vf = f nil nil; + ") in + + let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in + + let ecode = "va; vb; vc; vd; ve; vf;" in + + let ret = Elab.eval_expr_str ecode ectx rctx in + + match ret with + | [Vint a; Vint b; Vint c; Vint d; Vint e; Vint f] -> ( + match (a,b,c,d,e,f) with + | (1,0,2,0,1,0) -> success () + | (_,_,_,_,_,_) -> failure () ) + | _ -> failure ()) +) +
(* run all tests *) let _ = run_all ()
View it on GitLab: https://gitlab.com/monnier/typer/commit/c8fad5182993207af7e5c5b77de524008f20...
Afficher les réponses par date