src/Pure/install_pp.ML
author berghofe
Tue, 07 Nov 2000 17:52:12 +0100
changeset 10416 5b33e732e459
parent 3509 db03a42120bf
child 11885 427d80b807c7
permissions -rw-r--r--
- Moved rewriting functions to meta_simplifier.ML - dest_abs now also takes an optional variable name as an argument - beta_conversion takes additional flag as an argument. Fully reduces the term if set to true Some tuning: - tuned fix_shyps in instantiate, implies_intr, implies_elim, reflexive, transitive, beta_conversion, abstract_rule - combination: chktypes derives types of f and t from type of == instead of using fastype_of New primitives: - eta_conversion - incr_indexes: increment indexes in theorems - cterm_incr_indexes: increment indexes in cterms - cterm_match, cterm_first_order_match - rename_boundvars
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
     1
(*  Title:      Pure/install_pp.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
619
a0342b27b38e added init_pps;
wenzelm
parents: 254
diff changeset
     4
Set up automatic toplevel pretty printing.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
3509
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
     7
install_pp (make_pp ["Theory", "theory"] pprint_theory);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
     8
install_pp (make_pp ["Thm", "thm"] pprint_thm);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
     9
install_pp (make_pp ["Thm", "cterm"] pprint_cterm);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
    10
install_pp (make_pp ["Thm", "ctyp"] pprint_ctyp);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
    11
install_pp (make_pp ["Sign", "sg"] Sign.pprint_sg);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
    12
install_pp (make_pp ["Syntax", "ast"] Syntax.pprint_ast);
db03a42120bf removed init_pps;
wenzelm
parents: 1528
diff changeset
    13
install_pp (make_pp ["typ"] Syntax.simple_pprint_typ);