src/Pure/Syntax/syn_trans.ML
author nipkow
Tue, 04 Sep 2001 17:31:18 +0200
changeset 11548 0028bd06a19c
parent 11491 085a0d2857e8
child 12122 7f8d88ed4f21
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Syntax/syn_trans.ML
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     3
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     4
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     5
Syntax translation functions.
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     6
*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     7
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     8
signature SYN_TRANS0 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
     9
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    10
  val eta_contract: bool ref
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    11
  val mk_binder_tr: string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    12
  val mk_binder_tr': string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    13
  val dependent_tr': string * string -> term list -> term
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    14
  val antiquote_tr: string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    15
  val quote_tr: string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    16
  val quote_antiquote_tr: string -> string -> string -> string * (term list -> term)
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    17
  val antiquote_tr': string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    18
  val quote_tr': string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    19
  val quote_antiquote_tr': string -> string -> string -> string * (term list -> term)
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    20
  val mark_bound: string -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    21
  val mark_boundT: string * typ -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    22
  val variant_abs': string * typ * term -> string * term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    23
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    24
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    25
signature SYN_TRANS1 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    26
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    27
  include SYN_TRANS0
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    28
  val constrainAbsC: string
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    29
  val pure_trfuns:
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    30
      (string * (Ast.ast list -> Ast.ast)) list *
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    31
      (string * (term list -> term)) list *
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    32
      (string * (term list -> term)) list *
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    33
      (string * (Ast.ast list -> Ast.ast)) list
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    34
  val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    35
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    36
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    37
signature SYN_TRANS =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    38
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    39
  include SYN_TRANS1
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    40
  val abs_tr': term -> term
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    41
  val prop_tr': term -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    42
  val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    43
  val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    44
  val pt_to_ast: (string -> (Ast.ast list -> Ast.ast) option) -> Parser.parsetree -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    45
  val ast_to_term: (string -> (term list -> term) option) -> Ast.ast -> term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    46
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    47
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    48
structure SynTrans: SYN_TRANS =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    49
struct
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    50
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    51
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    52
(** parse (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    53
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    54
(* constify *)
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    55
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    56
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    57
  | constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts);
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    58
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    59
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    60
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    61
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    62
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    63
  | appl_ast_tr asts = raise Ast.AST ("appl_ast_tr", asts);
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
    64
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    65
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    66
  | applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    67
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    68
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    69
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    70
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    71
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant SynExt.constrainC, x, ty]
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    72
  | idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    73
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
    74
fun lambda_ast_tr (*"_lambda"*) [pats, body] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    75
      Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    76
  | lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    77
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    78
val constrainAbsC = "_constrainAbs";
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    79
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    80
fun abs_tr (*"_abs"*) [Free (x, T), body] = Term.absfree (x, T, body)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    81
  | abs_tr (*"_abs"*) (ts as [Const (c, _) $ Free (x, T) $ tT, body]) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    82
      if c = SynExt.constrainC
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    83
        then Lexicon.const constrainAbsC $ Term.absfree (x, T, body) $ tT
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    84
      else raise TERM ("abs_tr", ts)
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    85
  | abs_tr (*"_abs"*) ts = raise TERM ("abs_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    86
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    87
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    88
(* nondependent abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    89
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    90
fun k_tr (*"_K"*) [t] = Abs ("uu", dummyT, Term.incr_boundvars 1 t)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
    91
  | k_tr (*"_K"*) ts = raise TERM ("k_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    92
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    93
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    94
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    95
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    96
fun mk_binder_tr (sy, name) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    97
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    98
    fun tr (Free (x, T), t) = Lexicon.const name $ Term.absfree (x, T, t)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    99
      | tr (Const ("_idts", _) $ idt $ idts, t) = tr (idt, tr (idts, t))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   100
      | tr (t1 as Const (c, _) $ Free (x, T) $ tT, t) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   101
          if c = SynExt.constrainC then
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   102
            Lexicon.const name $ (Lexicon.const constrainAbsC $ Term.absfree (x, T, t) $ tT)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   103
          else raise TERM ("binder_tr", [t1, t])
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   104
      | tr (t1, t2) = raise TERM ("binder_tr", [t1, t2]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   105
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   106
    fun binder_tr (*sy*) [idts, body] = tr (idts, body)
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   107
      | binder_tr (*sy*) ts = raise TERM ("binder_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   108
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   109
    (sy, binder_tr)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   110
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   111
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   112
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   113
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   114
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   115
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const SynExt.constrainC $ t $ Lexicon.const "prop"
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   116
  | aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   117
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   118
fun ofclass_tr (*"_ofclass"*) [ty, cls] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   119
      cls $ (Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   120
        (Lexicon.const "itself" $ ty))
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   121
  | ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   122
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   123
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   124
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   125
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   126
fun bigimpl_ast_tr (*"_bigimpl"*) [asms, concl] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   127
      Ast.fold_ast_p "==>" (Ast.unfold_ast "_asms" asms, concl)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   128
  | bigimpl_ast_tr (*"_bigimpl"*) asts = raise Ast.AST ("bigimpl_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   129
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   130
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   131
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   132
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   133
fun type_tr (*"_TYPE"*) [ty] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   134
      Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $ (Lexicon.const "itself" $ ty)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   135
  | type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts);
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   136
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   137
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   138
(* dddot *)
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   139
8595
06874c5c3cfa fixed dddot_tr;
wenzelm
parents: 8577
diff changeset
   140
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var SynExt.dddot_indexname, ts);
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   141
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   142
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   143
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   144
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   145
fun antiquote_tr name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   146
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   147
    fun tr i ((t as Const (c, _)) $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   148
          if c = name then tr i u $ Bound i
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   149
          else tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   150
      | tr i (t $ u) = tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   151
      | tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   152
      | tr _ a = a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   153
  in tr 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   154
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   155
fun quote_tr name t = Abs ("s", dummyT, antiquote_tr name (Term.incr_boundvars 1 t));
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   156
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   157
fun quote_antiquote_tr quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   158
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   159
    fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   160
      | tr ts = raise TERM ("quote_tr", ts);
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   161
  in (quoteN, tr) end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   162
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   163
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   164
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   165
(** print (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   166
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   167
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   168
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   169
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   170
  | appl_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_appl", f, Ast.fold_ast "_args" args];
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   171
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   172
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   173
  | applC_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_applC", f, Ast.fold_ast "_cargs" args];
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
   174
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   175
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   176
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   177
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   178
fun mark_boundT x_T = Lexicon.const "_bound" $ Free x_T;
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   179
fun mark_bound x = mark_boundT (x, dummyT);
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   180
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   181
fun strip_abss vars_of body_of tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   182
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   183
    val vars = vars_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   184
    val body = body_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   185
    val rev_new_vars = rename_wrt_term body vars;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   186
  in
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   187
    (map mark_boundT (rev rev_new_vars),
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   188
      subst_bounds (map (mark_bound o #1) rev_new_vars, body))
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   189
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   190
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   191
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   192
(*do (partial) eta-contraction before printing*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   193
1326
1fbf9407757c Set eta_contract to true.
nipkow
parents: 1178
diff changeset
   194
val eta_contract = ref true;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   195
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   196
fun eta_contr tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   197
  let
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   198
    fun is_aprop (Const ("_aprop", _)) = true
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   199
      | is_aprop _ = false;
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   200
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   201
    fun eta_abs (Abs (a, T, t)) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   202
          (case eta_abs t of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   203
            t' as f $ u =>
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   204
              (case eta_abs u of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   205
                Bound 0 =>
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   206
                  if Term.loose_bvar1 (f, 0) orelse is_aprop f then Abs (a, T, t')
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   207
                  else  incr_boundvars ~1 f
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   208
              | _ => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   209
          | t' => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   210
      | eta_abs t = t;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   211
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   212
    if ! eta_contract then eta_abs tm else tm
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   213
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   214
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   215
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   216
fun abs_tr' tm =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   217
  foldr (fn (x, t) => Lexicon.const "_abs" $ x $ t)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   218
    (strip_abss strip_abs_vars strip_abs_body (eta_contr tm));
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   219
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   220
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   221
fun abs_ast_tr' (*"_abs"*) asts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   222
  (case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   223
    ([], _) => raise Ast.AST ("abs_ast_tr'", asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   224
  | (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   225
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   226
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   227
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   228
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   229
fun mk_binder_tr' (name, sy) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   230
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   231
    fun mk_idts [] = raise Match    (*abort translation*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   232
      | mk_idts [idt] = idt
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   233
      | mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   234
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   235
    fun tr' t =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   236
      let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   237
        val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t;
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   238
      in Lexicon.const sy $ mk_idts xs $ bd end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   239
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   240
    fun binder_tr' (*name*) (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   241
      | binder_tr' (*name*) [] = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   242
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   243
    (name, binder_tr')
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   244
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   245
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   246
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   247
(* idtyp constraints *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   248
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   249
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant c, x, ty], xs] =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   250
      if c = SynExt.constrainC then
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   251
        Ast.Appl [ Ast.Constant a,  Ast.Appl [Ast.Constant "_idtyp", x, ty], xs]
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   252
      else raise Match
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   253
  | idtyp_ast_tr' _ _ = raise Match;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   254
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   255
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   256
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   257
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   258
fun prop_tr' tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   259
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   260
    fun aprop t = Lexicon.const "_aprop" $ t;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   261
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   262
    fun is_prop Ts t =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   263
      fastype_of1 (Ts, t) = propT handle TERM _ => false;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   264
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   265
    fun tr' _ (t as Const _) = t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   266
      | tr' _ (t as Free (x, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   267
          if T = propT then aprop (Lexicon.free x) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   268
      | tr' _ (t as Var (xi, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   269
          if T = propT then aprop (Lexicon.var xi) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   270
      | tr' Ts (t as Bound _) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   271
          if is_prop Ts t then aprop t else t
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   272
      | tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t)
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   273
      | tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) =
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   274
          if is_prop Ts t then Const ("_mk_ofclass", T) $ tr' Ts t1
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   275
          else tr' Ts t1 $ tr' Ts t2
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   276
      | tr' Ts (t as t1 $ t2) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   277
          (if is_Const (Term.head_of t) orelse not (is_prop Ts t)
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   278
            then I else aprop) (tr' Ts t1 $ tr' Ts t2);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   279
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   280
    tr' [] tm
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   281
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   282
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   283
fun mk_ofclass_tr' show_sorts (*"_mk_ofclass"*) T [t] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   284
      Lexicon.const "_ofclass" $ TypeExt.term_of_typ show_sorts T $ t
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   285
  | mk_ofclass_tr' _ (*"_mk_ofclass"*) T ts = raise TYPE ("mk_ofclass_tr'", [T], ts);
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   286
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   287
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   288
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   289
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   290
fun impl_ast_tr' (*"==>"*) asts =
10572
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   291
  if TypeExt.no_brackets () then raise Match
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   292
  else
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   293
    (case Ast.unfold_ast_p "==>" (Ast.Appl (Ast.Constant "==>" :: asts)) of
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   294
      (asms as _ :: _ :: _, concl)
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   295
        => Ast.Appl [Ast.Constant "_bigimpl", Ast.fold_ast "_asms" asms, concl]
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   296
    | _ => raise Match);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   297
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   298
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   299
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   300
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   301
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   302
      Term.list_comb (Lexicon.const "_TYPE" $ TypeExt.term_of_typ show_sorts T, ts)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   303
  | type_tr' _ _ _ = raise Match;
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   304
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   305
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   306
(* dependent / nondependent quantifiers *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   307
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   308
fun variant_abs' (x, T, B) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   309
  let val x' = variant (add_term_names (B, [])) x in
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   310
    (x', subst_bound (mark_boundT (x', T), B))
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   311
  end;
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   312
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   313
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) =
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   314
      if Term.loose_bvar1 (B, 0) then
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   315
        let val (x', B') = variant_abs' (x, dummyT, B);
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   316
        in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   317
      else Term.list_comb (Lexicon.const r $ A $ B, ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   318
  | dependent_tr' _ _ = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   319
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   320
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   321
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   322
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   323
fun antiquote_tr' name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   324
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   325
    fun tr' i (t $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   326
      if u = Bound i then Lexicon.const name $ tr' i t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   327
      else tr' i t $ tr' i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   328
      | tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   329
      | tr' i a = if a = Bound i then raise Match else a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   330
  in tr' 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   331
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   332
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   333
  | quote_tr' _ _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   334
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   335
fun quote_antiquote_tr' quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   336
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   337
    fun tr' (t :: ts) = Term.list_comb (Lexicon.const quoteN $ quote_tr' antiquoteN t, ts)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   338
      | tr' _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   339
  in (name, tr') end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   340
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   341
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   342
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   343
(** pure_trfuns **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   344
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   345
val pure_trfuns =
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
   346
 ([("_constify", constify_ast_tr), ("_appl", appl_ast_tr), ("_applC", applC_ast_tr),
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
   347
   ("_lambda", lambda_ast_tr), ("_idtyp", idtyp_ast_tr), ("_bigimpl", bigimpl_ast_tr)],
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 639
diff changeset
   348
  [("_abs", abs_tr), ("_aprop", aprop_tr), ("_ofclass", ofclass_tr),
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   349
   ("_TYPE", type_tr), ("_DDDOT", dddot_tr), ("_K", k_tr)],
3700
3a8192e83579 pure_trfuns: added constraint;
wenzelm
parents: 3691
diff changeset
   350
  []: (string * (term list -> term)) list,
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   351
  [("_abs", abs_ast_tr'), ("_idts", idtyp_ast_tr' "_idts"),
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   352
   ("_pttrns", idtyp_ast_tr' "_pttrns"), ("==>", impl_ast_tr')]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   353
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   354
val pure_trfunsT =
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   355
  [("_mk_ofclass", mk_ofclass_tr'), ("TYPE", type_tr')];
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   356
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   357
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   358
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   359
(** pt_to_ast **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   360
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   361
fun pt_to_ast trf pt =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   362
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   363
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   364
      (case trf a of
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   365
        None => Ast.mk_appl (Ast.Constant a) args
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   366
      | Some f => f args handle exn
987
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   367
          => (writeln ("Error in parse ast translation for " ^ quote a);
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   368
              raise exn));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   369
987
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   370
    (*translate pt bottom-up*)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   371
    fun ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   372
      | ast_of (Parser.Tip tok) = Ast.Variable (Lexicon.str_of_token tok);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   373
  in
1178
b28c6ecc3e6d added cargs for curried function application
clasohm
parents: 987
diff changeset
   374
    ast_of pt
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   375
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   376
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   377
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   378
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   379
(** ast_to_term **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   380
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   381
fun ast_to_term trf ast =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   382
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   383
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   384
      (case trf a of
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   385
        None => Term.list_comb (Lexicon.const a, args)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   386
      | Some f => f args handle exn
987
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   387
          => (writeln ("Error in parse translation for " ^ quote a);
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   388
              raise exn));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   389
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   390
    fun term_of (Ast.Constant a) = trans a []
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   391
      | term_of (Ast.Variable x) = Lexicon.read_var x
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   392
      | term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   393
          trans a (map term_of asts)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   394
      | term_of (Ast.Appl (ast :: (asts as _ :: _))) =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   395
          Term.list_comb (term_of ast, map term_of asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   396
      | term_of (ast as Ast.Appl _) = raise Ast.AST ("ast_to_term: malformed ast", [ast]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   397
  in
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   398
    term_of ast
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   399
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   400
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   401
end;