src/Pure/display.ML
author wenzelm
Sat, 03 Jul 1999 00:21:35 +0200
changeset 6889 adcf91ad5add
parent 6846 f2380295d4dd
child 6894 b92c2f0413b8
permissions -rw-r--r--
pretty_thm: include oracles (!) in hyps;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     1
(*  Title:      Pure/display.ML
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     2
    ID:         $Id$
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     5
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     6
Printing of theories, theorems, etc.
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     7
*)
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     8
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
     9
signature DISPLAY =
4950
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    10
sig
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    11
  val show_hyps		: bool ref
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    12
  val show_tags		: bool ref
6314
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    13
  val pretty_thm_no_quote: thm -> Pretty.T
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    14
  val pretty_thm	: thm -> Pretty.T
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    15
  val pretty_thms	: thm list -> Pretty.T
4950
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    16
  val string_of_thm	: thm -> string
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    17
  val pprint_thm	: thm -> pprint_args -> unit
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    18
  val print_thm		: thm -> unit
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    19
  val print_thms	: thm list -> unit
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    20
  val prth		: thm -> thm
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4256
diff changeset
    21
  val prthq		: thm Seq.seq -> thm Seq.seq
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    22
  val prths		: thm list -> thm list
4950
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    23
  val pretty_ctyp	: ctyp -> Pretty.T
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    24
  val pprint_ctyp	: ctyp -> pprint_args -> unit
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    25
  val string_of_ctyp	: ctyp -> string
4950
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    26
  val print_ctyp	: ctyp -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    27
  val pretty_cterm	: cterm -> Pretty.T
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    28
  val pprint_cterm	: cterm -> pprint_args -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    29
  val string_of_cterm	: cterm -> string
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    30
  val print_cterm	: cterm -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    31
  val pretty_theory	: theory -> Pretty.T
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    32
  val pprint_theory	: theory -> pprint_args -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    33
  val print_syntax	: theory -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    34
  val print_theory	: theory -> unit
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    35
  val pretty_name_space : string * NameSpace.T -> Pretty.T
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    36
  val show_consts	: bool ref
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    37
end;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    38
4950
226f2cde9f4d tuned signature;
wenzelm
parents: 4782
diff changeset
    39
structure Display: DISPLAY =
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    40
struct
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    41
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    42
(** print thm **)
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    43
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    44
val show_hyps = ref true;	(*false: print meta-hypotheses as dots*)
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    45
val show_tags = ref false;	(*false: suppress tags*)
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    46
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    47
local
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    48
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    49
fun pretty_tag (name, args) = Pretty.strs (name :: args);
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    50
val pretty_tags = Pretty.list "[" "]" o map pretty_tag;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    51
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    52
fun is_oracle (Thm.Oracle _) = true
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    53
  | is_oracle _ = false;
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    54
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    55
fun ex_oracle (Join (der, ders)) = is_oracle der orelse exists ex_oracle ders;
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    56
6314
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    57
fun pretty_thm_aux quote th =
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    58
  let
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    59
    val {sign, hyps, prop, der, ...} = rep_thm th;
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    60
    val xshyps = Thm.extra_shyps th;
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    61
    val (_, tags) = Thm.get_name_tags th;
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    62
6314
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    63
    val prt_term = (if quote then Pretty.quote else I) o Sign.pretty_term sign;
6279
eb4dc43023af pretty_thm: quote terms (separately);
wenzelm
parents: 6087
diff changeset
    64
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    65
    val hlen = length xshyps + length hyps;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    66
    val hsymbs =
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    67
      if hlen = 0 then []
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    68
      else if ! show_hyps then
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    69
        [Pretty.brk 2, Pretty.list "[" "]"
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    70
          (map prt_term hyps @ map (Sign.pretty_sort sign) xshyps @
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    71
            (if ex_oracle der then [Pretty.str "!"] else []))]
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    72
      else [Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    73
        (if ex_oracle der then "!" else "") ^ "]")];
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    74
    val tsymbs =
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    75
      if null tags orelse not (! show_tags) then []
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    76
      else [Pretty.brk 1, pretty_tags tags];
6279
eb4dc43023af pretty_thm: quote terms (separately);
wenzelm
parents: 6087
diff changeset
    77
  in Pretty.block (prt_term prop :: (hsymbs @ tsymbs)) end;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    78
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    79
in
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    80
6314
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    81
val pretty_thm_no_quote = pretty_thm_aux false;
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    82
val pretty_thm = pretty_thm_aux true;
47c801a77f32 pretty_thm_no_quote;
wenzelm
parents: 6279
diff changeset
    83
6889
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    84
end;
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    85
adcf91ad5add pretty_thm: include oracles (!) in hyps;
wenzelm
parents: 6846
diff changeset
    86
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    87
val string_of_thm = Pretty.string_of o pretty_thm;
6279
eb4dc43023af pretty_thm: quote terms (separately);
wenzelm
parents: 6087
diff changeset
    88
val pprint_thm = Pretty.pprint o pretty_thm;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    89
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    90
fun pretty_thms [th] = pretty_thm th
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    91
  | pretty_thms ths = Pretty.block (Pretty.fbreaks (map pretty_thm ths));
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    92
6087
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    93
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    94
(* top-level commands for printing theorems *)
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    95
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    96
val print_thm = Pretty.writeln o pretty_thm;
c8ec08fced15 show_tags;
wenzelm
parents: 5902
diff changeset
    97
val print_thms = Pretty.writeln o pretty_thms;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    98
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
    99
fun prth th = (print_thm th; th);
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   100
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   101
(*Print and return a sequence of theorems, separated by blank lines. *)
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   102
fun prthq thseq =
4270
957c887b89b5 changed Sequence interface (now Seq, in seq.ML);
wenzelm
parents: 4256
diff changeset
   103
  (Seq.print (fn _ => print_thm) 100000 thseq; thseq);
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   104
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   105
(*Print and return a list of theorems, separated by blank lines. *)
4210
abce78c8a931 tuned prths;
wenzelm
parents: 4126
diff changeset
   106
fun prths ths = (seq (fn th => (print_thm th; writeln "")) ths; ths);
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   107
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   108
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   109
(* other printing commands *)
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   110
4126
c41846a38e20 added pretty_ctyp;
wenzelm
parents: 3990
diff changeset
   111
fun pretty_ctyp cT =
c41846a38e20 added pretty_ctyp;
wenzelm
parents: 3990
diff changeset
   112
  let val {sign, T} = rep_ctyp cT in Sign.pretty_typ sign T end;
c41846a38e20 added pretty_ctyp;
wenzelm
parents: 3990
diff changeset
   113
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   114
fun pprint_ctyp cT =
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   115
  let val {sign, T} = rep_ctyp cT in Sign.pprint_typ sign T end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   116
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   117
fun string_of_ctyp cT =
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   118
  let val {sign, T} = rep_ctyp cT in Sign.string_of_typ sign T end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   119
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   120
val print_ctyp = writeln o string_of_ctyp;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   121
3547
977d58464d7f added pretty_cterm;
wenzelm
parents: 3531
diff changeset
   122
fun pretty_cterm ct =
977d58464d7f added pretty_cterm;
wenzelm
parents: 3531
diff changeset
   123
  let val {sign, t, ...} = rep_cterm ct in Sign.pretty_term sign t end;
977d58464d7f added pretty_cterm;
wenzelm
parents: 3531
diff changeset
   124
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   125
fun pprint_cterm ct =
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   126
  let val {sign, t, ...} = rep_cterm ct in Sign.pprint_term sign t end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   127
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   128
fun string_of_cterm ct =
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   129
  let val {sign, t, ...} = rep_cterm ct in Sign.string_of_term sign t end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   130
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   131
val print_cterm = writeln o string_of_cterm;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   132
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   133
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   134
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   135
(** print theory **)
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   136
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6314
diff changeset
   137
val pretty_theory = Sign.pretty_sg o Theory.sign_of;
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6314
diff changeset
   138
val pprint_theory = Sign.pprint_sg o Theory.sign_of;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   139
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6314
diff changeset
   140
val print_syntax = Syntax.print_syntax o Theory.syn_of;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   141
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   142
4498
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   143
(* pretty_name_space  *)
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   144
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   145
fun pretty_name_space (kind, space) =
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   146
  let
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   147
    fun prt_entry (name, accs) = Pretty.block
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   148
      (Pretty.str (quote name ^ " =") :: Pretty.brk 1 ::
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   149
        Pretty.commas (map (Pretty.str o quote) accs));
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   150
  in
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   151
    Pretty.fbreaks (Pretty.str (kind ^ ":") :: map prt_entry (NameSpace.dest space))
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   152
    |> Pretty.block
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   153
  end;
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   154
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   155
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   156
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   157
(* print signature *)
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   158
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   159
fun print_sign sg =
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   160
  let
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   161
    fun prt_cls c = Sign.pretty_sort sg [c];
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   162
    fun prt_sort S = Sign.pretty_sort sg S;
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   163
    fun prt_arity t (c, Ss) = Sign.pretty_arity sg (t, Ss, [c]);
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   164
    fun prt_typ ty = Pretty.quote (Sign.pretty_typ sg ty);
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   165
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   166
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   167
    fun pretty_classes cs = Pretty.block
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   168
      (Pretty.breaks (Pretty.str "classes:" :: map prt_cls cs));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   169
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   170
    fun pretty_classrel (c, cs) = Pretty.block
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   171
      (prt_cls c :: Pretty.str " <" :: Pretty.brk 1 ::
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   172
        Pretty.commas (map prt_cls cs));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   173
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   174
    fun pretty_default S = Pretty.block
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   175
      [Pretty.str "default:", Pretty.brk 1, prt_sort S];
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   176
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   177
    fun pretty_ty (t, n) = Pretty.block
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   178
      [Pretty.str (Sign.cond_extern sg Sign.typeK t), Pretty.spc 1, Pretty.str (string_of_int n)];
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   179
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   180
    fun pretty_abbr (t, (vs, rhs)) = Pretty.block
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   181
      [prt_typ (Type (t, map (fn v => TVar ((v, 0), [])) vs)),
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   182
        Pretty.str " =", Pretty.brk 1, prt_typ rhs];
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   183
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   184
    fun pretty_arities (t, ars) = map (prt_arity t) ars;
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   185
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   186
    fun pretty_const (c, ty) = Pretty.block
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   187
      [Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ ty];
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   188
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   189
    val {self = _, tsig, const_tab, syn = _, path, spaces, data} = Sign.rep_sg sg;
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   190
    val spaces' = Library.sort_wrt fst spaces;
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   191
    val {classes, classrel, default, tycons, abbrs, arities} =
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   192
      Type.rep_tsig tsig;
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   193
    val consts = Sign.cond_extern_table sg Sign.constK const_tab;
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   194
  in
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   195
    Pretty.writeln (Pretty.strs ("stamps:" :: Sign.stamp_names_of sg));
4256
e768c42069bb removed data.ML (made part of sign.ML);
wenzelm
parents: 4250
diff changeset
   196
    Pretty.writeln (Pretty.strs ("data:" :: Sign.data_kinds data));
4782
9c0b31da51c6 tuned comments;
wenzelm
parents: 4498
diff changeset
   197
    Pretty.writeln (Pretty.strs ["name prefix:", NameSpace.pack path]);
4498
a088ec3e4f5e pretty_name_space;
wenzelm
parents: 4440
diff changeset
   198
    Pretty.writeln (Pretty.big_list "name spaces:" (map pretty_name_space spaces'));
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   199
    Pretty.writeln (pretty_classes classes);
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   200
    Pretty.writeln (Pretty.big_list "class relation:" (map pretty_classrel classrel));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   201
    Pretty.writeln (pretty_default default);
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   202
    Pretty.writeln (Pretty.big_list "type constructors:" (map pretty_ty tycons));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   203
    Pretty.writeln (Pretty.big_list "type abbreviations:" (map pretty_abbr abbrs));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   204
    Pretty.writeln (Pretty.big_list "type arities:" (flat (map pretty_arities arities)));
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   205
    Pretty.writeln (Pretty.big_list "consts:" (map pretty_const consts))
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   206
  end;
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   207
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   208
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   209
(* print axioms, oracles, theorems *)
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   210
3811
ec27ddb5104c print_theory: added oracles;
wenzelm
parents: 3785
diff changeset
   211
fun print_thy thy =
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   212
  let
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6314
diff changeset
   213
    val {sign, axioms, oracles, ...} = Theory.rep_theory thy;
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   214
    fun cond_externs kind = Sign.cond_extern_table sign kind;
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   215
3936
1954255c29ef tuned output;
wenzelm
parents: 3879
diff changeset
   216
    fun prt_axm (a, t) = Pretty.block
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   217
      [Pretty.str (a ^ ":"), Pretty.brk 1, Pretty.quote (Sign.pretty_term sign t)];
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   218
  in
6846
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   219
    Pretty.writeln (Pretty.big_list "axioms:" (map prt_axm (cond_externs Theory.axiomK axioms)));
f2380295d4dd cond_extern_table;
wenzelm
parents: 6390
diff changeset
   220
    Pretty.writeln (Pretty.strs ("oracles:" :: (map #1 (cond_externs Theory.oracleK oracles))))
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   221
  end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   222
6390
5d58c100ca3f qualify Theory.sign_of etc.;
wenzelm
parents: 6314
diff changeset
   223
fun print_theory thy = (print_sign (Theory.sign_of thy); print_thy thy);
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   224
4250
3806a00677ff moved Sign.print_sg to display.ML;
wenzelm
parents: 4210
diff changeset
   225
(*also show consts in case of showing types?*)
3851
fe9932a7cd46 print_goals: optional output of const types (set show_consts);
wenzelm
parents: 3811
diff changeset
   226
val show_consts = ref false;
fe9932a7cd46 print_goals: optional output of const types (set show_consts);
wenzelm
parents: 3811
diff changeset
   227
1591
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   228
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   229
end;
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   230
7fa0265dcd13 New module for display/printing operations, taken from drule.ML
paulson
parents:
diff changeset
   231
open Display;