Stefan pushed to branch master at Stefan / Typer
Commits: 9c9a1a0e by Stefan Monnier at 2016-12-13T13:09:11-05:00 Add the Y operator in a safe(?) way
* btl/builtins.typer (Y): Give its type.
* src/eval.ml (y_operator): New function. (register_built_functions): Add "Y" operator.
* tests/eval_test.ml ("Y"): New test.
- - - - -
4 changed files:
- btl/builtins.typer - src/eval.ml - src/lparse.ml - tests/eval_test.ml
Changes:
===================================== btl/builtins.typer ===================================== --- a/btl/builtins.typer +++ b/btl/builtins.typer @@ -62,6 +62,34 @@ Eq_comm = lambda l t x y ≡> lambda p -> (p := p) Eq_refl;
+%% General recursion!! +%% Whether this breaks onsistency or not is a good question. +%% The basic idea is the following: +%% +%% The `witness` argument presumably makes sure that "Y f" can only +%% create new recursive values for types which were already inhabited. +%% So there's no `f` such that `Y f : False`. +%% +%% But this is not sufficient, because you could use `Y` to create +%% new recursive *types* which then let you construct new arbitrary +%% recursive values of previously uninhabited types. +%% E.g. you could create Y <something> = ((... → t) -> t) -> t +%% and then give the term "λx. x x" inhabiting that type, and from that +%% get a proof of False. +%% +%% So we have a secondary restriction: This `Y` is a builtin primitive/axiom +%% with no reduction rule, so that Y <something> is never convertible +%% to something like ((... → t) -> t) -> t +%% +%% Of course, we do have a "natural" evaluation rule for it, so after type +%% checking we can run our recursive functions just fine, but those +%% recursive functions won't be unfolded during type checking. +%% +%% FIXME: Really, this Y should be used internally/transparently for any +%% function which has not been termination-checked successfully (or at all). +Y = Built-in "Y" ((a : Type) ≡> (b : Type) ≡> (witness : a -> b) ≡> + ((a -> b) -> (a -> b)) -> (a -> b)); + % Basic operators _+_ = Built-in "Int.+" (Int -> Int -> Int); _-_ = Built-in "Int.-" (Int -> Int -> Int);
===================================== src/eval.ml ===================================== --- a/src/eval.ml +++ b/src/eval.ml @@ -559,6 +559,21 @@ and print_eval_trace trace = let (a, b) = !_global_eval_trace in print_trace " EVAL TRACE " trace a
+let y_operator loc depth args = + match args with + | [f] -> let aname = "<anon>" in + let yf_ref = ref Vdummy in + let yf = Closure(aname, + Call (Var ((dloc, "f"), 1), + [Var ((dloc, "yf"), 2); + Var ((dloc, aname), 0)]), + Myers.cons (Some "f", ref f) + (Myers.cons (Some "yf", yf_ref) + Myers.nil)) in + yf_ref := yf; + yf + | _ -> error loc ("Y expects 1 (function) argument") + let arity0_fun loc _ _ = error loc "Called a 0-arity function!?" let nop_fun loc _ vs = match vs with | [v] -> v @@ -584,6 +599,7 @@ let register_built_functions () = ("write" , write_impl, 2); ("Eq.refl" , arity0_fun, 0); ("Eq.cast" , nop_fun, 1); + ("Y" , y_operator, 1); ] let _ = register_built_functions ()
===================================== src/lparse.ml ===================================== --- a/src/lparse.ml +++ b/src/lparse.ml @@ -597,6 +597,9 @@ and check_case rtype (loc, target, ppatterns) ctx = | _ -> (e,[]) in let it, targs = call_split tltp in let constructors = match OL.lexp_whnf it (ectx_to_lctx ctx) meta_ctx with + (* FIXME: Check that it's `Inductive' only after performing Unif.unify + * with the various branches, so that we can infer the type + * of the target from the type of the patterns. *) | Inductive (_, _, fargs, constructors) -> assert (List.length fargs = List.length targs); constructors
===================================== tests/eval_test.ml ===================================== --- a/tests/eval_test.ml +++ b/tests/eval_test.ml @@ -379,6 +379,20 @@ let _ = test_eval_eqv_named | (datacons ? false) (p := _) => 4;" "3;"
+let _ = test_eval_eqv_named + "Y" + + "length_y = lambda t ≡> + Y (a := List t) (witness := (lambda l -> 0)) + (lambda length l + -> case l + | nil => 0 + | cons _ l => 1 + length l);" + + "length_y (cons 1 (cons 5 nil));" + + "2;" + (* run all tests *) let _ = run_all ()
View it on GitLab: https://gitlab.com/monnier/typer/commit/9c9a1a0ed83707b907ee1705eae806c84948...
Afficher les réponses par date