Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the ability to reflect Inductive definitions #32

Merged
merged 20 commits into from
Dec 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 85 additions & 1 deletion src/reify.ml4
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ let _ = Goptions.declare_bool_option {
Goptions.optwrite = (fun a -> cast_prop:=a);
}

(* whether Set Template Cast Propositions is on, as needed for erasure in Certicoq *)
let is_cast_prop () = !cast_prop

let pp_constr fmt x = Pp.pp_with fmt (Printer.pr_constr x)
Expand Down Expand Up @@ -74,6 +75,8 @@ struct
let tS = resolve_symbol pkg_datatypes "S"
let tnat = resolve_symbol pkg_datatypes "nat"
let ttrue = resolve_symbol pkg_datatypes "true"
let cSome = resolve_symbol pkg_datatypes "Some"
let cNone = resolve_symbol pkg_datatypes "None"
let tfalse = resolve_symbol pkg_datatypes "false"
let tAscii = resolve_symbol ["Coq";"Strings";"Ascii"] "Ascii"
let c_nil = resolve_symbol pkg_datatypes "nil"
Expand All @@ -85,6 +88,7 @@ struct
let pair a b f s =
Term.mkApp (c_pair, [| a ; b ; f ; s |])

(* reify the constructors in Template.Ast.v, which are the building blocks of reified terms *)
let nAnon = r_reify "nAnon"
let nNamed = r_reify "nNamed"
let kVmCast = r_reify "VmCast"
Expand All @@ -105,6 +109,8 @@ struct
r_reify "tConstruct", r_reify "tConst", r_reify "tInd", r_reify "tUnknown")

let (tdef,tmkdef) = (r_reify "def", r_reify "mkdef")
let (tLocalDef,tLocalAssum) = (r_reify "LocalDef", r_reify "LocalAssum")
let (cFinite,cCoFinite,cBiFinite) = (r_reify "Finite", r_reify "CoFinite", r_reify "BiFinite")
let (pConstr,pType,pAxiom,pIn) =
(r_reify "PConstr", r_reify "PType", r_reify "PAxiom", r_reify "PIn")
let tinductive_body = r_reify "inductive_body"
Expand Down Expand Up @@ -564,6 +570,11 @@ struct
else
not_supported trm

let reduce_all env (evm,def) =
let (evm2,red) = Tacinterp.interp_redexp env evm (Genredexpr.Cbv Redops.all_flags) in
let red = fst (Redexpr.reduction_of_red_expr env red) in
red env evm2 def

let from_coq_pair trm =
let (h,args) = app_full trm [] in
if Term.eq_constr h c_pair then
Expand All @@ -573,6 +584,7 @@ struct
else
not_supported trm


(** NOTE: Because the representation is lossy, I should probably
** come back through elaboration.
** - This would also allow writing terms with holes
Expand Down Expand Up @@ -647,6 +659,71 @@ struct
else
not_supported trm

let denote_local_entry trm =
let (h,args) = app_full trm [] in
match args with
x :: [] ->
if Term.eq_constr h tLocalDef then Entries.LocalDef (denote_term x)
else (if Term.eq_constr h tLocalAssum then Entries.LocalAssum (denote_term x) else bad_term trm)
| _ -> bad_term trm

let denote_mind_entry_finite trm =
let (h,args) = app_full trm [] in
match args with
[] ->
if Term.eq_constr h cFinite then Decl_kinds.Finite
else if Term.eq_constr h cCoFinite then Decl_kinds.CoFinite
else if Term.eq_constr h cBiFinite then Decl_kinds.BiFinite
else bad_term trm
| _ -> bad_term trm


let unquote_map_option f trm =
let (h,args) = app_full trm [] in
if Term.eq_constr h cSome then
match args with
_ :: x :: _ -> Some (f x)
| _ -> bad_term trm
else if Term.eq_constr h cNone then
match args with
_ :: [] -> None
| _ -> bad_term trm
else
not_supported trm


let declare_inductive (env: Environ.env) (evm: Evd.evar_map) (body: Constrexpr.constr_expr) : unit =
let (body,_) = Constrintern.interp_constr env evm body in
let (evm,body) = reduce_all env (evm,body) in
let (_,args) = app_full body [] in (* check that the first component is Build_mut_ind .. *)
let one_ind b1 : Entries.one_inductive_entry =
let (_,args) = app_full b1 [] in (* check that the first component is Build_one_ind .. *)
match args with
| mt::ma::mtemp::mcn::mct::[] ->
{
mind_entry_typename = unquote_ident mt;
mind_entry_arity = denote_term ma;
mind_entry_template = from_bool mtemp;
mind_entry_consnames = List.map unquote_ident (from_coq_list mcn);
mind_entry_lc = List.map denote_term (from_coq_list mct)
}
| _ -> raise (Failure "ill-typed one_inductive_entry")
in
let mut_ind mr mf mp mi mpol mpr : Entries.mutual_inductive_entry =
{
mind_entry_record = unquote_map_option (unquote_map_option unquote_ident) mr;
mind_entry_finite = denote_mind_entry_finite mf; (* inductive *)
mind_entry_params = List.map (fun p -> let (l,r) = (from_coq_pair p) in (unquote_ident l, (denote_local_entry r))) (from_coq_list mp);
mind_entry_inds = List.map one_ind (from_coq_list mi);
mind_entry_polymorphic = from_bool mpol;
mind_entry_universes = Univ.UContext.empty;
mind_entry_private = unquote_map_option from_bool mpr (*mpr*)
} in
match args with
mr::mf::mp::mi::mpol::mpr::[] ->
Command.declare_mutual_inductive_with_eliminations (mut_ind mr mf mp mi mpol mpr) [] [];()
| _ -> raise (Failure "ill-typed mutual_inductive_entry")

end

DECLARE PLUGIN "template_plugin"
Expand All @@ -671,7 +748,7 @@ let to_ltac_val c = Tacexpr.TacDynamic(Loc.ghost,Pretyping.constr_in c)

(** From Containers **)
let declare_definition
id (loc, boxed_flag, def_obj_kind)
(id : Names.Id.t) (loc, boxed_flag, def_obj_kind)
(binder_list : Constrexpr.local_binder list) red_expr_opt constr_expr
constr_expr_opt decl_hook =
Command.do_definition
Expand Down Expand Up @@ -766,6 +843,13 @@ VERNAC COMMAND EXTEND Unquote_vernac CLASSIFIED AS SIDEFF
[] None result None (Lemmas.mk_hook (fun _ _ -> ())) ]
END;;

VERNAC COMMAND EXTEND Unquote_inductive CLASSIFIED AS SIDEFF
| [ "Make" "Inductive" constr(def) ] ->
[ check_inside_section () ;
let (evm,env) = Lemmas.get_current_context () in
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it necessary to check_inside_section here?

TermReify.declare_inductive env evm def ]
END;;

VERNAC COMMAND EXTEND Make_tests CLASSIFIED AS QUERY
(*
| [ "Make" "Definitions" tactic(t) ] ->
Expand Down
100 changes: 100 additions & 0 deletions test-suite/demo.v
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,103 @@ Make Definition two_from_syntax := (Ast.tApp (Ast.tConstruct (Ast.mkInd "Coq.Ini
Quote Recursively Definition plus_syntax := plus.

Quote Recursively Definition mult_syntax := mult.

Make Definition d''_from_syntax := ltac:(let t:= eval compute in d'' in exact t).




(** Reflecting Inductives *)

Require Import List.
Import ListNotations.
Require Import Template.Ast.

Definition one_i : one_inductive_entry :=
{|
mind_entry_typename := "demoBool";
mind_entry_arity := tSort sSet;
mind_entry_template := false;
mind_entry_consnames := ["demoTrue"; "demoFalse"];
mind_entry_lc := [tRel 1; tRel 1];
|}.

Definition one_i2 : one_inductive_entry :=
{|
mind_entry_typename := "demoBool2";
mind_entry_arity := tSort sSet;
mind_entry_template := false;
mind_entry_consnames := ["demoTrue2"; "demoFalse2"];
mind_entry_lc := [tRel 0; tRel 0];
|}.

Definition mut_i : mutual_inductive_entry :=
{|
mind_entry_record := None;
mind_entry_finite := Finite;
mind_entry_params := [];
mind_entry_inds := [one_i; one_i2];
mind_entry_polymorphic := false;
mind_entry_private := None;
|}.

Make Inductive mut_i.


Definition mkImpl (A B : term) : term :=
tProd nAnon A B.


Definition one_list_i : one_inductive_entry :=
{|
mind_entry_typename := "demoList";
mind_entry_arity := tSort sSet;
mind_entry_template := false;
mind_entry_consnames := ["demoNil"; "demoCons"];
mind_entry_lc := [tApp (tRel 1) [tRel 0];
mkImpl (tRel 0) (mkImpl (tApp (tRel 2) [tRel 1]) (tApp (tRel 3) [tRel 2]))];
|}.

Definition mut_list_i : mutual_inductive_entry :=
{|
mind_entry_record := None;
mind_entry_finite := Finite;
mind_entry_params := [("A", LocalAssum (tSort sSet))];
mind_entry_inds := [one_list_i];
mind_entry_polymorphic := false;
mind_entry_private := None;
|}.


Make Inductive mut_list_i.

(** Records *)

Definition one_pt_i : one_inductive_entry :=
{|
mind_entry_typename := "Point";
mind_entry_arity := tSort sSet;
mind_entry_template := false;
mind_entry_consnames := ["mkPoint"];
mind_entry_lc := [
mkImpl (tRel 0) (mkImpl (tRel 1) (tApp (tRel 3) [tRel 2]))];
|}.

Definition mut_pt_i : mutual_inductive_entry :=
{|
mind_entry_record := Some (Some "pp");
mind_entry_finite := BiFinite;
mind_entry_params := [("A", LocalAssum (tSort sSet))];
mind_entry_inds := [one_pt_i];
mind_entry_polymorphic := false;
mind_entry_private := None;
|}.

Make Inductive mut_pt_i.


(*
Inductive demoList (A : Set) : Set :=
demoNil : demoList A | demoCons : A -> demoList A -> demoList A
*)

34 changes: 34 additions & 0 deletions theories/Ast.v
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,37 @@ Inductive program : Set :=
list (ident * inductive_body) -> program -> program
| PAxiom : ident -> term (* the type *) -> program -> program
| PIn : term -> program.


(** representation of mutual inductives. nearly copied from Coq/kernel/entries.mli
*)

Record one_inductive_entry : Set := {
mind_entry_typename : ident;
mind_entry_arity : term;
mind_entry_template : bool; (* template polymorphism ? *)
mind_entry_consnames : list ident;
mind_entry_lc : list term}.


Inductive local_entry : Set :=
| LocalDef : term -> local_entry (* local let binding *)
| LocalAssum : term -> local_entry.


Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(** The kind of definition. See kerne/....mli **)

Inductive recursivity_kind :=
| Finite (** = inductive *)
| CoFinite (** = coinductive *)
| BiFinite (** = non-recursive, like in "Record" definitions *).


(* kernel/entries.mli*)
Record mutual_inductive_entry : Set := {
mind_entry_record : option (option ident);
mind_entry_finite : recursivity_kind;
mind_entry_params : list (ident * local_entry);
mind_entry_inds : list one_inductive_entry;
mind_entry_polymorphic : bool;
(* mind_entry_universes : Univ.universe_context; *)
mind_entry_private : option bool
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed private is for the HIT trick

}.