Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-01 00:04:52 -0800 (Tue, 01 Feb 2005)
Revision: 6554
Log message:

      Use silent mode, when VERBOSE is _false_, not when it's _undefined_ (but if it
      is undefined, set it to false).
      

Changes  Path
+5 -2 metaprl/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-01 03:44:55 -0800 (Tue, 01 Feb 2005)
Revision: 6555
Log message:

      d_apply_equalT should not be topval
      

Changes  Path
+0 -1 metaprl-branches/opname_classes3/theories/itt/itt_fun.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-01 03:55:48 -0800 (Tue, 01 Feb 2005)
Revision: 6556
Log message:

      When Stdpp.Exc_located is raised and the file name is empty (as it happens,
      for example, with Stdpp.Exc_located exceptions raised on the CLI), there is no
      need to print the empty file name.
      

Changes  Path
+30 -32 metaprl-branches/opname_classes3/filter/base/filter_exn.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-01 06:51:21 -0800 (Tue, 01 Feb 2005)
Revision: 6557
Log message:

      Deleted some unused code
      

Changes  Path
+0 -9 metaprl/filter/base/filter_util.ml
+0 -1 metaprl/filter/base/filter_util.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-01 11:36:33 -0800 (Tue, 01 Feb 2005)
Revision: 6558
Log message:

      Changed the indentation of begin-end blocks.
      
      let x = begin
         if true then begin
            1;
            begin
               2;
               3
            end;
            4
         end
         else
            2
      end
      

Changes  Path
+1 -1 metaprl/editor/emacs/caml.el
Binary metaprl/editor/emacs/caml.elc

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-01 15:07:59 -0800 (Tue, 01 Feb 2005)
Revision: 6560
Log message:

      The context_vars function makes more sense in TermMan, then in TermSubst.
      

Changes  Path
+3 -3 metaprl/refiner/refiner/refiner_debug.ml
+1 -0 metaprl/refiner/refsig/term_man_sig.ml
+0 -1 metaprl/refiner/refsig/term_subst_sig.ml
+22 -0 metaprl/refiner/term_ds/term_man_ds.ml
+0 -22 metaprl/refiner/term_ds/term_subst_ds.ml
+16 -0 metaprl/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl/refiner/term_gen/term_meta_gen.ml
+0 -15 metaprl/refiner/term_std/term_subst_std.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-01 16:51:43 -0800 (Tue, 01 Feb 2005)
Revision: 6561
Log message:

      Add a theory Itt_synt_bterm
      Aleksey, note that we have to add the rule  operatorSquiddle.
      

Changes  Path
+1 -0 metaprl/theories/itt/OMakefile
+6 -0 metaprl/theories/itt/itt_list2.ml
+1 -0 metaprl/theories/itt/itt_list2.mli
Added metaprl/theories/itt/itt_synt_bterm.ml
Properties metaprl/theories/itt/itt_synt_bterm.ml
Added metaprl/theories/itt/itt_synt_bterm.mli
Properties metaprl/theories/itt/itt_synt_bterm.mli
+0 -0 metaprl/theories/itt/itt_synt_operator.ml
+5 -0 metaprl/theories/itt/itt_synt_operator.mli
Deleted metaprl/theories/itt/itt_synt_term.ml
+3 -0 metaprl/theories/itt/itt_synt_var.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-01 18:27:43 -0800 (Tue, 01 Feb 2005)
Revision: 6562
Log message:

      More on reflection
      

Changes  Path
+6 -0 metaprl/theories/base/base_reflection.ml
+151 -0 metaprl/theories/itt/itt_synt_bterm.ml
+2 -0 metaprl/theories/itt/itt_synt_bterm.mli
+13 -13 metaprl/theories/itt/itt_synt_operator.ml
+1 -1 metaprl/theories/itt/itt_synt_operator.mli
+1 -0 metaprl/theories/itt/itt_synt_var.mli

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-02 00:06:52 -0800 (Wed, 02 Feb 2005)
Revision: 6563
Log message:

      proofs.
      

Changes  Path
+9 -3 metaprl/theories/itt/itt_synt_var.ml
Added metaprl/theories/itt/itt_synt_var.prla
Properties metaprl/theories/itt/itt_synt_var.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-02 00:36:23 -0800 (Wed, 02 Feb 2005)
Revision: 6564
Log message:

      fixed a small bug
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_nat.ml
+630 -620 metaprl/theories/itt/itt_nat.prla
+1304 -1085 metaprl/theories/itt/itt_poly.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-02 03:06:01 -0800 (Wed, 02 Feb 2005)
Revision: 6565
Log message:

      Whew, mmc now compiles with full type information.
      
      Here are some tradeoffs.
      
         1. Type information is *very* useful.  I caught many errors
            in mmc with it.
         2. It also requires you be more verbose.  For example, you
            might need separate terms:
      
               Foo{'e : Exp}
               FooList{'el : List{Exp}}
      
            you probably got away with just Foo{'a} before.
         3. It is also unsound.  This is mainly because there is no relation
            between rules, so one rule can't tell any type constraints of
            another rule.
      

Changes  Path
+10 -15 metaprl-branches/opname_classes3/filter/base/filter_cache_fun.ml
+1 -1 metaprl-branches/opname_classes3/filter/base/filter_magic.ml
+1 -0 metaprl-branches/opname_classes3/filter/base/filter_type.ml
+10 -8 metaprl-branches/opname_classes3/filter/filter/filter_parse.ml
+16 -9 metaprl-branches/opname_classes3/filter/filter/filter_patt.ml
+25 -11 metaprl-branches/opname_classes3/filter/filter/term_grammar.ml
+3 -3 metaprl-branches/opname_classes3/refiner/refiner/refiner_debug.ml
+1 -1 metaprl-branches/opname_classes3/refiner/refsig/term_sig.ml
+1 -1 metaprl-branches/opname_classes3/refiner/term_ds/term_ds.ml
+1 -1 metaprl-branches/opname_classes3/refiner/term_ds/term_ds_sig.ml
+9 -6 metaprl-branches/opname_classes3/refiner/term_ds/term_man_ds.ml
+1 -1 metaprl-branches/opname_classes3/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl-branches/opname_classes3/refiner/term_std/term_std.ml
+1 -1 metaprl-branches/opname_classes3/refiner/term_std/term_std_sig.ml
+11 -131 metaprl-branches/opname_classes3/support/display/perv.ml
+107 -17 metaprl-branches/opname_classes3/support/display/perv.mli
+0 -1 mpcompiler-branches/opname_classes3/mmc/OMakefile
+9 -111 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_asm.ml
+33 -16 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_asm.mli
+95 -90 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_backend.ml
+8 -8 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_closure.ml
+43 -61 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_codegen.ml
+18 -7 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_codegen.mli
+56 -56 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_convention.ml
+22 -27 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_frame.ml
+15 -15 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_frame.mli
+1 -1 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_hoist.ml
+3 -3 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_opt1.ml
+18 -28 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_prologue.ml
+16 -9 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_prologue.mli
+12 -13 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_slop.ml
+59 -57 mpcompiler-branches/opname_classes3/mmc/arch/x86/mmc_x86_spill.ml
+6 -1 mpcompiler-branches/opname_classes3/mmc/base/mmc_base_judgment.mli
+0 -7 mpcompiler-branches/opname_classes3/mmc/base/mmc_base_meta.ml
+5 -3 mpcompiler-branches/opname_classes3/mmc/base/mmc_base_meta.mli
+75 -61 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_closure.ml
+0 -4 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_closure.mli
+138 -93 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_cps.ml
+5 -1 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_cps.mli
+11 -18 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_front.ml
+1 -0 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_front.mli
+1 -1 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_hoist.ml
+16 -22 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_inline.ml
+2 -3 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_inline.mli
+4 -4 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_optimize.ml
+18 -27 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_reserve.ml
+3 -6 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_reserve.mli
+0 -121 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_sweep_ty.ml
+3 -0 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_sweep_ty.mli
+1 -0 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_tast.mli
+2 -10 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_type_erase.ml
+10 -3 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_type_erase.mli
+128 -0 mpcompiler-branches/opname_classes3/mmc/core/mmc_core_type_infer.ml
+13 -20 mpcompiler-branches/opname_classes3/mmc/extensions/array/mmc_ext_array.ml
+7 -5 mpcompiler-branches/opname_classes3/mmc/extensions/array/mmc_ext_array.mli
+29 -24 mpcompiler-branches/opname_classes3/mmc/extensions/array/mmc_ext_array_x86.ml
+27 -45 mpcompiler-branches/opname_classes3/mmc/extensions/bool/mmc_ext_bool.ml
+2 -2 mpcompiler-branches/opname_classes3/mmc/extensions/bool/mmc_ext_boolean_x86.ml
+20 -42 mpcompiler-branches/opname_classes3/mmc/extensions/int/mmc_ext_int.ml
+43 -43 mpcompiler-branches/opname_classes3/mmc/extensions/int/mmc_ext_integer_x86.ml
+7 -10 mpcompiler-branches/opname_classes3/mmc/extensions/loop/mmc_ext_loop.ml
+3 -1 mpcompiler-branches/opname_classes3/mmc/extensions/loop/mmc_ext_loop.mli
+42 -55 mpcompiler-branches/opname_classes3/mmc/extensions/operator/mmc_ext_operator.ml
+6 -2 mpcompiler-branches/opname_classes3/mmc/extensions/operator/mmc_ext_operator.mli
+8 -8 mpcompiler-branches/opname_classes3/mmc/extensions/reserve/mmc_ext_reserve.ml
+1 -1 mpcompiler-branches/opname_classes3/mmc/extensions/reserve/mmc_ext_reserve.mli
+8 -8 mpcompiler-branches/opname_classes3/mmc/extensions/reserve/mmc_ext_reserve_x86.ml
+2 -2 mpcompiler-branches/opname_classes3/mmc/extensions/special/mmc_ext_special_x86.ml
+12 -20 mpcompiler-branches/opname_classes3/mmc/extensions/tuple/mmc_ext_tuple.ml
+7 -5 mpcompiler-branches/opname_classes3/mmc/extensions/tuple/mmc_ext_tuple.mli
+9 -4 mpcompiler-branches/opname_classes3/mmc/extensions/tuple/mmc_ext_tuple_x86.ml
+3 -7 mpcompiler-branches/opname_classes3/mmc/extensions/unit/mmc_ext_unit.ml
+5 -2 mpcompiler-branches/opname_classes3/mmc/extensions/unit/mmc_ext_unit.mli
+0 -1 mpcompiler-branches/opname_classes3/mmc/main/mmc_theory.ml
+0 -1 mpcompiler-branches/opname_classes3/mmc/main/mmc_theory.mli
+37 -37 mpcompiler-branches/opname_classes3/mmc/opt/direct/core/mmc_opt_direct.ml
+23 -23 mpcompiler-branches/opname_classes3/mmc/test/mmc_array_test.ml
+8 -3 mpcompiler-branches/opname_classes3/mmc/test/mmc_spill_test.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-02 13:43:35 -0800 (Wed, 02 Feb 2005)
Revision: 6566
Log message:

      The standalone libmojave was forgetting all INCLUDES, so
      ssl was not being included on Win32.
      

Changes  Path
+1 -1 metaprl/mk/defaults

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-02 15:40:17 -0800 (Wed, 02 Feb 2005)
Revision: 6567
Log message:

      Add the connection between synt_bterm and base_reflection 'numerals'
      

Changes  Path
+1 -0 metaprl/theories/itt/OMakefile
Added metaprl/theories/itt/itt_reflection_new.ml
Properties metaprl/theories/itt/itt_reflection_new.ml
Added metaprl/theories/itt/itt_reflection_new.mli
Properties metaprl/theories/itt/itt_reflection_new.mli
+5 -0 metaprl/theories/itt/itt_synt_bterm.mli

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-02 15:55:38 -0800 (Wed, 02 Feb 2005)
Revision: 6568
Log message:

      proofs.
      

Changes  Path
+5 -1 metaprl/theories/itt/itt_synt_operator.ml
Added metaprl/theories/itt/itt_synt_operator.prla
Properties metaprl/theories/itt/itt_synt_operator.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-02 16:03:00 -0800 (Wed, 02 Feb 2005)
Revision: 6569
Log message:

      Forget to commit base_reflection last time
      

Changes  Path
+2 -1 metaprl/theories/base/base_reflection.mli
+0 -0 metaprl/theories/itt/itt_reflection_new.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-02 17:30:13 -0800 (Wed, 02 Feb 2005)
Revision: 6570
Log message:

      Minor updates
      

Changes  Path
+0 -0 metaprl/theories/itt/itt_reflection_new.ml
+8 -3 metaprl/theories/itt/itt_synt_bterm.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-02 18:18:11 -0800 (Wed, 02 Feb 2005)
Revision: 6571
Log message:

      made bterm_elim primitive and bterm_ind_wf interactive.
      

Changes  Path
+18 -20 metaprl/theories/itt/itt_synt_bterm.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-02 22:28:40 -0800 (Wed, 02 Feb 2005)
Revision: 6572
Log message:

      Removing an unused opname
      

Changes  Path
+0 -1 metaprl/support/display/summary.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-02 23:39:02 -0800 (Wed, 02 Feb 2005)
Revision: 6573
Log message:

      Made the interface slightly more specific
      

Changes  Path
+14 -14 metaprl/refiner/reflib/mp_resource.ml
+14 -14 metaprl/refiner/reflib/mp_resource.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 00:34:46 -0800 (Thu, 03 Feb 2005)
Revision: 6574
Log message:

      This brings the support for non-sequent contexts one step closer. Now the
      non-sequent contexts are properly recognized by the filter and the
      corresponding address arguments are properly recognized and properly passed to
      the rewriter.
      
      The rewriter support, however, is still incomplete (this is the last missing
      piece of the puzzle) - any non-trivial usage of contexts is likely to result
      in Invalid_argument("...not supported...") from the rewriter.
      

Changes  Path
+8 -6 metaprl/filter/base/filter_magic.ml
+15 -9 metaprl/filter/base/filter_summary.ml
+31 -19 metaprl/filter/base/filter_summary_util.ml
+3 -3 metaprl/filter/base/filter_summary_util.mli
+2 -1 metaprl/filter/base/filter_type.ml
+69 -51 metaprl/filter/filter/filter_prog.ml
+18 -18 metaprl/refiner/refiner/refine.ml
+2 -2 metaprl/refiner/refiner/refine.mli
+71 -27 metaprl/refiner/refiner/refiner_debug.ml
+3 -3 metaprl/refiner/reflib/term_match_table.ml
+1 -0 metaprl/refiner/reflib/term_match_table.mli
+1 -1 metaprl/refiner/refsig/Files
+5 -5 metaprl/refiner/refsig/refine_sig.ml
+4 -4 metaprl/refiner/refsig/refiner_sig.ml
+24 -11 metaprl/refiner/refsig/rewrite_sig.ml
+1 -1 metaprl/refiner/refsig/term_man_sig.ml
+1 -1 metaprl/refiner/refsig/term_meta_sig.ml
+10 -6 metaprl/refiner/rewrite/rewrite.ml
+4 -4 metaprl/refiner/rewrite/rewrite.mli
+20 -14 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+5 -0 metaprl/refiner/rewrite/rewrite_debug.ml
+9 -5 metaprl/refiner/rewrite/rewrite_match_redex.ml
+2 -1 metaprl/refiner/rewrite/rewrite_match_redex.mli
+1 -0 metaprl/refiner/rewrite/rewrite_types.ml
+22 -14 metaprl/refiner/term_ds/term_man_ds.ml
+14 -12 metaprl/refiner/term_gen/term_man_gen.ml
+3 -1 metaprl/refiner/term_gen/term_meta_gen.ml
+24 -7 metaprl/support/display/summary.ml
+1 -8 metaprl/support/display/summary.mli
+3 -0 metaprl/support/shell/proof_edit.ml
+8 -6 metaprl/support/tactics/auto_tactic.ml
+2 -0 metaprl/support/tactics/basic_tactics.ml
+16 -10 metaprl/support/tactics/dtactic.ml
+4 -3 metaprl/tactics/proof/proof_boot.ml
+38 -7 metaprl/tactics/proof/proof_term_boot.ml
+4 -3 metaprl/tactics/proof/rewrite_boot.ml
+4 -1 metaprl/tactics/proof/tactic_boot.ml
+6 -3 metaprl/tactics/proof/tactic_boot_sig.ml
+2 -2 metaprl/theories/itt/itt_int_arith.ml
+8 -6 metaprl/theories/itt/itt_squash.ml
+6 -3 metaprl/util/gen_refiner_debug.pl

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 00:41:07 -0800 (Thu, 03 Feb 2005)
Revision: 6575
Log message:

      Do not include the tests directory, unless any test files are actually in use.
      

Changes  Path
+2 -1 metaprl/editor/ml/OMakefile

Changes by: ( at unknown.email)
Date: 2005-02-03 00:41:07 -0800 (Thu, 03 Feb 2005)
Revision: 6576
Log message:

      This commit was manufactured by cvs2svn to create branch
      'opname_classes3'.

Changes  Path
Copied metaprl-branches/opname_classes3/editor/ml/OMakefile
Copied metaprl-branches/opname_classes3/util/check-status.sh

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-03 00:47:35 -0800 (Thu, 03 Feb 2005)
Revision: 6577
Log message:

      1. Strip type constraints at parse time after type checking.
      
         I added the function Term_man_{ds,gen}.sweep_up_term.
         I'm not sure, but this is probably not definable in
         Refiner_debug, because the type
      
            sweep_up_term : (term -> term) -> term -> term
      
         contains a positive occurrence of the term type in an argument.
      
         We *could* move this function out of the refiner, but it
         seems a bit silly to do it.  Let's see what Aleksey thinks.
      
      2. I accidentally removed collect_opnames in Filter_cache_fun.
         Added it back.
      
      check-status now works, apart from the new theorems for reflection.
      It is time to merge, at least once we decide what to do with the
      sweep_up_term function.
      

Changes  Path
+1 -1 metaprl-branches/opname_classes3/OMakefile
+20 -5 metaprl-branches/opname_classes3/filter/base/filter_cache_fun.ml
+0 -4 metaprl-branches/opname_classes3/filter/filter/filter_patt.ml
+8 -6 metaprl-branches/opname_classes3/filter/filter/term_grammar.ml
+4 -0 metaprl-branches/opname_classes3/refiner/refiner/refiner_debug.ml
+12 -0 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.ml
+5 -0 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.mli
+4 -0 metaprl-branches/opname_classes3/refiner/refsig/term_man_sig.ml
+2 -0 metaprl-branches/opname_classes3/refiner/refsig/term_meta_sig.ml
+48 -0 metaprl-branches/opname_classes3/refiner/term_ds/term_man_ds.ml
+54 -0 metaprl-branches/opname_classes3/refiner/term_gen/term_man_gen.ml
+17 -1 metaprl-branches/opname_classes3/refiner/term_gen/term_meta_gen.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 01:51:30 -0800 (Thu, 03 Feb 2005)
Revision: 6578
Log message:

      The display form operators ("slot", "pushm", etc) and options ("mode",
      "parens", etc) are now properly declared in the Perv module instead of being
      hacked into the opname table by the Filter_cache_fun. (Issue 398)
      

Changes  Path
+1 -46 metaprl/filter/base/filter_cache_fun.ml
+3 -6 metaprl/refiner/reflib/dform.ml
+1 -1 metaprl/support/display/base_dform.ml
+4 -4 metaprl/support/display/nuprl_font.ml
+33 -0 metaprl/support/display/perv.ml
+31 -0 metaprl/support/display/perv.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 02:03:33 -0800 (Thu, 03 Feb 2005)
Revision: 6579
Log message:

      Display forms updates to support the recently added address parameters.
      

Changes  Path
+11 -6 metaprl/support/display/summary.ml
+2 -1 metaprl/support/display/summary.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 03:57:02 -0800 (Thu, 03 Feb 2005)
Revision: 6580
Log message:

      Removing TermMan.sweep_up_term (which was a dup of TermOp.map_up_term)
      

Changes  Path
+1 -1 metaprl-branches/opname_classes3/OMakefile
+4 -4 metaprl-branches/opname_classes3/refiner/refiner/refiner_debug.ml
+1 -1 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.ml
+0 -4 metaprl-branches/opname_classes3/refiner/refsig/term_man_sig.ml
+0 -48 metaprl-branches/opname_classes3/refiner/term_ds/term_man_ds.ml
+0 -54 metaprl-branches/opname_classes3/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl-branches/opname_classes3/util/gen_refiner_debug.pl

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 04:03:27 -0800 (Thu, 03 Feb 2005)
Revision: 6581
Log message:

      It's map_up, not map_up_term, sorry!
      

Changes  Path
+1 -1 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-03 11:08:01 -0800 (Thu, 03 Feb 2005)
Revision: 6582
Log message:

      Ported the display form changes, and removed the wildcard types
      for unknown terms.
      
      Added types for quoted terms.  For example if we have
      
         declare lambda{x : T1. 'e['x] : T2} : T3
      
      then we also get
      
         lambda[@]{x : Term. Term} : Term
      
      I would rather use a type Quote for quoted terms, but this will
      surely break in ITT.  For example, the following would be
      well-typed:
      
         apply[@]{t1[@]; t2[@]}
      
      but the following would break
      
         apply[@]{fst{pair{t1[@]; t0[@]}}; t2[@]}
      

Changes  Path
+1 -46 metaprl-branches/opname_classes3/filter/base/filter_cache_fun.ml
+6 -1 metaprl-branches/opname_classes3/filter/base/filter_type.ml
+15 -8 metaprl-branches/opname_classes3/filter/filter/filter_parse.ml
+30 -10 metaprl-branches/opname_classes3/filter/filter/term_grammar.ml
+0 -3 metaprl-branches/opname_classes3/filter/filter/term_grammar.mli
+3 -6 metaprl-branches/opname_classes3/refiner/reflib/dform.ml
+46 -33 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.ml
+1 -1 metaprl-branches/opname_classes3/support/display/base_dform.ml
+4 -4 metaprl-branches/opname_classes3/support/display/nuprl_font.ml
+1 -1 metaprl-branches/opname_classes3/support/display/perv.ml
+34 -0 metaprl-branches/opname_classes3/support/display/perv.mli
+34 -14 metaprl-branches/opname_classes3/support/display/summary.ml
+2 -1 metaprl-branches/opname_classes3/support/display/summary.mli
+1 -0 metaprl-branches/opname_classes3/theories/itt/itt_record_renaming.ml
+1 -0 metaprl-branches/opname_classes3/theories/itt/itt_record_renaming.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 12:25:54 -0800 (Thu, 03 Feb 2005)
Revision: 6583
Log message:

      Fixing TERMS=std
      

Changes  Path
+6 -1 metaprl/refiner/term_gen/term_man_gen.ml

Changes by: ( at unknown.email)
Date: 2005-02-03 12:25:54 -0800 (Thu, 03 Feb 2005)
Revision: 6584
Log message:

      This commit was manufactured by cvs2svn to create branch
      'opname_classes4'.

Changes  Path
Copied metaprl-branches/opname_classes4
Copied mpcompiler-branches/opname_classes4
Copied texinputs-branches/opname_classes4
Deleted texinputs-branches/opname_classes4/1cm.sty
Deleted texinputs-branches/opname_classes4/1cml.sty
Deleted texinputs-branches/opname_classes4/Makefile
Deleted texinputs-branches/opname_classes4/Makefile-common
Deleted texinputs-branches/opname_classes4/PPR-macros.tex
Deleted texinputs-branches/opname_classes4/PPRmyppr.sty
Deleted texinputs-branches/opname_classes4/bcp.bib
Deleted texinputs-branches/opname_classes4/citlogo.eps
Deleted texinputs-branches/opname_classes4/citlogo2.eps
Deleted texinputs-branches/opname_classes4/config.ppr
Deleted texinputs-branches/opname_classes4/cornell-logo.eps
Deleted texinputs-branches/opname_classes4/dag50.eps
Deleted texinputs-branches/opname_classes4/der.tex
Deleted texinputs-branches/opname_classes4/gate.eps
Deleted texinputs-branches/opname_classes4/gate.pdf
Binary texinputs-branches/opname_classes4/gccuny-logo.eps
Binary texinputs-branches/opname_classes4/gccuny-logo.gif
Binary texinputs-branches/opname_classes4/gccuny-logo.pdf
Deleted texinputs-branches/opname_classes4/include.tex
Deleted texinputs-branches/opname_classes4/omscmsy.fd
Deleted texinputs-branches/opname_classes4/ot1cmr.fd
Deleted texinputs-branches/opname_classes4/ot1cmss.fd
Deleted texinputs-branches/opname_classes4/ot1lcmss.fd
Deleted texinputs-branches/opname_classes4/ot1lcmtt.fd
Deleted texinputs-branches/opname_classes4/pprpdf
Deleted texinputs-branches/opname_classes4/proof.sty
Deleted texinputs-branches/opname_classes4/slides-nogin.cls
Deleted texinputs-branches/opname_classes4/splncs.bst
Deleted texinputs-branches/opname_classes4/umsa.fd
Deleted texinputs-branches/opname_classes4/umsb.fd

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-03 16:00:47 -0800 (Thu, 03 Feb 2005)
Revision: 6586
Log message:

      Added the Quote typeclass.  Quoted terms have types like the following.
      
         apply[@]{'t1 : Term; 't2 : Term} : Quote
      

Changes  Path
+3 -21 metaprl-branches/opname_classes3/refiner/reflib/term_ty_infer.ml
+6 -0 metaprl-branches/opname_classes3/support/display/perv.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 18:14:03 -0800 (Thu, 03 Feb 2005)
Revision: 6587
Log message:

      Yet another instance of the opname_classes branch, merged once again with the
      trunk changes and re-branched.
      
      Known issues:
       - The .mli opname declarations are added to the .cmoz in the reverse order.
         This, among other things causes Failure ("unknown typeclass:
         Mmc_base_judgment!Prop") exception on cd'ing into the /mmc_base_judgment
         module.
       - The .mli opname declarations are added to the .cmoz even when .cmoz has its
         own copy. That results in the "ls" output (and other things, such as .cmoz
         and .prla files) being unnecessarily cluttered.
       - If the same shape is declared several times (possibly with incompatible
         types), does anybody notice?
      
      Potential TODOs and RFEs:
       - Proper type checking for display forms.
       - Could we may be come up with a way to propagate certain declarations from
         .ml into .cmiz (instead of the other way around)? Some declarations needs
         to stay in the .ml in order to get properly documented.
       - "declare sequent" shortcuts:
          - when the type is { Term : Term >- Term } : Term, allow omitting it
          - when the type is { Term : Term >- Term } : Foo, allow typing just ": Foo"
       - Perv!nil/Perv!cons should have the Dform type.
          - When the sequent conclusion is omitted, a we should use something other
            than Perv!nil for the conclusion. This new "default conclusion" term
            should be a member of a singleton type (in the Term typeclass), and MMC
            should be using that in the type of Mmc_core_ast!ty_args
          - Base_reflection should use its own cons and nil for bterm lists.
       - The new stuff (both the new syntax and the typechecking algorithm) need to
         be documented.
      

Changes  Path
+54 -52 metaprl-branches/opname_classes4/editor/ml/nuprl_eval.ml
+3 -1 metaprl-branches/opname_classes4/editor/ml/nuprl_jprover.ml
+703 -155 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+1 -0 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.mli
+55 -19 metaprl-branches/opname_classes4/filter/base/filter_exn.ml
+3 -2 metaprl-branches/opname_classes4/filter/base/filter_exn.mli
+41 -0 metaprl-branches/opname_classes4/filter/base/filter_grammar.ml
+7 -0 metaprl-branches/opname_classes4/filter/base/filter_grammar.mli
+6 -4 metaprl-branches/opname_classes4/filter/base/filter_magic.ml
+464 -49 metaprl-branches/opname_classes4/filter/base/filter_summary.ml
+13 -3 metaprl-branches/opname_classes4/filter/base/filter_summary_type.ml
+98 -22 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+7 -11 metaprl-branches/opname_classes4/filter/base/filter_util.ml
+0 -2 metaprl-branches/opname_classes4/filter/base/filter_util.mli
+769 -421 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+23 -15 metaprl-branches/opname_classes4/filter/filter/filter_patt.ml
+39 -9 metaprl-branches/opname_classes4/filter/filter/filter_prog.ml
+559 -150 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+5 -3 metaprl-branches/opname_classes4/filter/filter/term_grammar.mli
+1 -0 metaprl-branches/opname_classes4/filter/phobos/phobos_constants.ml
+1 -1 metaprl-branches/opname_classes4/filter/phobos/phobos_parser.mly
+29 -26 metaprl-branches/opname_classes4/library/basic.ml
+52 -49 metaprl-branches/opname_classes4/library/db.ml
+17 -15 metaprl-branches/opname_classes4/library/definition.ml
+9 -7 metaprl-branches/opname_classes4/library/library.ml
+5 -3 metaprl-branches/opname_classes4/library/link.ml
+6 -4 metaprl-branches/opname_classes4/library/mbterm.ml
+58 -36 metaprl-branches/opname_classes4/library/nuprl5.ml
+40 -38 metaprl-branches/opname_classes4/library/orb.ml
+32 -12 metaprl-branches/opname_classes4/refiner/refbase/opname.ml
+13 -4 metaprl-branches/opname_classes4/refiner/refbase/opname.mli
+2 -2 metaprl-branches/opname_classes4/refiner/refiner/refine.ml
+2 -2 metaprl-branches/opname_classes4/refiner/refiner/refine.mli
+24 -11 metaprl-branches/opname_classes4/refiner/refiner/refine_error.ml
+4 -4 metaprl-branches/opname_classes4/refiner/refiner/refine_error.mli
+200 -64 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+9 -1 metaprl-branches/opname_classes4/refiner/refiner/refiner_ds.ml
+9 -2 metaprl-branches/opname_classes4/refiner/refiner/refiner_std.ml
+1 -0 metaprl-branches/opname_classes4/refiner/reflib/Files
+33 -24 metaprl-branches/opname_classes4/refiner/reflib/ascii_io.ml
+12 -4 metaprl-branches/opname_classes4/refiner/reflib/dform.ml
+1 -0 metaprl-branches/opname_classes4/refiner/reflib/jall.ml
+1 -0 metaprl-branches/opname_classes4/refiner/reflib/lib_term.ml
+200 -126 metaprl-branches/opname_classes4/refiner/reflib/refine_exn.ml
+121 -107 metaprl-branches/opname_classes4/refiner/reflib/simple_print.ml
+10 -10 metaprl-branches/opname_classes4/refiner/reflib/term_compare.ml
+103 -69 metaprl-branches/opname_classes4/refiner/reflib/term_match_table.ml
+5 -1 metaprl-branches/opname_classes4/refiner/reflib/term_match_table.mli
+124 -124 metaprl-branches/opname_classes4/refiner/reflib/term_order.ml
Added metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.ml
Properties metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.ml
Added metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.mli
Properties metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.mli
+1 -0 metaprl-branches/opname_classes4/refiner/reflib/unify_mm.ml
+1 -0 metaprl-branches/opname_classes4/refiner/refsig/Files
+27 -8 metaprl-branches/opname_classes4/refiner/refsig/refine_error_sig.ml
+8 -2 metaprl-branches/opname_classes4/refiner/refsig/refiner_sig.ml
+4 -2 metaprl-branches/opname_classes4/refiner/refsig/rewrite_sig.ml
Added metaprl-branches/opname_classes4/refiner/refsig/term_eval_sig.ml
Properties metaprl-branches/opname_classes4/refiner/refsig/term_eval_sig.ml
+10 -0 metaprl-branches/opname_classes4/refiner/refsig/term_man_sig.ml
+5 -0 metaprl-branches/opname_classes4/refiner/refsig/term_meta_sig.ml
+8 -4 metaprl-branches/opname_classes4/refiner/refsig/term_op_sig.ml
+3 -0 metaprl-branches/opname_classes4/refiner/refsig/term_shape_sig.ml
+37 -14 metaprl-branches/opname_classes4/refiner/refsig/term_sig.ml
Added metaprl-branches/opname_classes4/refiner/refsig/term_ty_sig.ml
Properties metaprl-branches/opname_classes4/refiner/refsig/term_ty_sig.ml
+26 -14 metaprl-branches/opname_classes4/refiner/rewrite/rewrite.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite.mli
+2 -2 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_build_contractum.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_build_contractum.mli
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_compile_contractum.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_compile_contractum.mli
+14 -14 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_compile_redex.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_compile_redex.mli
+5 -3 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_debug.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_debug.mli
+5 -4 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_match_redex.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_match_redex.mli
+6 -4 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_meta.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_meta.mli
+2 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_types.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_util.ml
+1 -1 metaprl-branches/opname_classes4/refiner/rewrite/rewrite_util.mli
+3 -3 metaprl-branches/opname_classes4/refiner/term_ds/term_addr_ds.ml
+2 -2 metaprl-branches/opname_classes4/refiner/term_ds/term_addr_ds.mli
+4 -4 metaprl-branches/opname_classes4/refiner/term_ds/term_base_ds.ml
+4 -4 metaprl-branches/opname_classes4/refiner/term_ds/term_base_ds.mli
+7 -7 metaprl-branches/opname_classes4/refiner/term_ds/term_ds.ml
+7 -7 metaprl-branches/opname_classes4/refiner/term_ds/term_ds_sig.ml
Added metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.ml
Properties metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.ml
Added metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.mli
Properties metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.mli
+114 -10 metaprl-branches/opname_classes4/refiner/term_ds/term_man_ds.ml
+2 -2 metaprl-branches/opname_classes4/refiner/term_ds/term_man_ds.mli
+28 -4 metaprl-branches/opname_classes4/refiner/term_ds/term_op_ds.ml
+6 -5 metaprl-branches/opname_classes4/refiner/term_ds/term_op_ds.mli
+8 -6 metaprl-branches/opname_classes4/refiner/term_ds/term_subst_ds.ml
+6 -5 metaprl-branches/opname_classes4/refiner/term_ds/term_subst_ds.mli
+1 -0 metaprl-branches/opname_classes4/refiner/term_gen/Files
+3 -3 metaprl-branches/opname_classes4/refiner/term_gen/term_addr_gen.ml
+2 -2 metaprl-branches/opname_classes4/refiner/term_gen/term_addr_gen.mli
+6 -6 metaprl-branches/opname_classes4/refiner/term_gen/term_hash.ml
+7 -7 metaprl-branches/opname_classes4/refiner/term_gen/term_header_constr.ml
+100 -5 metaprl-branches/opname_classes4/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl-branches/opname_classes4/refiner/term_gen/term_man_gen.mli
+61 -3 metaprl-branches/opname_classes4/refiner/term_gen/term_meta_gen.ml
+1 -1 metaprl-branches/opname_classes4/refiner/term_gen/term_meta_gen.mli
+32 -5 metaprl-branches/opname_classes4/refiner/term_gen/term_shape_gen.ml
+7 -0 metaprl-branches/opname_classes4/refiner/term_gen/term_shape_gen.mli
Added metaprl-branches/opname_classes4/refiner/term_gen/term_ty_gen.ml
Properties metaprl-branches/opname_classes4/refiner/term_gen/term_ty_gen.ml
Added metaprl-branches/opname_classes4/refiner/term_gen/term_ty_gen.mli
Properties metaprl-branches/opname_classes4/refiner/term_gen/term_ty_gen.mli
+1 -1 metaprl-branches/opname_classes4/refiner/term_std/term_base_std.ml
+1 -1 metaprl-branches/opname_classes4/refiner/term_std/term_base_std.mli
Added metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.ml
Properties metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.ml
Added metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.mli
Properties metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.mli
+25 -1 metaprl-branches/opname_classes4/refiner/term_std/term_op_std.ml
+1 -1 metaprl-branches/opname_classes4/refiner/term_std/term_op_std.mli
+7 -7 metaprl-branches/opname_classes4/refiner/term_std/term_std.ml
+7 -7 metaprl-branches/opname_classes4/refiner/term_std/term_std_sig.ml
+5 -5 metaprl-branches/opname_classes4/refiner/term_std/term_subst_std.ml
+1 -1 metaprl-branches/opname_classes4/refiner/term_std/term_subst_std.mli
+217 -201 metaprl-branches/opname_classes4/support/display/comment.ml
+189 -187 metaprl-branches/opname_classes4/support/display/comment.mli
+114 -106 metaprl-branches/opname_classes4/support/display/perv.ml
+164 -44 metaprl-branches/opname_classes4/support/display/perv.mli
+117 -91 metaprl-branches/opname_classes4/support/display/summary.ml
+10 -64 metaprl-branches/opname_classes4/support/display/summary.mli
+37 -2 metaprl-branches/opname_classes4/support/shell/package_info.ml
+6 -1 metaprl-branches/opname_classes4/support/shell/package_info.mli
+0 -12 metaprl-branches/opname_classes4/support/shell/proof_edit.ml
+15 -3 metaprl-branches/opname_classes4/support/shell/shell_core.ml
+7 -12 metaprl-branches/opname_classes4/support/shell/shell_package.ml
+75 -15 metaprl-branches/opname_classes4/support/shell/shell_state.ml
+4 -1 metaprl-branches/opname_classes4/support/shell/shell_state.mli
+13 -15 metaprl-branches/opname_classes4/support/tactics/dtactic.ml
+8 -7 metaprl-branches/opname_classes4/support/tactics/top_conversionals.ml
+16 -12 metaprl-branches/opname_classes4/support/tactics/top_tacticals.ml
+0 -0 metaprl-branches/opname_classes4/support/tactics/top_tacticals.mli
+26 -25 metaprl-branches/opname_classes4/theories/base/base_meta.ml
+20 -20 metaprl-branches/opname_classes4/theories/base/base_meta.mli
+3 -3 metaprl-branches/opname_classes4/theories/base/base_reflection.ml
+2 -2 metaprl-branches/opname_classes4/theories/base/base_reflection.mli
+1 -1 metaprl-branches/opname_classes4/theories/base/base_rewrite.ml
+1 -1 metaprl-branches/opname_classes4/theories/base/base_rewrite.mli
+101 -106 metaprl-branches/opname_classes4/theories/cic/cic_ind_cases.ml
+291 -295 metaprl-branches/opname_classes4/theories/cic/cic_ind_type.ml
+85 -85 metaprl-branches/opname_classes4/theories/cic/cic_ind_type.mli
+6 -6 metaprl-branches/opname_classes4/theories/cic/cic_lambda.ml
+4 -4 metaprl-branches/opname_classes4/theories/cic/cic_lambda.mli
+18 -18 metaprl-branches/opname_classes4/theories/cic/cic_list.ml
+1 -0 metaprl-branches/opname_classes4/theories/czf/czf_itt_rel.ml
+3 -3 metaprl-branches/opname_classes4/theories/experimental/compile/m_ast.ml
+1 -1 metaprl-branches/opname_classes4/theories/experimental/compile/m_ast.mli
+4 -4 metaprl-branches/opname_classes4/theories/experimental/compile/m_cps.ml
+1 -1 metaprl-branches/opname_classes4/theories/experimental/compile/m_doc_ir.ml
+1 -1 metaprl-branches/opname_classes4/theories/experimental/compile/m_doc_ir.mli
+2 -2 metaprl-branches/opname_classes4/theories/experimental/compile/m_doc_proposal.ml
+1 -1 metaprl-branches/opname_classes4/theories/experimental/compile/m_doc_proposal.mli
+4 -4 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir.ml
+2 -2 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir.mli
+5 -5 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir_ast.ml
+1 -0 metaprl-branches/opname_classes4/theories/experimental/compile/m_standardize.ml
+10 -8 metaprl-branches/opname_classes4/theories/experimental/compile/m_test.ml
+12 -12 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_asm.ml
+4 -4 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_asm.mli
+12 -12 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_codegen.ml
+11 -11 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_term.ml
Properties metaprl-branches/opname_classes4/theories/experimental/syntax
Added metaprl-branches/opname_classes4/theories/experimental/syntax/OMakefile
Properties metaprl-branches/opname_classes4/theories/experimental/syntax/OMakefile
Added metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.ml
Properties metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.ml
Added metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.mli
Properties metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.mli
+1 -1 metaprl-branches/opname_classes4/theories/fir/mfir_sequent.ml
+1 -1 metaprl-branches/opname_classes4/theories/fir/mfir_sequent.mli
+3 -0 metaprl-branches/opname_classes4/theories/itt/OMakefile
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_algebra_df.ml
+1 -5 metaprl-branches/opname_classes4/theories/itt/itt_atom.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_atom.mli
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_atom.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_bintree.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_bintree.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_closure.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_closure.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_cyclic_group.ml
+50 -0 metaprl-branches/opname_classes4/theories/itt/itt_cyclic_group.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_datatree.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_derive.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_field2.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_field2.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_field_e.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_field_e.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_fun.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_group.ml
+51 -0 metaprl-branches/opname_classes4/theories/itt/itt_group.prla
+6 -3 metaprl-branches/opname_classes4/theories/itt/itt_grouplikeobj.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_grouplikeobj.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_intdomain.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_intdomain.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_intdomain_e.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_intdomain_e.prla
Added metaprl-branches/opname_classes4/theories/itt/itt_labels.mlz
Properties metaprl-branches/opname_classes4/theories/itt/itt_labels.mlz
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_mpoly.prla
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_mpoly2.prla
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_mpoly2_bench.prla
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_mpoly3.prla
+53 -0 metaprl-branches/opname_classes4/theories/itt/itt_mpoly3_bench.prla
+2 -1 metaprl-branches/opname_classes4/theories/itt/itt_obj_base_rewrite.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_obj_base_rewrite.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_order.ml
+50 -0 metaprl-branches/opname_classes4/theories/itt/itt_order.prla
+7 -2 metaprl-branches/opname_classes4/theories/itt/itt_pairwise.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_poly.ml
+49 -0 metaprl-branches/opname_classes4/theories/itt/itt_poly.prla
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_prec.mli
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_quotient_group.ml
+51 -0 metaprl-branches/opname_classes4/theories/itt/itt_quotient_group.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_rat.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_rat.mli
+50 -0 metaprl-branches/opname_classes4/theories/itt/itt_rat.prla
+2 -1 metaprl-branches/opname_classes4/theories/itt/itt_rbtree.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_record.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record.mli
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_record.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_record_exm.ml
+72 -20 metaprl-branches/opname_classes4/theories/itt/itt_record_exm.prla
+58 -5 metaprl-branches/opname_classes4/theories/itt/itt_record_label.prla
+12 -10 metaprl-branches/opname_classes4/theories/itt/itt_record_renaming.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_record_renaming.mli
+55 -3 metaprl-branches/opname_classes4/theories/itt/itt_record_renaming.prla
+1 -3 metaprl-branches/opname_classes4/theories/itt/itt_reflection.prla
+1 -3 metaprl-branches/opname_classes4/theories/itt/itt_reflection_example_lambda.prla
+1 -3 metaprl-branches/opname_classes4/theories/itt/itt_reflection_test.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_relation_str.ml
+6 -3 metaprl-branches/opname_classes4/theories/itt/itt_ring2.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_ring2.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_ring_e.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_ring_e.prla
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_ring_uce.ml
+51 -0 metaprl-branches/opname_classes4/theories/itt/itt_ring_uce.prla
+3 -2 metaprl-branches/opname_classes4/theories/itt/itt_set_str.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_sortedtree.ml
+65 -14 metaprl-branches/opname_classes4/theories/itt/itt_sortedtree.prla
+10 -3 metaprl-branches/opname_classes4/theories/itt/itt_test.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_unitring.ml
+52 -0 metaprl-branches/opname_classes4/theories/itt/itt_unitring.prla
+2 -15 metaprl-branches/opname_classes4/theories/phobos/phobos_theory.ml
+0 -0 metaprl-branches/opname_classes4/theories/sil/sil_program.ml
+5 -0 metaprl-branches/opname_classes4/theories/sil/sil_programs.ml
+5 -0 metaprl-branches/opname_classes4/theories/sil/sil_programs.mli
+0 -0 metaprl-branches/opname_classes4/theories/sil/sil_sos.ml
+0 -0 metaprl-branches/opname_classes4/theories/sil/sil_state.ml
+1 -0 metaprl-branches/opname_classes4/theories/tptp/tptp.ml
+7001 -8113 metaprl-branches/opname_classes4/theories/tptp/tptp.prla
+1 -0 metaprl-branches/opname_classes4/theories/tptp/tptp_cache.ml
+4 -2 metaprl-branches/opname_classes4/util/gen_refiner_debug.pl
+4 -1 metaprl-branches/opname_classes4/util/gen_refiner_debug_err.pl
Deleted mpcompiler/util/mmc_term_util.ml
Deleted mpcompiler/util/mmc_term_util.mli
+0 -1 mpcompiler-branches/opname_classes4/mmc/OMakefile
+33 -174 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_asm.ml
+96 -47 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_asm.mli
+95 -90 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_backend.ml
+8 -8 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_closure.ml
+43 -61 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_codegen.ml
+18 -7 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_codegen.mli
+56 -56 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_convention.ml
+22 -27 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_frame.ml
+15 -15 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_frame.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_hoist.ml
+3 -3 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_opt1.ml
+18 -28 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.ml
+16 -9 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.mli
+22 -21 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_slop.ml
+59 -57 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_spill.ml
+0 -9 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_dform.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_hoist.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_hoist.mli
+0 -23 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.ml
+39 -4 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.mli
+0 -7 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_meta.ml
+6 -4 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_meta.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_standardize.ml
+0 -2 mpcompiler-branches/opname_classes4/mmc/core/Files
+12 -70 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_ast.ml
+56 -38 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_ast.mli
+75 -62 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_closure.ml
+0 -4 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_closure.mli
+138 -95 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_cps.ml
+8 -4 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_cps.mli
+11 -18 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_front.ml
+2 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_front.mli
+7 -7 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_grammar.ml
+7 -7 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_grammar.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_hoist.ml
+16 -22 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_inline.ml
+4 -3 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_inline.mli
+2 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_list_util.ml
+2 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_list_util.mli
+4 -4 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_optimize.ml
+18 -27 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_reserve.ml
+5 -8 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_reserve.mli
+95 -32 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_sweep_ty.ml
+3 -0 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_sweep_ty.mli
+16 -46 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_tast.ml
+48 -13 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_tast.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_tast_util.ml
+100 -78 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_check.ml
+14 -8 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_check.mli
+37 -37 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_erase.ml
+12 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_erase.mli
+145 -19 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_infer.ml
+9 -14 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_value.ml
+6 -4 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_value.mli
+13 -20 mpcompiler-branches/opname_classes4/mmc/extensions/array/mmc_ext_array.ml
+7 -5 mpcompiler-branches/opname_classes4/mmc/extensions/array/mmc_ext_array.mli
+29 -24 mpcompiler-branches/opname_classes4/mmc/extensions/array/mmc_ext_array_x86.ml
+27 -45 mpcompiler-branches/opname_classes4/mmc/extensions/bool/mmc_ext_bool.ml
+21 -15 mpcompiler-branches/opname_classes4/mmc/extensions/bool/mmc_ext_bool.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/bool/mmc_ext_boolean_x86.ml
+20 -42 mpcompiler-branches/opname_classes4/mmc/extensions/int/mmc_ext_int.ml
+34 -31 mpcompiler-branches/opname_classes4/mmc/extensions/int/mmc_ext_int.mli
+43 -43 mpcompiler-branches/opname_classes4/mmc/extensions/int/mmc_ext_integer_x86.ml
+7 -10 mpcompiler-branches/opname_classes4/mmc/extensions/loop/mmc_ext_loop.ml
+3 -1 mpcompiler-branches/opname_classes4/mmc/extensions/loop/mmc_ext_loop.mli
+42 -55 mpcompiler-branches/opname_classes4/mmc/extensions/operator/mmc_ext_operator.ml
+43 -7 mpcompiler-branches/opname_classes4/mmc/extensions/operator/mmc_ext_operator.mli
+8 -8 mpcompiler-branches/opname_classes4/mmc/extensions/reserve/mmc_ext_reserve.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/reserve/mmc_ext_reserve.mli
+8 -8 mpcompiler-branches/opname_classes4/mmc/extensions/reserve/mmc_ext_reserve_x86.ml
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/special/mmc_ext_special.ml
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/special/mmc_ext_special.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/special/mmc_ext_special_x86.ml
+1 -6 mpcompiler-branches/opname_classes4/mmc/extensions/string/mmc_ext_string.ml
+5 -2 mpcompiler-branches/opname_classes4/mmc/extensions/string/mmc_ext_string.mli
+12 -20 mpcompiler-branches/opname_classes4/mmc/extensions/tuple/mmc_ext_tuple.ml
+7 -5 mpcompiler-branches/opname_classes4/mmc/extensions/tuple/mmc_ext_tuple.mli
+9 -4 mpcompiler-branches/opname_classes4/mmc/extensions/tuple/mmc_ext_tuple_x86.ml
+5 -4 mpcompiler-branches/opname_classes4/mmc/extensions/tyexists/mmc_ext_tyexists.ml
+4 -3 mpcompiler-branches/opname_classes4/mmc/extensions/tyexists/mmc_ext_tyexists.mli
+3 -7 mpcompiler-branches/opname_classes4/mmc/extensions/unit/mmc_ext_unit.ml
+5 -2 mpcompiler-branches/opname_classes4/mmc/extensions/unit/mmc_ext_unit.mli
+0 -1 mpcompiler-branches/opname_classes4/mmc/main/mmc_theory.ml
+0 -1 mpcompiler-branches/opname_classes4/mmc/main/mmc_theory.mli
+37 -37 mpcompiler-branches/opname_classes4/mmc/opt/direct/core/mmc_opt_direct.ml
+23 -23 mpcompiler-branches/opname_classes4/mmc/test/mmc_array_test.ml
+0 -0 mpcompiler-branches/opname_classes4/mmc/test/mmc_core_test.ml
+8 -3 mpcompiler-branches/opname_classes4/mmc/test/mmc_spill_test.ml
+0 -1 mpcompiler-branches/opname_classes4/util/Files
+9 -8 mpcompiler-branches/opname_classes4/util/mm_arith_util.ml
+8 -7 mpcompiler-branches/opname_classes4/util/mm_arith_util.mli
+14 -13 mpcompiler-branches/opname_classes4/util/mm_dform_util.ml
+4 -4 mpcompiler-branches/opname_classes4/util/mm_dform_util.mli
+16 -9 mpcompiler-branches/opname_classes4/util/mm_list_util.ml
+10 -6 mpcompiler-branches/opname_classes4/util/mm_list_util.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 18:15:24 -0800 (Thu, 03 Feb 2005)
Revision: 6588
Log message:

      These got accidentally resurrected in one of the merges. Removing them again.
      

Changes  Path
Deleted metaprl-branches/opname_classes4/refiner/refsig/term_eval_sig.ml
Deleted metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.ml
Deleted metaprl-branches/opname_classes4/refiner/term_ds/term_eval_ds.mli
Deleted metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.ml
Deleted metaprl-branches/opname_classes4/refiner/term_std/term_eval_std.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 18:34:03 -0800 (Thu, 03 Feb 2005)
Revision: 6589
Log message:

      Annotated a few things with ": Dform"
      

Changes  Path
+8 -30 metaprl-branches/opname_classes4/support/display/base_dform.ml
+20 -19 metaprl-branches/opname_classes4/support/display/base_dform.mli
+23 -214 metaprl-branches/opname_classes4/support/display/nuprl_font.ml
+189 -186 metaprl-branches/opname_classes4/support/display/nuprl_font.mli
+1 -1 metaprl-branches/opname_classes4/support/display/summary.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 19:51:33 -0800 (Thu, 03 Feb 2005)
Revision: 6590
Log message:

      - Removed the obsolte "Opname" and "Definition" choices from the summary_item
        type (Filter_summary has hack that prevents it from complaining about
        unknown "opname" and "definition" items in the old .prla)
      
      - Restored the ability to have a declare+rewrite in the interface and a define
        in the implementation.
      
      - Made the ls options processor a bit smarter about the new "declare" items.
        In particular, an ordinary "declare" directive is going to be consideted
        formal when the type does not mention "Dform" and is going to be considered
        informal and display-related when it does.
      

Changes  Path
+3 -31 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+7 -4 metaprl-branches/opname_classes4/filter/base/filter_magic.ml
+18 -122 metaprl-branches/opname_classes4/filter/base/filter_summary.ml
+0 -13 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+0 -2 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+0 -18 metaprl-branches/opname_classes4/filter/filter/filter_prog.ml
+7 -0 metaprl-branches/opname_classes4/support/display/perv.ml
+3 -0 metaprl-branches/opname_classes4/support/display/perv.mli
+34 -46 metaprl-branches/opname_classes4/support/display/summary.ml
+2 -4 metaprl-branches/opname_classes4/support/shell/shell_core.ml
+6 -6 metaprl-branches/opname_classes4/support/shell/shell_package.ml
+10 -7 metaprl-branches/opname_classes4/support/shell/shell_rule.ml
+3 -1 metaprl-branches/opname_classes4/support/shell/shell_rule.mli
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_logic.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-03 20:35:03 -0800 (Thu, 03 Feb 2005)
Revision: 6591
Log message:

      Copy declare items from the interface during the checking phase.
      This eliminates duplicate declares, and provides a genric way to copy
      items from the interface.
      

Changes  Path
+36 -39 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+146 -109 metaprl-branches/opname_classes4/filter/base/filter_summary.ml
+4 -1 metaprl-branches/opname_classes4/filter/base/filter_summary.mli
+4 -1 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-03 21:29:29 -0800 (Thu, 03 Feb 2005)
Revision: 6592
Log message:

      Prevent redeclaration of shapes.
      
      Note that Itt_rat, Itt_rbtree had errors in this respect,
      using define more than once on the same shape.
      

Changes  Path
+26 -4 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+1 -10 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_asm.ml
+1 -10 metaprl-branches/opname_classes4/theories/experimental/compile/m_x86_asm.mli
+1 -5 metaprl-branches/opname_classes4/theories/itt/itt_rat.ml
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_rbtree.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-03 23:11:52 -0800 (Thu, 03 Feb 2005)
Revision: 6593
Log message:

      Adding a few "XXX BUG" comments on some of the places Jason found.
      

Changes  Path
+2 -0 metaprl-branches/opname_classes4/theories/itt/itt_rat.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_rbtree.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-04 09:38:16 -0800 (Fri, 04 Feb 2005)
Revision: 6594
Log message:

      Thread the flag for shape checking, rather than using an imperative
      variable.  This allows shape checking for sub-theories, and is less
      likely to cause problems in the future.
      

Changes  Path
+27 -26 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-04 12:29:12 -0800 (Fri, 04 Feb 2005)
Revision: 6595
Log message:

      Fixing the documentation display forms (that I broke when merging
      opname_classes3).
      

Changes  Path
+0 -19 metaprl-branches/opname_classes4/support/display/comment.ml
+1 -2 metaprl-branches/opname_classes4/support/display/comment.mli
+16 -0 metaprl-branches/opname_classes4/support/display/summary.ml
+4 -0 metaprl-branches/opname_classes4/support/display/summary.mli

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-04 14:10:55 -0800 (Fri, 04 Feb 2005)
Revision: 6596
Log message:

      Fix a bug in itt_rbtrees
      

Changes  Path
+4 -4 metaprl/theories/itt/itt_rbtree.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-04 17:56:31 -0800 (Fri, 04 Feb 2005)
Revision: 6597
Log message:

      Improved display forms for the "declare" directives.
      

Changes  Path
+2 -5 metaprl-branches/opname_classes4/support/display/perv.ml
+1 -1 metaprl-branches/opname_classes4/support/display/perv.mli
+14 -2 metaprl-branches/opname_classes4/support/display/summary.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-04 19:41:51 -0800 (Fri, 04 Feb 2005)
Revision: 6598
Log message:

      This tries to be more careful about parsing terms.
      
      In general if you see an unparsed term in MetaPRL, it has to be
      due to the use of one of two functions being used in Filter_parse:
      raw_term_of_parsed_term, or quote_term_of_parsed_term.  These are the
      only two functions that bypass term parsing.
      

Changes  Path
+14 -7 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+30 -25 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+43 -33 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+0 -3 metaprl-branches/opname_classes4/support/display/perv.ml
+6 -63 metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-04 20:22:14 -0800 (Fri, 04 Feb 2005)
Revision: 6599
Log message:

      Starting display form typing.  Removed the create_term_parser function in
      favor of a rewrite_of_parsed_rewrite function.  There is limited demand
      for user-defined parsers.  We can resurrect if necessary, but I doubt we'll
      need to.
      

Changes  Path
+7 -9 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+2 -3 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+3 -2 metaprl-branches/opname_classes4/refiner/refsig/term_meta_sig.ml
+3 -0 metaprl-branches/opname_classes4/refiner/term_gen/term_meta_gen.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-04 21:39:34 -0800 (Fri, 04 Feb 2005)
Revision: 6600
Log message:

      Added comments with the exact shell command lines needed to generate the code
      for the Refiner_debug submodules.
      

Changes  Path
+57 -12 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+1 -0 metaprl-branches/opname_classes4/util/gen_refiner_debug.pl

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-05 02:32:33 -0800 (Sat, 05 Feb 2005)
Revision: 6601
Log message:

      added and proved some useful rules.
      
      Alexei, can you take a look at "all_list_elim"? It seems that we have to add sth about the wellformedness of 'P.
      

Changes  Path
+46 -13 metaprl/theories/itt/itt_list2.ml
+4596 -3141 metaprl/theories/itt/itt_list2.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-05 09:43:23 -0800 (Sat, 05 Feb 2005)
Revision: 6602
Log message:

      Added a bunch of comments
      

Changes  Path
+65 -2 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-05 17:14:46 -0800 (Sat, 05 Feb 2005)
Revision: 6603
Log message:

      Added display-form type checking.  This was a little painful because
      some theories were using xlist as a normal list.  In the end, I changed
      the declarations to the following.
      
         declare xcons{'a : Dform; 'b : Dform} : Dform
         declare xnil : Dform
      
      Base_reflection has its own list, using rcons and rnil.
      You need to use the functions mk_rlist_term, is_rlist_term, etc.,
      instead of mk_xlist_term, is_xlist_term.
      
      The .prla updates are just for the opname renaming.
      

Changes  Path
+2 -0 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+48 -45 metaprl-branches/opname_classes4/filter/base/filter_exn.ml
+1 -0 metaprl-branches/opname_classes4/filter/base/filter_summary_type.ml
+34 -28 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+21 -23 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+32 -4 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+3 -2 metaprl-branches/opname_classes4/refiner/refbase/opname.ml
+5 -4 metaprl-branches/opname_classes4/refiner/refbase/opname.mli
+12 -0 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+34 -15 metaprl-branches/opname_classes4/refiner/reflib/refine_exn.ml
+98 -9 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.ml
+5 -4 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.mli
+5 -0 metaprl-branches/opname_classes4/refiner/refsig/term_man_sig.ml
+1 -0 metaprl-branches/opname_classes4/refiner/refsig/term_meta_sig.ml
+4 -2 metaprl-branches/opname_classes4/refiner/term_ds/term_base_ds.ml
+1 -0 metaprl-branches/opname_classes4/refiner/term_ds/term_ds_sig.ml
+2 -0 metaprl-branches/opname_classes4/refiner/term_ds/term_man_ds.ml
+9 -5 metaprl-branches/opname_classes4/refiner/term_gen/term_man_gen.ml
+5 -0 metaprl-branches/opname_classes4/refiner/term_gen/term_meta_gen.ml
+19 -21 metaprl-branches/opname_classes4/support/display/base_dform.ml
+9 -9 metaprl-branches/opname_classes4/support/display/base_dform.mli
+68 -68 metaprl-branches/opname_classes4/support/display/comment.ml
+3 -3 metaprl-branches/opname_classes4/support/display/comment.mli
+2 -2 metaprl-branches/opname_classes4/support/display/nuprl_font.ml
+5 -0 metaprl-branches/opname_classes4/support/display/ocaml.mlz
+22 -101 metaprl-branches/opname_classes4/support/display/ocaml_base_df.ml
+67 -67 metaprl-branches/opname_classes4/support/display/ocaml_base_df.mli
+23 -23 metaprl-branches/opname_classes4/support/display/ocaml_expr_df.ml
+2 -2 metaprl-branches/opname_classes4/support/display/ocaml_mt_df.ml
+57 -57 metaprl-branches/opname_classes4/support/display/ocaml_patt_df.ml
+10 -10 metaprl-branches/opname_classes4/support/display/ocaml_sig_df.ml
+4 -4 metaprl-branches/opname_classes4/support/display/ocaml_str_df.ml
+23 -23 metaprl-branches/opname_classes4/support/display/ocaml_type_df.ml
+6 -7 metaprl-branches/opname_classes4/support/display/perv.ml
+34 -26 metaprl-branches/opname_classes4/support/display/perv.mli
+134 -127 metaprl-branches/opname_classes4/support/display/summary.ml
+9 -9 metaprl-branches/opname_classes4/support/shell/shell_fs.ml
+10 -10 metaprl-branches/opname_classes4/support/shell/shell_root.ml
+47 -38 metaprl-branches/opname_classes4/support/shell/shell_state.ml
+63 -5 metaprl-branches/opname_classes4/theories/base/base_reflection.ml
+13 -0 metaprl-branches/opname_classes4/theories/base/base_reflection.mli
+7 -7 metaprl-branches/opname_classes4/theories/base/base_rewrite.prla
+2 -2 metaprl-branches/opname_classes4/theories/cic/cic_lambda.prla
+2 -2 metaprl-branches/opname_classes4/theories/cic/cic_list.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_abel_group.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_all.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_and.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_axioms.prla
+18 -18 metaprl-branches/opname_classes4/theories/czf/czf_itt_bool.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_comment.prla
+12 -12 metaprl-branches/opname_classes4/theories/czf/czf_itt_coset.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_cyclic_group.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_cyclic_subgroup.prla
+19 -19 metaprl-branches/opname_classes4/theories/czf/czf_itt_dall.prla
+14 -14 metaprl-branches/opname_classes4/theories/czf/czf_itt_dexists.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_empty.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_eq.prla
+28 -28 metaprl-branches/opname_classes4/theories/czf/czf_itt_equiv.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_exists.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_false.prla
+16 -16 metaprl-branches/opname_classes4/theories/czf/czf_itt_group.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_group_bvd.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_group_power.prla
+24 -24 metaprl-branches/opname_classes4/theories/czf/czf_itt_hom.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_implies.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_infinity.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_inv_image.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_isect.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_iso.prla
+20 -20 metaprl-branches/opname_classes4/theories/czf/czf_itt_ker.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_kleingroup.prla
+15 -15 metaprl-branches/opname_classes4/theories/czf/czf_itt_member.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_nat.prla
+8 -8 metaprl-branches/opname_classes4/theories/czf/czf_itt_normal_subgroup.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_or.prla
+9 -9 metaprl-branches/opname_classes4/theories/czf/czf_itt_pair.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_power.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_pre_theory.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_rel.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_sall.prla
+17 -17 metaprl-branches/opname_classes4/theories/czf/czf_itt_sep.prla
+19 -19 metaprl-branches/opname_classes4/theories/czf/czf_itt_set.prla
+10 -10 metaprl-branches/opname_classes4/theories/czf/czf_itt_set_bvd.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_set_ind.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_setdiff.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_sexists.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_singleton.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_subgroup.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_subset.prla
+2 -2 metaprl-branches/opname_classes4/theories/czf/czf_itt_true.prla
+19 -19 metaprl-branches/opname_classes4/theories/czf/czf_itt_union.prla
+0 -1 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir.ml
+5 -0 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir.mli
+4 -2 metaprl-branches/opname_classes4/theories/experimental/syntax/syntax_test.ml
+0 -2 metaprl-branches/opname_classes4/theories/fir/mfir_sequent.ml
+2 -2 metaprl-branches/opname_classes4/theories/fir/mfir_test.prla
+6 -6 metaprl-branches/opname_classes4/theories/fol/cfol_itt_all.prla
+9 -9 metaprl-branches/opname_classes4/theories/fol/cfol_itt_and.prla
+2 -2 metaprl-branches/opname_classes4/theories/fol/cfol_itt_base.prla
+2 -2 metaprl-branches/opname_classes4/theories/fol/fol_ctheory.prla
+12 -12 metaprl-branches/opname_classes4/theories/fol/fol_itt_and.prla
+2 -2 metaprl-branches/opname_classes4/theories/fol/fol_itt_false.prla
+2 -2 metaprl-branches/opname_classes4/theories/fol/fol_itt_implies.prla
+10 -10 metaprl-branches/opname_classes4/theories/fol/fol_itt_or.prla
+2 -2 metaprl-branches/opname_classes4/theories/fol/fol_itt_true.prla
+5 -5 metaprl-branches/opname_classes4/theories/fol/fol_not.prla
+11 -11 metaprl-branches/opname_classes4/theories/fol/fol_prop.prla
+13 -13 metaprl-branches/opname_classes4/theories/fol/fol_struct.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/ctt_markov.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_antiquotient.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_atom.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_bintree.prla
+17 -17 metaprl-branches/opname_classes4/theories/itt/itt_bisect.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_bool.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_bunion.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_closure.prla
+32 -32 metaprl-branches/opname_classes4/theories/itt/itt_collection.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_cyclic_group.prla
+8 -8 metaprl-branches/opname_classes4/theories/itt/itt_decidable.prla
+9 -9 metaprl-branches/opname_classes4/theories/itt/itt_derive.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_dfun.prla
+22 -22 metaprl-branches/opname_classes4/theories/itt/itt_disect.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_dprod.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_dprod_imp.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_eq_base.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_equal.prla
+14 -14 metaprl-branches/opname_classes4/theories/itt/itt_esquash.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_ext_equal.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_field2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_field_e.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_fset.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_fun.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_fun2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_functions.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_group.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_grouplikeobj.prla
+11 -7 metaprl-branches/opname_classes4/theories/itt/itt_int_arith.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_arith.prla
+26 -15 metaprl-branches/opname_classes4/theories/itt/itt_int_base.ml
+1 -0 metaprl-branches/opname_classes4/theories/itt/itt_int_base.mli
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_base.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_bench.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_bench2.prla
+9 -9 metaprl-branches/opname_classes4/theories/itt/itt_int_ext.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_ext.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_int_test.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_intdomain.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_intdomain_e.prla
+23 -23 metaprl-branches/opname_classes4/theories/itt/itt_isect.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_list.prla
+3 -1 metaprl-branches/opname_classes4/theories/itt/itt_list2.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_list2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_logic.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_mpoly.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_mpoly2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_mpoly2_bench.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_mpoly3.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_mpoly3_bench.prla
+6 -5 metaprl-branches/opname_classes4/theories/itt/itt_nat.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_nat.prla
+18 -18 metaprl-branches/opname_classes4/theories/itt/itt_nequal.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_obj_base_rewrite.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_order.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_pairwise.prla
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_pointwise.prla
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_pointwise2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_poly.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_prod.prla
+6 -6 metaprl-branches/opname_classes4/theories/itt/itt_prop_decide.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_quotient.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_quotient_group.prla
+5 -1 metaprl-branches/opname_classes4/theories/itt/itt_rat.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_rat.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_rat2.prla
+12 -6 metaprl-branches/opname_classes4/theories/itt/itt_record.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record0.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record_exm.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record_label.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record_label0.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_record_renaming.prla
+20 -19 metaprl-branches/opname_classes4/theories/itt/itt_reflection.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_reflection.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_reflection_example_lambda.prla
+20 -19 metaprl-branches/opname_classes4/theories/itt/itt_reflection_new.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_reflection_test.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_rfun.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_rfun.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_ring2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_ring_e.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_ring_uce.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_set.prla
+13 -13 metaprl-branches/opname_classes4/theories/itt/itt_singleton.prla
+7 -3 metaprl-branches/opname_classes4/theories/itt/itt_sort.ml
+23 -23 metaprl-branches/opname_classes4/theories/itt/itt_sort.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_sortedtree.prla
+21 -21 metaprl-branches/opname_classes4/theories/itt/itt_squash.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_squiggle.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_struct.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_struct2.prla
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_struct3.prla
+21 -21 metaprl-branches/opname_classes4/theories/itt/itt_subset.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_subset2.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_subtype.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_supinf.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_synt_operator.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_synt_var.prla
+9 -9 metaprl-branches/opname_classes4/theories/itt/itt_tsquash.prla
+14 -14 metaprl-branches/opname_classes4/theories/itt/itt_tunion.prla
+31 -31 metaprl-branches/opname_classes4/theories/itt/itt_union.prla
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_unit.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_unitring.prla
+5 -5 metaprl-branches/opname_classes4/theories/itt/itt_void.prla
+26 -26 metaprl-branches/opname_classes4/theories/itt/itt_w.prla
+11 -11 metaprl-branches/opname_classes4/theories/itt/itt_well_founded.prla
+2 -2 metaprl-branches/opname_classes4/theories/itt/jprover_tests.prla
+2 -2 metaprl-branches/opname_classes4/theories/kat/kat_axioms.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/ma_message__automata.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_Dconstant_object_directory.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_once_object_directory.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_recognizer1_object_directory.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_ring__leader1_object_directory.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_send__once_object_directory.prla
+2 -2 metaprl-branches/opname_classes4/theories/mesa/nuprl_trigger1_object_directory.prla
+4 -4 metaprl-branches/opname_classes4/theories/sil/sil_state.ml
+2 -2 metaprl-branches/opname_classes4/theories/tptp/tptp.prla
+6 -6 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_asm.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.mli
+6 -6 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_meta.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_ast.mli
+5 -5 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_closure.ml
+2 -2 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_cps.prla
+6 -9 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_tast.ml
+3 -3 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_tast.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_check.prla
+1 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_value.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/bool/mmc_ext_boolean.prla
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/operator/mmc_ext_operator.mli
+2 -2 mpcompiler-branches/opname_classes4/mmc/test/mmc_core_test.prla
+2 -2 mpcompiler-branches/opname_classes4/util/mm_dform_util.ml
+4 -4 mpcompiler-branches/opname_classes4/util/mm_dform_util.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-05 17:24:35 -0800 (Sat, 05 Feb 2005)
Revision: 6604
Log message:

      Added typechecking on productions.
      

Changes  Path
+8 -6 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-05 18:59:00 -0800 (Sat, 05 Feb 2005)
Revision: 6605
Log message:

      squiddle -> squiggle
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_list.ml
+1 -1 metaprl/theories/itt/itt_list.prla
+2 -2 metaprl/theories/itt/itt_reflection.ml
+2 -2 metaprl/theories/itt/itt_reflection.prla
+2 -2 metaprl/theories/itt/itt_synt_bterm.ml
+3 -3 metaprl/theories/itt/itt_synt_var.ml
+3 -3 metaprl/theories/itt/itt_synt_var.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-05 19:55:00 -0800 (Sat, 05 Feb 2005)
Revision: 6606
Log message:

      Disallow type constraints rules and rewrites.  For type inference,
      type rewrites become equalities.
      
         declare rewrite TyElem{TyExp} <--> Exp
      
      This means, in addition to the rewrite, that TyElem{TyExp} = Exp.
      So, if we are unifying t1 and t2, it is legal to unify t1 with TyElem{TyExp},
      and Exp with t2.
      
      >    Known issues:
      >     - The .mli opname declarations are added to the .cmoz in the reverse order.
      >       This, among other things causes Failure ("unknown typeclass:
      >       Mmc_base_judgment!Prop") exception on cd'ing into the /mmc_base_judgment
      >       module.
      >     - The .mli opname declarations are added to the .cmoz even when .cmoz has its
      >       own copy. That results in the "ls" output (and other things, such as .cmoz
      >       and .prla files) being unnecessarily cluttered.
      
      These are fixed.  Only the declarations that don't exist in the .ml are copied.
      
      >     - If the same shape is declared several times (possibly with incompatible
      >       types), does anybody notice?
      
      This is now checked in Filter_cache_fun.
      
      >    Potential TODOs and RFEs:
      >     - Proper type checking for display forms.
      
      Implemented.
      
      >     - Could we may be come up with a way to propagate certain declarations from
      >       .ml into .cmiz (instead of the other way around)? Some declarations needs
      >       to stay in the .ml in order to get properly documented.
      
      What about copying the documentation from the .mli (preserving the order)?
      
      >     - "declare sequent" shortcuts:
      >        - when the type is { Term : Term >- Term } : Term, allow omitting it
      >        - when the type is { Term : Term >- Term } : Foo, allow typing just ": Foo"
      
      Implemented.
      
      >     - Perv!nil/Perv!cons should have the Dform type.
      >        - When the sequent conclusion is omitted, a we should use something other
      >          than Perv!nil for the conclusion. This new "default conclusion" term
      >          should be a member of a singleton type (in the Term typeclass), and MMC
      >          should be using that in the type of Mmc_core_ast!ty_args
      >        - Base_reflection should use its own cons and nil for bterm lists.
      
      Implemented.
      
      >     - The new stuff (both the new syntax and the typechecking algorithm) need to
      >       be documented.
      
      I need to do this.
      

Changes  Path
+61 -51 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+1 -0 metaprl-branches/opname_classes4/filter/base/filter_summary_type.ml
+3 -1 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+7 -2 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+28 -13 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+1 -0 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+95 -36 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.ml
+11 -7 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.mli
+1 -0 metaprl-branches/opname_classes4/refiner/refsig/term_shape_sig.ml
+1 -0 metaprl-branches/opname_classes4/refiner/term_gen/term_shape_gen.ml
+6 -0 metaprl-branches/opname_classes4/support/display/perv.mli
+14 -0 metaprl-branches/opname_classes4/support/shell/package_info.ml
+8 -6 metaprl-branches/opname_classes4/support/shell/package_info.mli
+3 -1 metaprl-branches/opname_classes4/support/shell/shell_core.ml
+16 -3 metaprl-branches/opname_classes4/support/shell/shell_state.ml
+6 -1 metaprl-branches/opname_classes4/support/shell/shell_state.mli
+2 -0 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.mli
+22 -28 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_cps.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_reserve.ml
+24 -35 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_check.ml
+2 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_check.mli
+3 -3 mpcompiler-branches/opname_classes4/mmc/extensions/array/mmc_ext_array.ml
+2 -2 mpcompiler-branches/opname_classes4/mmc/extensions/bool/mmc_ext_bool.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/int/mmc_ext_int.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/string/mmc_ext_string.ml
+4 -4 mpcompiler-branches/opname_classes4/mmc/extensions/tyexists/mmc_ext_tyexists.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/unit/mmc_ext_unit.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-06 15:21:43 -0800 (Sun, 06 Feb 2005)
Revision: 6607
Log message:

      Typechecking is now stricter.
         -- For rules and rewrites, the goal types are existentially quantified.
         -- Rewrites are type-invariant.  For example, the following will fail.
      
            declare typeclass A
            declare typeclass B -> A
            declare foo : A
            declare bar : B
      
            prim_rw bad : foo <--> bar
      
            This is rejected because the (bar --> foo) rewrite is bogus.
      
      At this point, the type system is basically sound, apart from
      rule and rewrite arguments, and assuming the implementation is
      correct.  Let's merge.
      

Changes  Path
+6 -6 metaprl-branches/opname_classes4/filter/base/filter_cache_fun.ml
+1 -0 metaprl-branches/opname_classes4/filter/base/filter_summary_type.ml
+21 -18 metaprl-branches/opname_classes4/filter/base/filter_type.ml
+24 -23 metaprl-branches/opname_classes4/filter/filter/filter_parse.ml
+6 -0 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+2 -0 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+343 -395 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.ml
+7 -6 metaprl-branches/opname_classes4/refiner/reflib/term_ty_infer.mli
+1 -0 metaprl-branches/opname_classes4/refiner/refsig/term_meta_sig.ml
+7 -9 metaprl-branches/opname_classes4/support/display/perv.mli
+7 -0 metaprl-branches/opname_classes4/support/shell/package_info.ml
+9 -8 metaprl-branches/opname_classes4/support/shell/package_info.mli
+1 -0 metaprl-branches/opname_classes4/support/shell/shell_core.ml
+66 -55 metaprl-branches/opname_classes4/support/shell/shell_state.ml
+1 -0 metaprl-branches/opname_classes4/support/shell/shell_state.mli
+0 -0 metaprl-branches/opname_classes4/theories/base/base_reflection.ml
+2 -2 metaprl-branches/opname_classes4/theories/experimental/compile/m_ir_ast.ml
+4 -0 metaprl-branches/opname_classes4/theories/phobos/phobos_base.mli
+2 -2 metaprl-branches/opname_classes4/theories/phobos/phobos_theory.ml
+6 -10 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_asm.mli
+3 -2 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_closure.ml
+4 -4 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_codegen.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_convention.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_frame.ml
+8 -8 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_frame.mli
+11 -4 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_prologue.mli
+1 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_slop.ml
+3 -1 mpcompiler-branches/opname_classes4/mmc/arch/x86/mmc_x86_spill.ml
+8 -0 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.mli
+3 -1 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_hoist.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/extensions/array/mmc_ext_array_x86.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 16:25:59 -0800 (Sun, 06 Feb 2005)
Revision: 6608
Log message:

      Removed a bit of unused code
      

Changes  Path
+2 -3 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+0 -6 metaprl-branches/opname_classes4/refiner/refbase/opname.ml
+0 -1 metaprl-branches/opname_classes4/refiner/refbase/opname.mli
+0 -6 metaprl-branches/opname_classes4/refiner/refiner/refiner_debug.ml
+0 -1 metaprl-branches/opname_classes4/refiner/refsig/term_man_sig.ml
+0 -1 metaprl-branches/opname_classes4/refiner/refsig/term_meta_sig.ml
+0 -1 metaprl-branches/opname_classes4/refiner/term_ds/term_man_ds.ml
+2 -0 metaprl-branches/opname_classes4/refiner/term_ds/term_op_ds.ml
+1 -5 metaprl-branches/opname_classes4/refiner/term_gen/term_man_gen.ml
+0 -2 metaprl-branches/opname_classes4/refiner/term_gen/term_meta_gen.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 17:09:02 -0800 (Sun, 06 Feb 2005)
Revision: 6609
Log message:

      Term_shape_gen.term_shape type does not need to be concrete
      

Changes  Path
+0 -7 metaprl-branches/opname_classes4/refiner/reflib/term_match_table.ml
+1 -5 metaprl-branches/opname_classes4/refiner/term_gen/term_shape_gen.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 18:52:20 -0800 (Sun, 06 Feb 2005)
Revision: 6610
Log message:

      Perv!dummy_arg is now Comment!dummy_arg and has a display form.
      

Changes  Path
+10 -1 metaprl-branches/opname_classes4/support/display/comment.ml
+2 -1 metaprl-branches/opname_classes4/support/display/comment.mli
+0 -0 metaprl-branches/opname_classes4/support/display/perv.ml
+0 -8 metaprl-branches/opname_classes4/support/display/perv.mli
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_collection.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-06 19:33:24 -0800 (Sun, 06 Feb 2005)
Revision: 6611
Log message:

      1. Some work on mmc.
      
      2. Fixed the problem with parsed term in comments.
      > 1) The problem with <:doc< ... << ... >> ... >>
      >
      > still exists.
      
         The terms in comments are now parsed.
      

Changes  Path
+2 -1 metaprl-branches/opname_classes4/filter/filter/term_grammar.ml
+2 -0 mpcompiler-branches/opname_classes4/mmc/base/mmc_base_judgment.ml
+18 -4 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_cps.ml
+2 -2 mpcompiler-branches/opname_classes4/mmc/core/mmc_core_type_infer.ml
+13 -3 mpcompiler-branches/opname_classes4/mmc/extensions/int/mmc_ext_int.ml
+1 -1 mpcompiler-branches/opname_classes4/mmc/test/mmc

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 20:45:56 -0800 (Sun, 06 Feb 2005)
Revision: 6612
Log message:

      - I've added a "docon" term that is the opposite of the "docoff". One can now
        write simply
           doc docon
        instead of having to do something like
           doc <:doc< @doc{ } >>
      
      - I've added "doc docoff"/"doc docon" in a few places in ITT to exclude ML
        code from the theories.pdf file (I did this some of the theories that needed
        it, but most likely not in all of them).
      

Changes  Path
+16 -9 metaprl/support/display/comment.ml
+1 -0 metaprl/support/display/comment.mli
+7 -8 metaprl/theories/itt/itt_bisect.ml
+5 -3 metaprl/theories/itt/itt_bunion.ml
+15 -4 metaprl/theories/itt/itt_collection.ml
+1 -0 metaprl/theories/itt/itt_decidable.ml
+1 -1 metaprl/theories/itt/itt_disect.ml
+1 -1 metaprl/theories/itt/itt_equal.ml
+2 -2 metaprl/theories/itt/itt_field2.ml
+2 -1 metaprl/theories/itt/itt_field_e.ml
+1 -1 metaprl/theories/itt/itt_int_arith.ml
+6 -5 metaprl/theories/itt/itt_isect.ml
+7 -0 metaprl/theories/itt/itt_order.ml
+18 -5 metaprl/theories/itt/itt_record.ml
+19 -13 metaprl/theories/itt/itt_record_exm.ml
+8 -4 metaprl/theories/itt/itt_record_renaming.ml
+3 -1 metaprl/theories/itt/itt_relation_str.ml
+3 -5 metaprl/theories/itt/itt_ring2.ml
+1 -1 metaprl/theories/itt/itt_ring_e.ml
+1 -1 metaprl/theories/itt/itt_ring_uce.ml
+5 -3 metaprl/theories/itt/itt_tunion.ml
+1 -1 metaprl/theories/itt/itt_unitring.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-06 20:48:48 -0800 (Sun, 06 Feb 2005)
Revision: 6613
Log message:

      OCaml code uses ocons/onil, not xcons/xnil.
      This fixes the ocaml display I believe.
      

Changes  Path
+144 -109 metaprl-branches/opname_classes4/filter/base/filter_ocaml.ml
+1 -1 metaprl-branches/opname_classes4/support/display/ocaml_base_df.mli
+25 -3 metaprl-branches/opname_classes4/support/display/ocaml_expr_df.ml
+16 -16 metaprl-branches/opname_classes4/support/display/ocaml_patt_df.ml
+2 -1 metaprl-branches/opname_classes4/theories/itt/itt_collection.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 21:10:51 -0800 (Sun, 06 Feb 2005)
Revision: 6614
Log message:

      Annotated  a lot of the "dforms helper" operators (including all in itt_comment
      and czf_itt_comment) with the "Dform" type.
      

Changes  Path
+1 -1 metaprl-branches/opname_classes4/support/display/base_dform.mli
+1 -1 metaprl-branches/opname_classes4/theories/base/base_reflection.ml
+0 -69 metaprl-branches/opname_classes4/theories/czf/czf_itt_comment.ml
+69 -69 metaprl-branches/opname_classes4/theories/czf/czf_itt_comment.mli
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_atom.ml
+6 -89 metaprl-branches/opname_classes4/theories/itt/itt_comment.ml
+84 -84 metaprl-branches/opname_classes4/theories/itt/itt_comment.mli
+9 -9 metaprl-branches/opname_classes4/theories/itt/itt_list.ml
+2 -2 metaprl-branches/opname_classes4/theories/sil/sil_state_types.ml
+2 -2 metaprl-branches/opname_classes4/theories/tptp/tptp.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 22:25:16 -0800 (Sun, 06 Feb 2005)
Revision: 6615
Log message:

      display_col can now be typed properly
      

Changes  Path
+1 -2 metaprl-branches/opname_classes4/theories/itt/itt_collection.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 22:44:47 -0800 (Sun, 06 Feb 2005)
Revision: 6616
Log message:

      Annotated a few more dform "helper" opname with the ": Dform" type annotation.
      

Changes  Path
+5 -5 metaprl-branches/opname_classes4/theories/cic/cic_ind_type.ml
+1 -1 metaprl-branches/opname_classes4/theories/cic/cic_lambda.ml
+3 -3 metaprl-branches/opname_classes4/theories/experimental/mcc/fir/type/m_fir.ml
+1 -1 metaprl-branches/opname_classes4/theories/experimental/mcc/fir/type/m_prec.ml
+1 -1 metaprl-branches/opname_classes4/theories/fir/mfir_record.ml
+29 -29 metaprl-branches/opname_classes4/theories/itt/itt_comment.mli
+7 -7 metaprl-branches/opname_classes4/theories/itt/itt_int_base.ml
+4 -4 metaprl-branches/opname_classes4/theories/itt/itt_int_base.mli
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_nat.ml
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_rfun.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 23:02:20 -0800 (Sun, 06 Feb 2005)
Revision: 6617
Log message:

      My previos changes would not actually compile, fixing.
      (Omake told me that they've compiled, but it was a lie! See bug 403).
      

Changes  Path
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_int_base.ml
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_nat.ml
+2 -2 metaprl-branches/opname_classes4/theories/itt/itt_rfun.ml
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_rfun.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 23:10:31 -0800 (Sun, 06 Feb 2005)
Revision: 6618
Log message:

      df_rev_concat needs to know about ocons/onil as well.
      

Changes  Path
+6 -0 metaprl-branches/opname_classes4/support/display/ocaml_expr_df.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 23:15:53 -0800 (Sun, 06 Feb 2005)
Revision: 6619
Log message:

      Trivial comment change
      

Changes  Path
+2 -2 metaprl-branches/opname_classes4/filter/base/filter_summary.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-06 23:57:02 -0800 (Sun, 06 Feb 2005)
Revision: 6620
Log message:

      Added support for non-sequent contexts to Term_man_ds.context_vars_info
      
      However I am still getting a type error from Itt_test.context_rw:
                   Itt_rfun!let
                       {'e1;
                        v. context[C:v]{C. 'e2['v]; Perv!xcons{'C; Perv!xnil}}}
                   - has type
                   - Perv!Term
                   - but is used with type
                   - Perv!type[C1093:v]
                   - unify_normal_term_types2
                   - term type
                   - Perv!Term - is not compatible with - Perv!type[C1093:v]
      
      The error is sort of correct - this rewrite is only type-safe when applied to
      something of type Term, while it could potentially be applied to something
      else. Jason, what do you think would be the right thing to do here? Should we
      indeed consider this illegal?
      

Changes  Path
+4 -0 metaprl-branches/opname_classes4/refiner/term_ds/term_man_ds.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 00:25:47 -0800 (Mon, 07 Feb 2005)
Revision: 6621
Log message:

      Display form fixes.
      

Changes  Path
+7 -31 metaprl-branches/opname_classes4/theories/itt/itt_comment.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 01:38:16 -0800 (Mon, 07 Feb 2005)
Revision: 6622
Log message:

      Added display forms for the labels declared in Itt_labels.
      
      A better way would be to add an opname shortener to the Dforms module,
      this commit is just a workaround.
      

Changes  Path
+1 -2 metaprl-branches/opname_classes4/theories/itt/OMakefile
Added metaprl-branches/opname_classes4/theories/itt/itt_labels.ml
Properties metaprl-branches/opname_classes4/theories/itt/itt_labels.ml
Added metaprl-branches/opname_classes4/theories/itt/itt_labels.mli
Properties metaprl-branches/opname_classes4/theories/itt/itt_labels.mli
Deleted metaprl-branches/opname_classes4/theories/itt/itt_labels.mlz
+1 -1 metaprl-branches/opname_classes4/theories/itt/itt_rbtree.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-07 02:34:55 -0800 (Mon, 07 Feb 2005)
Revision: 6623
Log message:

      Proved most of the rules in itt_synt_bterm.
      

Changes  Path
+7 -2 metaprl/theories/itt/itt_list2.ml
+1159 -1023 metaprl/theories/itt/itt_list2.prla
+33 -8 metaprl/theories/itt/itt_synt_bterm.ml
Added metaprl/theories/itt/itt_synt_bterm.prla
Properties metaprl/theories/itt/itt_synt_bterm.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 04:25:55 -0800 (Mon, 07 Feb 2005)
Revision: 6624
Log message:

      ***************************************************************************
      ****             !!!!!         WARNING            !!!!!                ****
      ***************************************************************************
      !!!!!           This commit breaks binary compatibility               !!!!!
      !!!!!         Export all your uncommitted proofs before updating      !!!!!
      !!!!!                                                                 !!!!!
      !!!!!  If you export to a .prla that did not exist before, you will   !!!!!
      !!!!!  to edit it manually after you update - find the line that      !!!!!
      !!!!!  starts with "NPerv!cons" replace the last (third) occurrence   !!!!!
      !!!!!  of "cons" with "xcons", then replace last (third) occurrence   !!!!!
      !!!!!  nil" with "xnil" on the "Perv!nil" line.                       !!!!!
      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      
      Merging the opname_classes branch!
      
      This commit inroduces types to MetaPRL syntax with an informal (but pretty
      precise) typechecking. Hopefully Jason will write some documentation
      describing how to use this.
      
      This fixes bug 370 and bug 371.
      

Changes  Path
+54 -52 metaprl/editor/ml/nuprl_eval.ml
+3 -1 metaprl/editor/ml/nuprl_jprover.ml
+733 -181 metaprl/filter/base/filter_cache_fun.ml
+1 -0 metaprl/filter/base/filter_cache_fun.mli
+78 -39 metaprl/filter/base/filter_exn.ml
+3 -2 metaprl/filter/base/filter_exn.mli
+41 -0 metaprl/filter/base/filter_grammar.ml
+7 -0 metaprl/filter/base/filter_grammar.mli
+9 -4 metaprl/filter/base/filter_magic.ml
+144 -109 metaprl/filter/base/filter_ocaml.ml
+525 -177 metaprl/filter/base/filter_summary.ml
+4 -1 metaprl/filter/base/filter_summary.mli
+16 -3 metaprl/filter/base/filter_summary_type.ml
+114 -33 metaprl/filter/base/filter_type.ml
+7 -11 metaprl/filter/base/filter_util.ml
+0 -2 metaprl/filter/base/filter_util.mli
+796 -438 metaprl/filter/filter/filter_parse.ml
+23 -15 metaprl/filter/filter/filter_patt.ml
+30 -18 metaprl/filter/filter/filter_prog.ml
+621 -153 metaprl/filter/filter/term_grammar.ml
+5 -3 metaprl/filter/filter/term_grammar.mli
+1 -0 metaprl/filter/phobos/phobos_constants.ml
+1 -1 metaprl/filter/phobos/phobos_parser.mly
+29 -26 metaprl/library/basic.ml
+52 -49 metaprl/library/db.ml
+17 -15 metaprl/library/definition.ml
+9 -7 metaprl/library/library.ml
+5 -3 metaprl/library/link.ml
+6 -4 metaprl/library/mbterm.ml
+58 -36 metaprl/library/nuprl5.ml
+40 -38 metaprl/library/orb.ml
+27 -12 metaprl/refiner/refbase/opname.ml
+17 -8 metaprl/refiner/refbase/opname.mli
+2 -2 metaprl/refiner/refiner/refine.ml
+2 -2 metaprl/refiner/refiner/refine.mli
+24 -11 metaprl/refiner/refiner/refine_error.ml
+4 -4 metaprl/refiner/refiner/refine_error.mli
+330 -78 metaprl/refiner/refiner/refiner_debug.ml
+9 -1 metaprl/refiner/refiner/refiner_ds.ml
+9 -2 metaprl/refiner/refiner/refiner_std.ml
+1 -0 metaprl/refiner/reflib/Files
+33 -24 metaprl/refiner/reflib/ascii_io.ml
+12 -4 metaprl/refiner/reflib/dform.ml
+1 -0 metaprl/refiner/reflib/jall.ml
+1 -0 metaprl/refiner/reflib/lib_term.ml
+234 -141 metaprl/refiner/reflib/refine_exn.ml
+121 -107 metaprl/refiner/reflib/simple_print.ml
+10 -10 metaprl/refiner/reflib/term_compare.ml
+101 -74 metaprl/refiner/reflib/term_match_table.ml
+5 -1 metaprl/refiner/reflib/term_match_table.mli
+124 -124 metaprl/refiner/reflib/term_order.ml
Added metaprl/refiner/reflib/term_ty_infer.ml
Properties metaprl/refiner/reflib/term_ty_infer.ml
Added metaprl/refiner/reflib/term_ty_infer.mli
Properties metaprl/refiner/reflib/term_ty_infer.mli
+1 -0 metaprl/refiner/reflib/unify_mm.ml
+1 -0 metaprl/refiner/refsig/Files
+27 -8 metaprl/refiner/refsig/refine_error_sig.ml
+8 -2 metaprl/refiner/refsig/refiner_sig.ml
+4 -2 metaprl/refiner/refsig/rewrite_sig.ml
+14 -0 metaprl/refiner/refsig/term_man_sig.ml
+10 -3 metaprl/refiner/refsig/term_meta_sig.ml
+8 -4 metaprl/refiner/refsig/term_op_sig.ml
+4 -0 metaprl/refiner/refsig/term_shape_sig.ml
+37 -14 metaprl/refiner/refsig/term_sig.ml
Added metaprl/refiner/refsig/term_ty_sig.ml
Properties metaprl/refiner/refsig/term_ty_sig.ml
+26 -14 metaprl/refiner/rewrite/rewrite.ml
+1 -1 metaprl/refiner/rewrite/rewrite.mli
+2 -2 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+1 -1 metaprl/refiner/rewrite/rewrite_build_contractum.mli
+1 -1 metaprl/refiner/rewrite/rewrite_compile_contractum.ml
+1 -1 metaprl/refiner/rewrite/rewrite_compile_contractum.mli
+14 -14 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+1 -1 metaprl/refiner/rewrite/rewrite_compile_redex.mli
+5 -3 metaprl/refiner/rewrite/rewrite_debug.ml
+1 -1 metaprl/refiner/rewrite/rewrite_debug.mli
+5 -4 metaprl/refiner/rewrite/rewrite_match_redex.ml
+1 -1 metaprl/refiner/rewrite/rewrite_match_redex.mli
+6 -4 metaprl/refiner/rewrite/rewrite_meta.ml
+1 -1 metaprl/refiner/rewrite/rewrite_meta.mli
+2 -1 metaprl/refiner/rewrite/rewrite_types.ml
+1 -1 metaprl/refiner/rewrite/rewrite_util.ml
+1 -1 metaprl/refiner/rewrite/rewrite_util.mli
+3 -3 metaprl/refiner/term_ds/term_addr_ds.ml
+2 -2 metaprl/refiner/term_ds/term_addr_ds.mli
+8 -6 metaprl/refiner/term_ds/term_base_ds.ml
+4 -4 metaprl/refiner/term_ds/term_base_ds.mli
+7 -7 metaprl/refiner/term_ds/term_ds.ml
+8 -7 metaprl/refiner/term_ds/term_ds_sig.ml
+119 -10 metaprl/refiner/term_ds/term_man_ds.ml
+2 -2 metaprl/refiner/term_ds/term_man_ds.mli
+30 -4 metaprl/refiner/term_ds/term_op_ds.ml
+6 -5 metaprl/refiner/term_ds/term_op_ds.mli
+8 -6 metaprl/refiner/term_ds/term_subst_ds.ml
+6 -5 metaprl/refiner/term_ds/term_subst_ds.mli
+1 -0 metaprl/refiner/term_gen/Files
+3 -3 metaprl/refiner/term_gen/term_addr_gen.ml
+2 -2 metaprl/refiner/term_gen/term_addr_gen.mli
+6 -6 metaprl/refiner/term_gen/term_hash.ml
+7 -7 metaprl/refiner/term_gen/term_header_constr.ml
+105 -10 metaprl/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl/refiner/term_gen/term_man_gen.mli
+69 -5 metaprl/refiner/term_gen/term_meta_gen.ml
+1 -1 metaprl/refiner/term_gen/term_meta_gen.mli
+33 -5 metaprl/refiner/term_gen/term_shape_gen.ml
+3 -0 metaprl/refiner/term_gen/term_shape_gen.mli
Added metaprl/refiner/term_gen/term_ty_gen.ml
Properties metaprl/refiner/term_gen/term_ty_gen.ml
Added metaprl/refiner/term_gen/term_ty_gen.mli
Properties metaprl/refiner/term_gen/term_ty_gen.mli
+1 -1 metaprl/refiner/term_std/term_base_std.ml
+1 -1 metaprl/refiner/term_std/term_base_std.mli
+25 -1 metaprl/refiner/term_std/term_op_std.ml
+1 -1 metaprl/refiner/term_std/term_op_std.mli
+7 -7 metaprl/refiner/term_std/term_std.ml
+7 -7 metaprl/refiner/term_std/term_std_sig.ml
+5 -5 metaprl/refiner/term_std/term_subst_std.ml
+1 -1 metaprl/refiner/term_std/term_subst_std.mli
+22 -46 metaprl/support/display/base_dform.ml
+22 -21 metaprl/support/display/base_dform.mli
+300 -294 metaprl/support/display/comment.ml
+191 -189 metaprl/support/display/comment.mli
+25 -216 metaprl/support/display/nuprl_font.ml
+189 -186 metaprl/support/display/nuprl_font.mli
+5 -0 metaprl/support/display/ocaml.mlz
+22 -101 metaprl/support/display/ocaml_base_df.ml
+67 -67 metaprl/support/display/ocaml_base_df.mli
+51 -23 metaprl/support/display/ocaml_expr_df.ml
+2 -2 metaprl/support/display/ocaml_mt_df.ml
+57 -57 metaprl/support/display/ocaml_patt_df.ml
+10 -10 metaprl/support/display/ocaml_sig_df.ml
+4 -4 metaprl/support/display/ocaml_str_df.ml
+23 -23 metaprl/support/display/ocaml_type_df.ml
+110 -102 metaprl/support/display/perv.ml
+173 -46 metaprl/support/display/perv.mli
+220 -171 metaprl/support/display/summary.ml
+14 -64 metaprl/support/display/summary.mli
+58 -2 metaprl/support/shell/package_info.ml
+9 -1 metaprl/support/shell/package_info.mli
+0 -12 metaprl/support/shell/proof_edit.ml
+18 -5 metaprl/support/shell/shell_core.ml
+9 -9 metaprl/support/shell/shell_fs.ml
+11 -16 metaprl/support/shell/shell_package.ml
+10 -10 metaprl/support/shell/shell_root.ml
+10 -7 metaprl/support/shell/shell_rule.ml
+3 -1 metaprl/support/shell/shell_rule.mli
+134 -41 metaprl/support/shell/shell_state.ml
+10 -1 metaprl/support/shell/shell_state.mli
+13 -15 metaprl/support/tactics/dtactic.ml
+8 -7 metaprl/support/tactics/top_conversionals.ml
+16 -12 metaprl/support/tactics/top_tacticals.ml
+0 -0 metaprl/support/tactics/top_tacticals.mli
+26 -25 metaprl/theories/base/base_meta.ml
+20 -20 metaprl/theories/base/base_meta.mli
+67 -9 metaprl/theories/base/base_reflection.ml
+15 -2 metaprl/theories/base/base_reflection.mli
+1 -1 metaprl/theories/base/base_rewrite.ml
+1 -1 metaprl/theories/base/base_rewrite.mli
+7 -7 metaprl/theories/base/base_rewrite.prla
+101 -106 metaprl/theories/cic/cic_ind_cases.ml
+296 -300 metaprl/theories/cic/cic_ind_type.ml
+85 -85 metaprl/theories/cic/cic_ind_type.mli
+7 -7 metaprl/theories/cic/cic_lambda.ml
+4 -4 metaprl/theories/cic/cic_lambda.mli
+2 -2 metaprl/theories/cic/cic_lambda.prla
+18 -18 metaprl/theories/cic/cic_list.ml
+2 -2 metaprl/theories/cic/cic_list.prla
+2 -2 metaprl/theories/czf/czf_itt_abel_group.prla
+2 -2 metaprl/theories/czf/czf_itt_all.prla
+2 -2 metaprl/theories/czf/czf_itt_and.prla
+2 -2 metaprl/theories/czf/czf_itt_axioms.prla
+18 -18 metaprl/theories/czf/czf_itt_bool.prla
+0 -69 metaprl/theories/czf/czf_itt_comment.ml
+69 -69 metaprl/theories/czf/czf_itt_comment.mli
+2 -2 metaprl/theories/czf/czf_itt_comment.prla
+12 -12 metaprl/theories/czf/czf_itt_coset.prla
+2 -2 metaprl/theories/czf/czf_itt_cyclic_group.prla
+2 -2 metaprl/theories/czf/czf_itt_cyclic_subgroup.prla
+19 -19 metaprl/theories/czf/czf_itt_dall.prla
+14 -14 metaprl/theories/czf/czf_itt_dexists.prla
+2 -2 metaprl/theories/czf/czf_itt_empty.prla
+2 -2 metaprl/theories/czf/czf_itt_eq.prla
+28 -28 metaprl/theories/czf/czf_itt_equiv.prla
+2 -2 metaprl/theories/czf/czf_itt_exists.prla
+2 -2 metaprl/theories/czf/czf_itt_false.prla
+16 -16 metaprl/theories/czf/czf_itt_group.prla
+2 -2 metaprl/theories/czf/czf_itt_group_bvd.prla
+2 -2 metaprl/theories/czf/czf_itt_group_power.prla
+24 -24 metaprl/theories/czf/czf_itt_hom.prla
+2 -2 metaprl/theories/czf/czf_itt_implies.prla
+2 -2 metaprl/theories/czf/czf_itt_infinity.prla
+2 -2 metaprl/theories/czf/czf_itt_inv_image.prla
+2 -2 metaprl/theories/czf/czf_itt_isect.prla
+2 -2 metaprl/theories/czf/czf_itt_iso.prla
+20 -20 metaprl/theories/czf/czf_itt_ker.prla
+2 -2 metaprl/theories/czf/czf_itt_kleingroup.prla
+15 -15 metaprl/theories/czf/czf_itt_member.prla
+2 -2 metaprl/theories/czf/czf_itt_nat.prla
+8 -8 metaprl/theories/czf/czf_itt_normal_subgroup.prla
+2 -2 metaprl/theories/czf/czf_itt_or.prla
+9 -9 metaprl/theories/czf/czf_itt_pair.prla
+2 -2 metaprl/theories/czf/czf_itt_power.prla
+2 -2 metaprl/theories/czf/czf_itt_pre_theory.prla
+1 -0 metaprl/theories/czf/czf_itt_rel.ml
+2 -2 metaprl/theories/czf/czf_itt_rel.prla
+2 -2 metaprl/theories/czf/czf_itt_sall.prla
+17 -17 metaprl/theories/czf/czf_itt_sep.prla
+19 -19 metaprl/theories/czf/czf_itt_set.prla
+10 -10 metaprl/theories/czf/czf_itt_set_bvd.prla
+2 -2 metaprl/theories/czf/czf_itt_set_ind.prla
+2 -2 metaprl/theories/czf/czf_itt_setdiff.prla
+2 -2 metaprl/theories/czf/czf_itt_sexists.prla
+2 -2 metaprl/theories/czf/czf_itt_singleton.prla
+2 -2 metaprl/theories/czf/czf_itt_subgroup.prla
+2 -2 metaprl/theories/czf/czf_itt_subset.prla
+2 -2 metaprl/theories/czf/czf_itt_true.prla
+19 -19 metaprl/theories/czf/czf_itt_union.prla
+3 -3 metaprl/theories/experimental/compile/m_ast.ml
+1 -1 metaprl/theories/experimental/compile/m_ast.mli
+4 -4 metaprl/theories/experimental/compile/m_cps.ml
+1 -1 metaprl/theories/experimental/compile/m_doc_ir.ml
+1 -1 metaprl/theories/experimental/compile/m_doc_ir.mli
+2 -2 metaprl/theories/experimental/compile/m_doc_proposal.ml
+1 -1 metaprl/theories/experimental/compile/m_doc_proposal.mli
+4 -5 metaprl/theories/experimental/compile/m_ir.ml
+7 -2 metaprl/theories/experimental/compile/m_ir.mli
+7 -7 metaprl/theories/experimental/compile/m_ir_ast.ml
+1 -0 metaprl/theories/experimental/compile/m_standardize.ml
+10 -8 metaprl/theories/experimental/compile/m_test.ml
+13 -22 metaprl/theories/experimental/compile/m_x86_asm.ml
+5 -14 metaprl/theories/experimental/compile/m_x86_asm.mli
+12 -12 metaprl/theories/experimental/compile/m_x86_codegen.ml
+11 -11 metaprl/theories/experimental/compile/m_x86_term.ml
+3 -3 metaprl/theories/experimental/mcc/fir/type/m_fir.ml
+1 -1 metaprl/theories/experimental/mcc/fir/type/m_prec.ml
Properties metaprl/theories/experimental/syntax
Added metaprl/theories/experimental/syntax/OMakefile
Properties metaprl/theories/experimental/syntax/OMakefile
Added metaprl/theories/experimental/syntax/syntax_test.ml
Properties metaprl/theories/experimental/syntax/syntax_test.ml
Added metaprl/theories/experimental/syntax/syntax_test.mli
Properties metaprl/theories/experimental/syntax/syntax_test.mli
+1 -1 metaprl/theories/fir/mfir_record.ml
+1 -3 metaprl/theories/fir/mfir_sequent.ml
+1 -1 metaprl/theories/fir/mfir_sequent.mli
+2 -2 metaprl/theories/fir/mfir_test.prla
+6 -6 metaprl/theories/fol/cfol_itt_all.prla
+9 -9 metaprl/theories/fol/cfol_itt_and.prla
+2 -2 metaprl/theories/fol/cfol_itt_base.prla
+2 -2 metaprl/theories/fol/fol_ctheory.prla
+12 -12 metaprl/theories/fol/fol_itt_and.prla
+2 -2 metaprl/theories/fol/fol_itt_false.prla
+2 -2 metaprl/theories/fol/fol_itt_implies.prla
+10 -10 metaprl/theories/fol/fol_itt_or.prla
+2 -2 metaprl/theories/fol/fol_itt_true.prla
+5 -5 metaprl/theories/fol/fol_not.prla
+11 -11 metaprl/theories/fol/fol_prop.prla
+13 -13 metaprl/theories/fol/fol_struct.prla
+2 -0 metaprl/theories/itt/OMakefile
+2 -2 metaprl/theories/itt/ctt_markov.prla
+2 -2 metaprl/theories/itt/itt_algebra_df.ml
+2 -2 metaprl/theories/itt/itt_antiquotient.prla
+2 -6 metaprl/theories/itt/itt_atom.ml
+2 -2 metaprl/theories/itt/itt_atom.mli
+55 -2 metaprl/theories/itt/itt_atom.prla
+1 -0 metaprl/theories/itt/itt_bintree.ml
+54 -2 metaprl/theories/itt/itt_bintree.prla
+17 -17 metaprl/theories/itt/itt_bisect.prla
+2 -2 metaprl/theories/itt/itt_bool.prla
+2 -2 metaprl/theories/itt/itt_bunion.prla
+1 -0 metaprl/theories/itt/itt_closure.ml
+54 -2 metaprl/theories/itt/itt_closure.prla
+2 -2 metaprl/theories/itt/itt_collection.ml
+32 -32 metaprl/theories/itt/itt_collection.prla
+13 -120 metaprl/theories/itt/itt_comment.ml
+84 -84 metaprl/theories/itt/itt_comment.mli
+1 -0 metaprl/theories/itt/itt_cyclic_group.ml
+52 -2 metaprl/theories/itt/itt_cyclic_group.prla
+1 -0 metaprl/theories/itt/itt_datatree.ml
+8 -8 metaprl/theories/itt/itt_decidable.prla
+1 -0 metaprl/theories/itt/itt_derive.ml
+9 -9 metaprl/theories/itt/itt_derive.prla
+2 -2 metaprl/theories/itt/itt_dfun.prla
+22 -22 metaprl/theories/itt/itt_disect.prla
+2 -2 metaprl/theories/itt/itt_dprod.prla
+2 -2 metaprl/theories/itt/itt_dprod_imp.prla
+2 -2 metaprl/theories/itt/itt_eq_base.prla
+2 -2 metaprl/theories/itt/itt_equal.prla
+14 -14 metaprl/theories/itt/itt_esquash.prla
+2 -2 metaprl/theories/itt/itt_ext_equal.prla
+1 -0 metaprl/theories/itt/itt_field2.ml
+54 -2 metaprl/theories/itt/itt_field2.prla
+1 -0 metaprl/theories/itt/itt_field_e.ml
+54 -2 metaprl/theories/itt/itt_field_e.prla
+2 -2 metaprl/theories/itt/itt_fset.prla
+2 -2 metaprl/theories/itt/itt_fun.ml
+2 -2 metaprl/theories/itt/itt_fun.prla
+2 -2 metaprl/theories/itt/itt_fun2.prla
+2 -2 metaprl/theories/itt/itt_functions.prla
+1 -0 metaprl/theories/itt/itt_group.ml
+53 -2 metaprl/theories/itt/itt_group.prla
+6 -3 metaprl/theories/itt/itt_grouplikeobj.ml
+54 -2 metaprl/theories/itt/itt_grouplikeobj.prla
+11 -7 metaprl/theories/itt/itt_int_arith.ml
+2 -2 metaprl/theories/itt/itt_int_arith.prla
+29 -18 metaprl/theories/itt/itt_int_base.ml
+4 -3 metaprl/theories/itt/itt_int_base.mli
+2 -2 metaprl/theories/itt/itt_int_base.prla
+2 -2 metaprl/theories/itt/itt_int_bench.prla
+2 -2 metaprl/theories/itt/itt_int_bench2.prla
+9 -9 metaprl/theories/itt/itt_int_ext.ml
+2 -2 metaprl/theories/itt/itt_int_ext.prla
+2 -2 metaprl/theories/itt/itt_int_test.prla
+1 -0 metaprl/theories/itt/itt_intdomain.ml
+54 -2 metaprl/theories/itt/itt_intdomain.prla
+1 -0 metaprl/theories/itt/itt_intdomain_e.ml
+54 -2 metaprl/theories/itt/itt_intdomain_e.prla
+23 -23 metaprl/theories/itt/itt_isect.prla
Added metaprl/theories/itt/itt_labels.ml
Properties metaprl/theories/itt/itt_labels.ml
Added metaprl/theories/itt/itt_labels.mli
Properties metaprl/theories/itt/itt_labels.mli
+9 -9 metaprl/theories/itt/itt_list.ml
+2 -2 metaprl/theories/itt/itt_list.prla
+3 -1 metaprl/theories/itt/itt_list2.ml
+2 -2 metaprl/theories/itt/itt_list2.prla
+5 -5 metaprl/theories/itt/itt_logic.ml
+2 -2 metaprl/theories/itt/itt_logic.prla
+55 -2 metaprl/theories/itt/itt_mpoly.prla
+55 -2 metaprl/theories/itt/itt_mpoly2.prla
+55 -2 metaprl/theories/itt/itt_mpoly2_bench.prla
+55 -2 metaprl/theories/itt/itt_mpoly3.prla
+55 -2 metaprl/theories/itt/itt_mpoly3_bench.prla
+7 -6 metaprl/theories/itt/itt_nat.ml
+2 -2 metaprl/theories/itt/itt_nat.prla
+18 -18 metaprl/theories/itt/itt_nequal.prla
+2 -1 metaprl/theories/itt/itt_obj_base_rewrite.ml
+54 -2 metaprl/theories/itt/itt_obj_base_rewrite.prla
+1 -0 metaprl/theories/itt/itt_order.ml
+52 -2 metaprl/theories/itt/itt_order.prla
+7 -2 metaprl/theories/itt/itt_pairwise.ml
+2 -2 metaprl/theories/itt/itt_pairwise.prla
+5 -5 metaprl/theories/itt/itt_pointwise.prla
+5 -5 metaprl/theories/itt/itt_pointwise2.prla
+1 -0 metaprl/theories/itt/itt_poly.ml
+51 -2 metaprl/theories/itt/itt_poly.prla
+1 -1 metaprl/theories/itt/itt_prec.mli
+2 -2 metaprl/theories/itt/itt_prod.prla
+6 -6 metaprl/theories/itt/itt_prop_decide.prla
+2 -2 metaprl/theories/itt/itt_quotient.prla
+1 -0 metaprl/theories/itt/itt_quotient_group.ml
+53 -2 metaprl/theories/itt/itt_quotient_group.prla
+9 -6 metaprl/theories/itt/itt_rat.ml
+1 -0 metaprl/theories/itt/itt_rat.mli
+52 -2 metaprl/theories/itt/itt_rat.prla
+2 -2 metaprl/theories/itt/itt_rat2.prla
+1 -0 metaprl/theories/itt/itt_rbtree.ml
+13 -6 metaprl/theories/itt/itt_record.ml
+2 -2 metaprl/theories/itt/itt_record.mli
+54 -2 metaprl/theories/itt/itt_record.prla
+2 -2 metaprl/theories/itt/itt_record0.prla
+1 -0 metaprl/theories/itt/itt_record_exm.ml
+74 -22 metaprl/theories/itt/itt_record_exm.prla
+60 -7 metaprl/theories/itt/itt_record_label.prla
+2 -2 metaprl/theories/itt/itt_record_label0.prla
+12 -10 metaprl/theories/itt/itt_record_renaming.ml
+1 -0 metaprl/theories/itt/itt_record_renaming.mli
+57 -5 metaprl/theories/itt/itt_record_renaming.prla
+20 -19 metaprl/theories/itt/itt_reflection.ml
+3 -5 metaprl/theories/itt/itt_reflection.prla
+3 -5 metaprl/theories/itt/itt_reflection_example_lambda.prla
+20 -19 metaprl/theories/itt/itt_reflection_new.ml
+3 -5 metaprl/theories/itt/itt_reflection_test.prla
+1 -0 metaprl/theories/itt/itt_relation_str.ml
+5 -5 metaprl/theories/itt/itt_rfun.ml
+1 -1 metaprl/theories/itt/itt_rfun.mli
+2 -2 metaprl/theories/itt/itt_rfun.prla
+6 -3 metaprl/theories/itt/itt_ring2.ml
+54 -2 metaprl/theories/itt/itt_ring2.prla
+1 -0 metaprl/theories/itt/itt_ring_e.ml
+54 -2 metaprl/theories/itt/itt_ring_e.prla
+1 -0 metaprl/theories/itt/itt_ring_uce.ml
+53 -2 metaprl/theories/itt/itt_ring_uce.prla
+2 -2 metaprl/theories/itt/itt_set.prla
+3 -2 metaprl/theories/itt/itt_set_str.ml
+13 -13 metaprl/theories/itt/itt_singleton.prla
+7 -3 metaprl/theories/itt/itt_sort.ml
+23 -23 metaprl/theories/itt/itt_sort.prla
+1 -0 metaprl/theories/itt/itt_sortedtree.ml
+67 -16 metaprl/theories/itt/itt_sortedtree.prla
+21 -21 metaprl/theories/itt/itt_squash.prla
+2 -2 metaprl/theories/itt/itt_squiggle.prla
+2 -2 metaprl/theories/itt/itt_struct.prla
+2 -2 metaprl/theories/itt/itt_struct2.prla
+5 -5 metaprl/theories/itt/itt_struct3.prla
+21 -21 metaprl/theories/itt/itt_subset.prla
+2 -2 metaprl/theories/itt/itt_subset2.prla
+2 -2 metaprl/theories/itt/itt_subtype.prla
+2 -2 metaprl/theories/itt/itt_supinf.prla
+2 -2 metaprl/theories/itt/itt_synt_bterm.prla
+2 -2 metaprl/theories/itt/itt_synt_operator.prla
+2 -2 metaprl/theories/itt/itt_synt_var.prla
+10 -3 metaprl/theories/itt/itt_test.ml
+9 -9 metaprl/theories/itt/itt_tsquash.prla
+14 -14 metaprl/theories/itt/itt_tunion.prla
+31 -31 metaprl/theories/itt/itt_union.prla
+5 -5 metaprl/theories/itt/itt_unit.prla
+1 -0 metaprl/theories/itt/itt_unitring.ml
+54 -2 metaprl/theories/itt/itt_unitring.prla
+5 -5 metaprl/theories/itt/itt_void.prla
+26 -26 metaprl/theories/itt/itt_w.prla
+11 -11 metaprl/theories/itt/itt_well_founded.prla
+2 -2 metaprl/theories/itt/jprover_tests.prla
+2 -2 metaprl/theories/kat/kat_axioms.prla
+2 -2 metaprl/theories/mesa/ma_message__automata.prla
+2 -2 metaprl/theories/mesa/nuprl_Dconstant_object_directory.prla
+2 -2 metaprl/theories/mesa/nuprl_once_object_directory.prla
+2 -2 metaprl/theories/mesa/nuprl_recognizer1_object_directory.prla
+2 -2 metaprl/theories/mesa/nuprl_ring__leader1_object_directory.prla
+2 -2 metaprl/theories/mesa/nuprl_send__once_object_directory.prla
+2 -2 metaprl/theories/mesa/nuprl_trigger1_object_directory.prla
+4 -0 metaprl/theories/phobos/phobos_base.mli
+4 -17 metaprl/theories/phobos/phobos_theory.ml
+0 -0 metaprl/theories/sil/sil_program.ml
+5 -0 metaprl/theories/sil/sil_programs.ml
+5 -0 metaprl/theories/sil/sil_programs.mli
+0 -0 metaprl/theories/sil/sil_sos.ml
+4 -4 metaprl/theories/sil/sil_state.ml
+2 -2 metaprl/theories/sil/sil_state_types.ml
+3 -2 metaprl/theories/tptp/tptp.ml
+7003 -8115 metaprl/theories/tptp/tptp.prla
+1 -0 metaprl/theories/tptp/tptp_cache.ml
+5 -2 metaprl/util/gen_refiner_debug.pl
+4 -1 metaprl/util/gen_refiner_debug_err.pl
+0 -1 mpcompiler/mmc/OMakefile
+33 -174 mpcompiler/mmc/arch/x86/mmc_x86_asm.ml
+92 -47 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+95 -90 mpcompiler/mmc/arch/x86/mmc_x86_backend.ml
+11 -10 mpcompiler/mmc/arch/x86/mmc_x86_closure.ml
+43 -61 mpcompiler/mmc/arch/x86/mmc_x86_codegen.ml
+18 -7 mpcompiler/mmc/arch/x86/mmc_x86_codegen.mli
+56 -56 mpcompiler/mmc/arch/x86/mmc_x86_convention.ml
+22 -27 mpcompiler/mmc/arch/x86/mmc_x86_frame.ml
+15 -15 mpcompiler/mmc/arch/x86/mmc_x86_frame.mli
+1 -1 mpcompiler/mmc/arch/x86/mmc_x86_hoist.ml
+3 -3 mpcompiler/mmc/arch/x86/mmc_x86_opt1.ml
+24 -25 mpcompiler/mmc/arch/x86/mmc_x86_prologue.ml
+16 -9 mpcompiler/mmc/arch/x86/mmc_x86_prologue.mli
+22 -21 mpcompiler/mmc/arch/x86/mmc_x86_slop.ml
+62 -58 mpcompiler/mmc/arch/x86/mmc_x86_spill.ml
+0 -9 mpcompiler/mmc/base/mmc_base_dform.ml
+1 -1 mpcompiler/mmc/base/mmc_base_hoist.ml
+1 -1 mpcompiler/mmc/base/mmc_base_hoist.mli
+2 -23 mpcompiler/mmc/base/mmc_base_judgment.ml
+47 -4 mpcompiler/mmc/base/mmc_base_judgment.mli
+0 -7 mpcompiler/mmc/base/mmc_base_meta.ml
+6 -4 mpcompiler/mmc/base/mmc_base_meta.mli
+1 -1 mpcompiler/mmc/base/mmc_base_standardize.ml
+0 -2 mpcompiler/mmc/core/Files
+12 -70 mpcompiler/mmc/core/mmc_core_ast.ml
+56 -38 mpcompiler/mmc/core/mmc_core_ast.mli
+78 -65 mpcompiler/mmc/core/mmc_core_closure.ml
+0 -4 mpcompiler/mmc/core/mmc_core_closure.mli
+149 -98 mpcompiler/mmc/core/mmc_core_cps.ml
+8 -4 mpcompiler/mmc/core/mmc_core_cps.mli
+2 -2 mpcompiler/mmc/core/mmc_core_cps.prla
+11 -18 mpcompiler/mmc/core/mmc_core_front.ml
+2 -1 mpcompiler/mmc/core/mmc_core_front.mli
+7 -7 mpcompiler/mmc/core/mmc_core_grammar.ml
+7 -7 mpcompiler/mmc/core/mmc_core_grammar.mli
+4 -2 mpcompiler/mmc/core/mmc_core_hoist.ml
+16 -22 mpcompiler/mmc/core/mmc_core_inline.ml
+4 -3 mpcompiler/mmc/core/mmc_core_inline.mli
+2 -1 mpcompiler/mmc/core/mmc_core_list_util.ml
+2 -1 mpcompiler/mmc/core/mmc_core_list_util.mli
+4 -4 mpcompiler/mmc/core/mmc_core_optimize.ml
+17 -26 mpcompiler/mmc/core/mmc_core_reserve.ml
+5 -8 mpcompiler/mmc/core/mmc_core_reserve.mli
+95 -32 mpcompiler/mmc/core/mmc_core_sweep_ty.ml
+3 -0 mpcompiler/mmc/core/mmc_core_sweep_ty.mli
+20 -53 mpcompiler/mmc/core/mmc_core_tast.ml
+48 -13 mpcompiler/mmc/core/mmc_core_tast.mli
+1 -1 mpcompiler/mmc/core/mmc_core_tast_util.ml
+105 -94 mpcompiler/mmc/core/mmc_core_type_check.ml
+15 -8 mpcompiler/mmc/core/mmc_core_type_check.mli
+2 -2 mpcompiler/mmc/core/mmc_core_type_check.prla
+37 -37 mpcompiler/mmc/core/mmc_core_type_erase.ml
+12 -1 mpcompiler/mmc/core/mmc_core_type_erase.mli
+147 -21 mpcompiler/mmc/core/mmc_core_type_infer.ml
+9 -14 mpcompiler/mmc/core/mmc_core_value.ml
+6 -4 mpcompiler/mmc/core/mmc_core_value.mli
+14 -21 mpcompiler/mmc/extensions/array/mmc_ext_array.ml
+7 -5 mpcompiler/mmc/extensions/array/mmc_ext_array.mli
+29 -24 mpcompiler/mmc/extensions/array/mmc_ext_array_x86.ml
+27 -45 mpcompiler/mmc/extensions/bool/mmc_ext_bool.ml
+21 -15 mpcompiler/mmc/extensions/bool/mmc_ext_bool.mli
+2 -2 mpcompiler/mmc/extensions/bool/mmc_ext_boolean.prla
+2 -2 mpcompiler/mmc/extensions/bool/mmc_ext_boolean_x86.ml
+34 -46 mpcompiler/mmc/extensions/int/mmc_ext_int.ml
+34 -31 mpcompiler/mmc/extensions/int/mmc_ext_int.mli
+43 -43 mpcompiler/mmc/extensions/int/mmc_ext_integer_x86.ml
+7 -10 mpcompiler/mmc/extensions/loop/mmc_ext_loop.ml
+3 -1 mpcompiler/mmc/extensions/loop/mmc_ext_loop.mli
+42 -55 mpcompiler/mmc/extensions/operator/mmc_ext_operator.ml
+43 -7 mpcompiler/mmc/extensions/operator/mmc_ext_operator.mli
+8 -8 mpcompiler/mmc/extensions/reserve/mmc_ext_reserve.ml
+1 -1 mpcompiler/mmc/extensions/reserve/mmc_ext_reserve.mli
+8 -8 mpcompiler/mmc/extensions/reserve/mmc_ext_reserve_x86.ml
+2 -2 mpcompiler/mmc/extensions/special/mmc_ext_special.ml
+2 -2 mpcompiler/mmc/extensions/special/mmc_ext_special.mli
+2 -2 mpcompiler/mmc/extensions/special/mmc_ext_special_x86.ml
+2 -7 mpcompiler/mmc/extensions/string/mmc_ext_string.ml
+5 -2 mpcompiler/mmc/extensions/string/mmc_ext_string.mli
+12 -20 mpcompiler/mmc/extensions/tuple/mmc_ext_tuple.ml
+7 -5 mpcompiler/mmc/extensions/tuple/mmc_ext_tuple.mli
+9 -4 mpcompiler/mmc/extensions/tuple/mmc_ext_tuple_x86.ml
+7 -6 mpcompiler/mmc/extensions/tyexists/mmc_ext_tyexists.ml
+4 -3 mpcompiler/mmc/extensions/tyexists/mmc_ext_tyexists.mli
+4 -8 mpcompiler/mmc/extensions/unit/mmc_ext_unit.ml
+5 -2 mpcompiler/mmc/extensions/unit/mmc_ext_unit.mli
+0 -1 mpcompiler/mmc/main/mmc_theory.ml
+0 -1 mpcompiler/mmc/main/mmc_theory.mli
+37 -37 mpcompiler/mmc/opt/direct/core/mmc_opt_direct.ml
+1 -1 mpcompiler/mmc/test/mmc
+23 -23 mpcompiler/mmc/test/mmc_array_test.ml
+0 -0 mpcompiler/mmc/test/mmc_core_test.ml
+2 -2 mpcompiler/mmc/test/mmc_core_test.prla
+8 -3 mpcompiler/mmc/test/mmc_spill_test.ml
+0 -1 mpcompiler/util/Files
+9 -8 mpcompiler/util/mm_arith_util.ml
+8 -7 mpcompiler/util/mm_arith_util.mli
+14 -13 mpcompiler/util/mm_dform_util.ml
+4 -4 mpcompiler/util/mm_dform_util.mli
+16 -9 mpcompiler/util/mm_list_util.ml
+10 -6 mpcompiler/util/mm_list_util.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 15:02:12 -0800 (Mon, 07 Feb 2005)
Revision: 6625
Log message:

      Added a "gc_compact" topval function that can be used to call Gc.compact and
      get more accurate memory usage stats.
      

Changes  Path
+1 -0 metaprl/support/shell/shell_command.ml
+1 -0 metaprl/support/shell/shell_command.mli

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-07 15:27:02 -0800 (Mon, 07 Feb 2005)
Revision: 6626
Log message:

      Proved more rules.
      

Changes  Path
+16 -0 metaprl/theories/itt/itt_synt_bterm.ml
+1413 -1164 metaprl/theories/itt/itt_synt_bterm.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 20:52:21 -0800 (Mon, 07 Feb 2005)
Revision: 6627
Log message:

      - Package_info was putting packages into a complicated dag structure, but the
      dag was never actually used. I removed the dag structure.
      
      - Minor update for display forms for the root path ("/") listing.
      

Changes  Path
+8 -68 metaprl/support/shell/package_info.ml
+0 -3 metaprl/support/shell/package_info.mli
+2 -2 metaprl/support/shell/shell_root.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-07 22:33:46 -0800 (Mon, 07 Feb 2005)
Revision: 6628
Log message:

      PackReadOnly flag was never used (we were testing for it, but never setting
      it), removing.
      

Changes  Path
+22 -28 metaprl/support/shell/package_info.ml
+0 -1 metaprl/support/shell/shell_sig.mlz

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-08 00:04:25 -0800 (Tue, 08 Feb 2005)
Revision: 6629
Log message:

      I overlooked free type variables in the environment during existential
      quantification in rules and rewrites.  This fixes it.  However, note
      that rewrites like the following don't typecheck.
      
         prim_rw add_sub_one :
            ('a in int) -->
            'a <--> (('a +@ 1) -@ 1)
      
      The rewrite is quite sensible in Itt, but problematic because it
      applies to any term in the system (including display forms
      for example).  The quick solution is to add the constraint.
      
         prim_rw add_sub_one ('a :> Term) :
            ('a in int) -->
            'a <--> (('a +@ 1) -@ 1)
      
      This is a bit suboptimal, but rewrites like this are very rare,
      and the extra alpha-equality adds only O(1) overhead.
      

Changes  Path
+12 -7 metaprl/filter/base/filter_cache_fun.ml
+2 -0 metaprl/filter/base/filter_type.ml
+1 -1 metaprl/filter/filter/filter_parse.ml
+4 -2 metaprl/filter/filter/term_grammar.ml
+59 -43 metaprl/refiner/reflib/term_ty_infer.ml
+1 -0 metaprl/refiner/reflib/term_ty_infer.mli
+2 -3 metaprl/theories/base/base_rewrite.ml
+1 -1 metaprl/theories/base/base_rewrite.mli
+7 -6 metaprl/theories/itt/itt_int_base.ml
+2 -2 metaprl/theories/itt/itt_int_ext.ml
+1 -1 metaprl/theories/itt/itt_int_ext.prla
+6 -6 metaprl/theories/itt/itt_rat.ml
+2 -2 metaprl/theories/itt/itt_record_renaming.ml
+2 -1 metaprl/theories/itt/itt_reflection.ml
+1 -0 metaprl/theories/itt/itt_reflection.mli
+2 -2 metaprl/theories/itt/itt_reflection.prla
+149 -5 metaprl/theories/ocaml_doc/ocaml_doc_exn1.ml
+1 -1 metaprl/theories/ocaml_doc/ocaml_doc_expr4.ml
+1 -1 mpcompiler/mmc/base/mmc_base_standardize.ml
+0 -6 mpcompiler/mmc/core/mmc_core_cps.ml
+0 -6 mpcompiler/mmc/core/mmc_core_grammar.ml
+1 -1 mpcompiler/mmc/core/mmc_core_type_infer.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-08 10:24:05 -0800 (Tue, 08 Feb 2005)
Revision: 6630
Log message:

      - Changed the default_extract error message to a more verbose one.
      
      - Dropped the ":normal" suffix from filter shape display in filter - I think
        it's more readable if only the "special" shapes get these "kind" suffixes.
      

Changes  Path
+1 -1 metaprl/filter/base/filter_cache_fun.ml
+5 -1 metaprl/filter/filter/filter_parse.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-08 12:06:51 -0800 (Tue, 08 Feb 2005)
Revision: 6631
Log message:

      Progress toward removing package info that is not needed.
      
      This just changes the package base to include only loaded packages.
      Packages are auto-loaded as normal, so you shouldn't see any
      change in behavior.
      
      For the next step, we want to be able to garbage collect unmodified
      packages that are no longer in use.
      

Changes  Path
+33 -34 metaprl/support/shell/package_info.ml
+32 -4 metaprl/support/shell/package_info.mli
+2 -2 metaprl/support/shell/shell.ml
+27 -6 metaprl/support/shell/shell_core.ml
+2 -1 metaprl/support/shell/shell_core.mli
+2 -1 metaprl/support/shell/shell_root.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-08 14:17:48 -0800 (Tue, 08 Feb 2005)
Revision: 6632
Log message:

      Defined substitution
      

Changes  Path
+22 -0 metaprl/theories/itt/itt_synt_bterm.ml
+16 -0 metaprl/theories/itt/itt_synt_var.ml
+2 -0 metaprl/theories/itt/itt_synt_var.mli

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-08 15:32:13 -0800 (Tue, 08 Feb 2005)
Revision: 6633
Log message:

      a little more proofs.
      

Changes  Path
+2 -2 metaprl/theories/itt/OMakefile
+9 -8 metaprl/theories/itt/itt_synt_bterm.ml
+1621 -1498 metaprl/theories/itt/itt_synt_bterm.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-08 15:55:25 -0800 (Tue, 08 Feb 2005)
Revision: 6634
Log message:

      New list rules
      

Changes  Path
+36 -24 metaprl/theories/itt/itt_list2.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-08 17:33:21 -0800 (Tue, 08 Feb 2005)
Revision: 6635
Log message:

      Working on properties of the substitution
      

Changes  Path
+1 -0 metaprl/theories/itt/OMakefile
+6 -25 metaprl/theories/itt/itt_synt_bterm.ml
Added metaprl/theories/itt/itt_synt_subst.ml
Properties metaprl/theories/itt/itt_synt_subst.ml
Added metaprl/theories/itt/itt_synt_subst.mli
Properties metaprl/theories/itt/itt_synt_subst.mli
+0 -0 metaprl/theories/itt/itt_synt_var.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-08 17:44:11 -0800 (Tue, 08 Feb 2005)
Revision: 6636
Log message:

      Adding couple of missing declarations.
      

Changes  Path
+2 -0 metaprl/theories/itt/itt_synt_bterm.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-08 17:58:52 -0800 (Tue, 08 Feb 2005)
Revision: 6637
Log message:

      Improve the space used by MetaPRL.
      
      The "abandon ()" command abandons the current theory.
      CAUTION: use this only if you want to lose your unsaved
      work.  You will not be prompted.
      
      The "abandon_all ()" command tries to get MetaPRL back to
      startup state.  It abandons all theories, all caches, all
      file information, and the proof cache.
      
      Package_info is now saved in a Weak array.  This means that
      the package info for unmodified theories can be garbage collected.
      
      To check status without saving, use
         status_and_abandon_all ().
      This will delete all your unsaved work.
      
      We still have some memory leaks.  After a status_and_abandon_all,
      we have roughly 160MB live data.  MetaPRL starts with 20MB.
      I've covered these:
         1. The file base: file_base.ml
         2. The proof cache: proof_boot.ml
         3. The filter: filter_cache_fun.ml
         4. The package_info: package_info.ml
         5. Some of the resource data: mp_resource.ml
      
      It looks like some other place is caching data...
      

Changes  Path
+7 -0 metaprl/filter/base/filter_cache_fun.ml
+2 -1 metaprl/filter/base/filter_summary_io.ml
+2 -0 metaprl/filter/base/filter_summary_type.ml
+3 -1 metaprl/mllib/file_base.ml
+2 -1 metaprl/mllib/file_base_type.ml
+143 -71 metaprl/support/shell/package_info.ml
+10 -8 metaprl/support/shell/package_info.mli
+0 -0 metaprl/support/shell/proof_edit.ml
+28 -20 metaprl/support/shell/shell.ml
+63 -20 metaprl/support/shell/shell_command.ml
+10 -0 metaprl/support/shell/shell_command.mli
+57 -31 metaprl/support/shell/shell_core.ml
+19 -10 metaprl/support/shell/shell_core.mli
+9 -2 metaprl/support/shell/shell_sig.mlz
+6 -3 metaprl/tactics/proof/proof_boot.ml
+4 -0 metaprl/tactics/proof/tactic_boot_sig.ml
+1 -1 metaprl/theories/itt/itt_synt_bterm.mli
+1 -1 metaprl/util/status-all.sh

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-08 20:57:14 -0800 (Tue, 08 Feb 2005)
Revision: 6638
Log message:

      Collected the resource state into a record.  Aleksey, can some of the
      resource state can be pruned?  I imagine the global_processed_data is
      particularly large, and can be reconstructed if needed.
      
       # abandon_all ();;
       Mp_resource:
          global_data = 330
          local_data = 0
          local_names = 0
          top_data = 329
          theory_include = 330
          global_bookmarker = 3141
          global_processed_data = 6265
       () : unit
      
      -------------------
      
      A bit better info on type variables.  Here is the error on
         sequent { <H> >- 'C } --> sequent { <H> >- 'A }
      
      type error:
                   - sequent [Syntax_test!sequent_arg] { <'H> >- 'C<|!|> }
                   - while typechecking
                   - 'C<|!|>
                   - context variable <H>
                   - has type
                   - Perv!ty_sequent_context_var
                         {Perv!ty_sequent_context_cvars{Perv!xnil};
                          Perv!ty_sequent_context_args{Perv!xnil};
                          Perv!ty_hyp{Perv!Term; Perv!Term}}
                   - but is used with type
                   - Perv!type[arg1022:v]
      
      I've always been a bit confused about the notation 'C<|!|>.  The
      actual term here is 'C<|H|>, which might help clarify the error
      message a bit.
      
      Are these terms like 'x<|!|> the same as !x?
      Why does 'C<|!|> print that way when it is actually 'C<|H|>?
      
      Certainly we can do better, but I'd like to know why this doesn't
      print as expected (Simple_print).
      

Changes  Path
+76 -47 metaprl/refiner/reflib/mp_resource.ml
+2 -0 metaprl/refiner/reflib/mp_resource.mli
+68 -34 metaprl/refiner/reflib/term_ty_infer.ml
+15 -15 metaprl/support/shell/shell_core.ml
+4 -8 metaprl/theories/experimental/syntax/syntax_test.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-08 23:21:36 -0800 (Tue, 08 Feb 2005)
Revision: 6639
Log message:

      Added length function to TableSig
      

Changes  Path
+12 -2 metaprl/mllib/debug_tables.ml
+1 -0 metaprl/refiner/reflib/term_eq_table.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-08 23:42:09 -0800 (Tue, 08 Feb 2005)
Revision: 6640
Log message:

      Removed dark shadows  - they can only be used to disprove things.
      Added some heuristics from Pugh's paper, still more to add.
      Two alternative implementations of linear forms (splay trees and arrays),
      currently they are run simultaneously for debugging.
      (I hope everything is ok - it's too late to do check-status)
      

Changes  Path
+568 -36 metaprl/theories/itt/itt_omega.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-09 00:07:22 -0800 (Wed, 09 Feb 2005)
Revision: 6641
Log message:

      proved some rules.
      

Changes  Path
+22 -1 metaprl/theories/itt/itt_list2.ml
+5612 -4177 metaprl/theories/itt/itt_list2.prla
+2386 -2228 metaprl/theories/itt/itt_synt_bterm.prla
+1144 -554 metaprl/theories/itt/itt_synt_var.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-09 09:35:49 -0800 (Wed, 09 Feb 2005)
Revision: 6642
Log message:

      - The status_and_abandon_all will now call Package_info.abandon instead of
        abandon_all after every package (abandon_all is too verbose, spends time
        iterating over all packages, clears resources, which are all undesired here)
      
      - Implemented Mp_resource.clear. Note - this destructs _all_ the cache, which
        will make resource processing slower in theories you have not visited yet
        (provided they have common ancestors with the theories you did visit).
      

Changes  Path
+63 -63 metaprl/refiner/reflib/mp_resource.ml
+1 -1 metaprl/refiner/reflib/mp_resource.mli
+1 -1 metaprl/support/shell/OMakefile
+3 -2 metaprl/support/shell/shell_command.ml
+1 -0 metaprl/support/shell/shell_command.mli
+1 -1 metaprl/support/shell/shell_core.ml
+60 -2 metaprl/support/shell/shell_internal_sig.mlz
+0 -53 metaprl/support/shell/shell_sig.mlz

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-09 10:29:39 -0800 (Wed, 09 Feb 2005)
Revision: 6643
Log message:

      Mp_resource.clean was too aggressive (keeping the data from implrove_resource,
      but forgetting the data from create_resource) - fixed.
      

Changes  Path
+11 -4 metaprl/refiner/reflib/mp_resource.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-09 13:01:11 -0800 (Wed, 09 Feb 2005)
Revision: 6644
Log message:

      - Call Proof_boot.Proof.clear_cache between modules when doing
        status_and_abandon_all
      
      - Rearranged the code a bit.
      

Changes  Path
+1 -1 metaprl/support/shell/OMakefile
+2 -4 metaprl/support/shell/package_info.ml
+1 -1 metaprl/support/shell/package_info.mli
+4 -2 metaprl/support/shell/shell.ml
+1 -16 metaprl/support/shell/shell_command.ml
+0 -10 metaprl/support/shell/shell_command.mli
+12 -2 metaprl/support/shell/shell_core.ml
+12 -0 metaprl/support/shell/shell_core.mli
+0 -0 metaprl/support/shell/shell_state.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-09 15:41:40 -0800 (Wed, 09 Feb 2005)
Revision: 6645
Log message:

      finished a proof due to Yegor's omegaT improvement.
      

Changes  Path
+1 -0 metaprl/theories/itt/itt_synt_var.ml
+534 -515 metaprl/theories/itt/itt_synt_var.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-09 20:15:22 -0800 (Wed, 09 Feb 2005)
Revision: 6646
Log message:

      Fixed Package_info.abandon so that the proofs are deleted as well.
      This just required deleting the str_summary from the
      Filter_cache_fun.
      
      status_and_abandon_all () still requires an obscenely large
      amount of memory, about 350MB.  It would be better if the
      heap requirements were proportional to the expanded size
      of the largest theory...
      

Changes  Path
+17 -0 metaprl/filter/base/filter_cache_fun.ml
+1 -0 metaprl/filter/base/filter_summary_type.ml
+13 -1 metaprl/mllib/file_base.ml
+32 -7 metaprl/support/shell/package_info.ml
+1 -0 metaprl/support/shell/package_info.mli
+4 -8 metaprl/support/shell/shell_core.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-09 21:50:12 -0800 (Wed, 09 Feb 2005)
Revision: 6647
Log message:

      Removed debugging code.
      

Changes  Path
+40 -22 metaprl/theories/itt/itt_omega.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-10 00:01:57 -0800 (Thu, 10 Feb 2005)
Revision: 6648
Log message:

      Some proofs in Itt_list2
      

Changes  Path
+2 -2 metaprl/theories/itt/OMakefile
+35 -1 metaprl/theories/itt/itt_list2.ml
+4156 -3992 metaprl/theories/itt/itt_list2.prla
+5 -0 metaprl/theories/itt/itt_nat.ml
+1928 -1561 metaprl/theories/itt/itt_nat.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-10 11:39:05 -0800 (Thu, 10 Feb 2005)
Revision: 6649
Log message:

      The type checker should not just assume that every variable is sensible;
      it should care about free meta-variables.  Updated the RewriteFreeSOVar
      error message a bit.
      

Changes  Path
+1 -1 metaprl/refiner/reflib/refine_exn.ml
+16 -17 metaprl/refiner/reflib/term_ty_infer.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-10 12:46:52 -0800 (Thu, 10 Feb 2005)
Revision: 6650
Log message:

      Rewriter was using <> instead of Lm_num.eq_num for comparing numbers, which
      lead to problems in /itt/itt_int_bench/test1 (where it ended up rejecting a
      rewrite that expected "Int 0", but got "BigInt 0"). Fixed.
      
      Yegor, /itt/itt_int_bench/test1 is _very_ slow - can something be done about
      it?
      

Changes  Path
+1 -9 metaprl/refiner/rewrite/rewrite_debug.ml
+1 -1 metaprl/refiner/rewrite/rewrite_match_redex.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-10 18:10:45 -0800 (Thu, 10 Feb 2005)
Revision: 6651
Log message:

      Fixed substitution. We don't need subst_var anymore.
      

Changes  Path
+1 -0 metaprl/theories/itt/itt_fun2.ml
+1 -0 metaprl/theories/itt/itt_fun2.mli
+23 -2 metaprl/theories/itt/itt_synt_subst.ml
+0 -15 metaprl/theories/itt/itt_synt_var.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-10 23:01:45 -0800 (Thu, 10 Feb 2005)
Revision: 6652
Log message:

      Omega became smarter, in some cases it significantly dropped
      omega's running time.
      (itt_int_bench/test1 from 80secs to 2secs)
      

Changes  Path
+46 -152 metaprl/theories/itt/itt_omega.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-10 23:24:14 -0800 (Thu, 10 Feb 2005)
Revision: 6653
Log message:

      Some proofs for substituion.
      Some display forms
      

Changes  Path
+10 -1 metaprl/theories/itt/itt_fun2.ml
+0 -1 metaprl/theories/itt/itt_fun2.mli
+65 -33 metaprl/theories/itt/itt_list2.ml
+2 -0 metaprl/theories/itt/itt_list2.mli
+24 -0 metaprl/theories/itt/itt_synt_bterm.ml
+6 -0 metaprl/theories/itt/itt_synt_operator.ml
+31 -10 metaprl/theories/itt/itt_synt_subst.ml
Added metaprl/theories/itt/itt_synt_subst.prla
Properties metaprl/theories/itt/itt_synt_subst.prla
+3 -0 metaprl/theories/itt/itt_synt_var.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-11 00:02:22 -0800 (Fri, 11 Feb 2005)
Revision: 6654
Log message:

      some more theorems
      

Changes  Path
+5 -0 metaprl/theories/itt/itt_synt_operator.ml
+3 -0 metaprl/theories/itt/itt_synt_operator.mli
+29 -2 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-11 13:14:06 -0800 (Fri, 11 Feb 2005)
Revision: 6655
Log message:

      Added a definition of bind for bterms, but I'm not sure about it
      

Changes  Path
+24 -2 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-11 17:02:40 -0800 (Fri, 11 Feb 2005)
Revision: 6657
Log message:

      more proofs
      

Changes  Path
+1816 -1402 metaprl/theories/itt/itt_synt_bterm.prla
+873 -630 metaprl/theories/itt/itt_synt_operator.prla
+1 -1 metaprl/theories/itt/itt_synt_subst.ml
+269 -721 metaprl/theories/itt/itt_synt_var.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-11 17:09:40 -0800 (Fri, 11 Feb 2005)
Revision: 6658
Log message:

      extend itt_list
      

Changes  Path
+1 -0 metaprl/theories/itt/itt_synt_operator.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-11 17:16:40 -0800 (Fri, 11 Feb 2005)
Revision: 6659
Log message:

      Renamed a couple of rules.
      Changed definition of bind. But I still don't like it.
      

Changes  Path
+5 -7 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-11 17:43:50 -0800 (Fri, 11 Feb 2005)
Revision: 6660
Log message:

      We had a nasty problem in Itt_synt_operator where list{...} in an _axiom_
      ended up being interpreted as Ocaml!list{...} instead of Itt_list!list{...}!
      
      To avoid such issues in the future, I've changed the types of all the Ocaml
      terms to be Ocaml (instead of Term). Ocaml is declared as a subtype of Dform,
      but not a subtype of Term. This, BTW, also made the types of the
      Ocaml_base_sos operators a bit more descriptive.
      

Changes  Path
+273 -272 metaprl/support/display/ocaml.mlz
+1 -0 metaprl/support/display/ocaml_base_df.ml
+68 -67 metaprl/support/display/ocaml_base_df.mli
+11 -11 metaprl/support/display/ocaml_expr_df.ml
+4 -4 metaprl/support/display/ocaml_expr_df.mli
+1 -1 metaprl/support/display/ocaml_mt_df.ml
+14 -14 metaprl/support/display/ocaml_patt_df.ml
+6 -6 metaprl/support/display/ocaml_sig_df.ml
+2 -2 metaprl/support/display/ocaml_str_df.ml
+7 -7 metaprl/support/display/ocaml_type_df.ml
+17 -21 metaprl/theories/ocaml_sos/ocaml_base_sos.ml
+13 -13 metaprl/theories/ocaml_sos/ocaml_base_sos.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-11 19:44:21 -0800 (Fri, 11 Feb 2005)
Revision: 6661
Log message:

      Actually, only two files needed fixing with the new Ocaml typeclass.
      I changed the name to OCaml...  It is just that OCaml is more like the
      real name, and is easier to type in.
      

Changes  Path
+2 -0 metaprl/filter/filter/term_grammar.ml
+273 -273 metaprl/support/display/ocaml.mlz
+67 -67 metaprl/support/display/ocaml_base_df.mli
+11 -11 metaprl/support/display/ocaml_expr_df.ml
+4 -4 metaprl/support/display/ocaml_expr_df.mli
+1 -1 metaprl/support/display/ocaml_mt_df.ml
+14 -14 metaprl/support/display/ocaml_patt_df.ml
+6 -6 metaprl/support/display/ocaml_sig_df.ml
+2 -2 metaprl/support/display/ocaml_str_df.ml
+7 -7 metaprl/support/display/ocaml_type_df.ml
+2 -2 metaprl/support/display/summary.ml
+5 -14 metaprl/theories/fir/mfir_tr_atom_base.ml
+13 -13 metaprl/theories/ocaml_sos/ocaml_base_sos.ml
+14 -14 metaprl/theories/ocaml_sos/ocaml_base_sos.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-11 21:14:11 -0800 (Fri, 11 Feb 2005)
Revision: 6662
Log message:

      Migrated the Refine.check_* tests so they are performed before
      type checking.
      
      I don't know how the errors in itt_reflection_example_lambda.ml escaped us...
      

Changes  Path
+5 -4 metaprl/filter/base/filter_type.ml
+73 -92 metaprl/filter/filter/filter_parse.ml
+36 -7 metaprl/filter/filter/term_grammar.ml
+1 -1 metaprl/theories/experimental/syntax/syntax_test.ml
+2 -2 metaprl/theories/itt/itt_reflection_example_lambda.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-11 22:38:23 -0800 (Fri, 11 Feb 2005)
Revision: 6663
Log message:

      I've implemented one of heurisitcs for Omega test
      (next variable to eliminate is the one with lowest coeffcients)
      but it actually increased running time for itt_int_bench threefold.
      I commit it disabled.
      

Changes  Path
+117 -53 metaprl/theories/itt/itt_omega.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-12 16:33:02 -0800 (Sat, 12 Feb 2005)
Revision: 6664
Log message:

      Updated the term hashing in Filter_cache_fun.  This propagates
      changes more accurately when declarations change.
      

Changes  Path
+50 -9 metaprl/filter/base/filter_cache_fun.ml
+98 -6 metaprl/filter/base/filter_grammar.ml
+4 -0 metaprl/filter/base/filter_grammar.mli
+1 -1 metaprl/filter/base/filter_magic.ml
+1 -0 metaprl/refiner/refiner/refiner_debug.ml
+30 -29 metaprl/refiner/reflib/Files
Added metaprl/refiner/reflib/term_hash_code.ml
Properties metaprl/refiner/reflib/term_hash_code.ml
Added metaprl/refiner/reflib/term_hash_code.mli
Properties metaprl/refiner/reflib/term_hash_code.mli

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-12 20:40:05 -0800 (Sat, 12 Feb 2005)
Revision: 6665
Log message:

      Variables that have only lower or only upper bounds can be removed
      with all constraints that contain them.
      Constraints are stored in a hashtable now (instead of list).
      This allows to eliminate redundant constraints.
      At this moment itt_int_bench/test6 takes 100secs to prove,
      at least 90% of which is "ttca".
      

Changes  Path
+131 -58 metaprl/theories/itt/itt_omega.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-12 23:27:32 -0800 (Sat, 12 Feb 2005)
Revision: 6666
Log message:

      Changed places where terms (polynoms) have to be normalized.
      Merged/specialized a couple of rules
      
      This resulted in reduction of time spent in expand() for itt_int_bench/test6
      (from 100 to 50 seconds)
      
      But on the other hand, time to expand simpler problems (itt_int_test)
      gradually doubled with last days changes in Omega
      

Changes  Path
+26 -9 metaprl/theories/itt/itt_omega.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-13 01:18:40 -0800 (Sun, 13 Feb 2005)
Revision: 6667
Log message:

      proved theorems in itt_synt_subst
      

Changes  Path
+8 -0 metaprl/theories/itt/itt_synt_bterm.ml
+1450 -1307 metaprl/theories/itt/itt_synt_bterm.prla
+36 -1 metaprl/theories/itt/itt_synt_operator.ml
+1084 -473 metaprl/theories/itt/itt_synt_operator.prla
+8 -5 metaprl/theories/itt/itt_synt_subst.ml
+4 -0 metaprl/theories/itt/itt_synt_subst.mli
+1690 -447 metaprl/theories/itt/itt_synt_subst.prla
+1 -0 metaprl/theories/itt/itt_synt_var.ml
+479 -385 metaprl/theories/itt/itt_synt_var.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-13 11:48:21 -0800 (Sun, 13 Feb 2005)
Revision: 6668
Log message:

      Corrected the subtyping rule for hyp contexts.
      

Changes  Path
+248 -116 metaprl/refiner/reflib/term_ty_infer.ml
+1 -1 mpcompiler/mmc/core/mmc_core_closure.ml
+1 -1 mpcompiler/mmc/core/mmc_core_tast.ml
+2 -2 mpcompiler/mmc/core/mmc_core_tast.mli

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-13 14:18:44 -0800 (Sun, 13 Feb 2005)
Revision: 6669
Log message:

      Certain conditions (like <>) doubles number of problems omega
      has to be applied to. We want to normalize polynoms before
      these problems multiply but we don't know which constraints
      will actually be useful.
      That's why omega is launched twice per constraint set now:
      first time to establish which hypotheses are actually used
      second time (after all constraints are converted to >=) to construct
      proofs.
      time in itt_int_bench/test6 dropped to 2 seconds
      total time in itt_int_bench dropped to 20 seconds
      itt_int_test is only 3 seconds (vs 2 seconds using arithT).
      

Changes  Path
+13 -5 metaprl/theories/itt/itt_int_arith.ml
+142 -4 metaprl/theories/itt/itt_omega.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-13 15:21:17 -0800 (Sun, 13 Feb 2005)
Revision: 6670
Log message:

      Warning "branching is not supported yet" should be printed
      in debug mode only.
      

Changes  Path
+4 -2 metaprl/theories/itt/itt_int_arith.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-14 19:03:17 -0800 (Mon, 14 Feb 2005)
Revision: 6671
Log message:

      Add the rule subst_commute
      

Changes  Path
+42 -1 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-15 00:06:44 -0800 (Tue, 15 Feb 2005)
Revision: 6673
Log message:

      Fixed a rewriter bug. Made hypSubstT and revHypSubstT a bit smarter at
      avoiding usage of variables outside of their scope.
      

Changes  Path
+7 -7 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+9 -3 metaprl/theories/itt/itt_struct2.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-15 01:43:24 -0800 (Tue, 15 Feb 2005)
Revision: 6674
Log message:

      Minor code cleanup. Minor optimizations.
      

Changes  Path
+41 -62 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+16 -6 metaprl/refiner/term_ds/term_man_ds.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-15 02:38:30 -0800 (Tue, 15 Feb 2005)
Revision: 6675
Log message:

      Added some rewrites in itt_synt_subst; on the way to prove "subst_commute".
      

Changes  Path
+1 -0 metaprl/theories/itt/itt_int_ext.ml
+1 -0 metaprl/theories/itt/itt_int_ext.mli
+4 -0 metaprl/theories/itt/itt_list2.ml
+20 -1 metaprl/theories/itt/itt_synt_subst.ml
+1 -0 metaprl/theories/itt/itt_synt_subst.mli
+1612 -533 metaprl/theories/itt/itt_synt_subst.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-15 15:49:56 -0800 (Tue, 15 Feb 2005)
Revision: 6676
Log message:

      Proved that T Type --> T Type Type
      

Changes  Path
+3 -0 metaprl/theories/itt/itt_equal.ml
+4643 -6491 metaprl/theories/itt/itt_equal.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-15 15:58:23 -0800 (Tue, 15 Feb 2005)
Revision: 6677
Log message:

      partial proof for all_list_wf
      

Changes  Path
+5611 -4038 metaprl/theories/itt/itt_list2.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-15 16:56:57 -0800 (Tue, 15 Feb 2005)
Revision: 6678
Log message:

      Proved a new induction principle for lists (tail_induction) and proved all_list_wf using it
      

Changes  Path
+8 -0 metaprl/theories/itt/itt_list2.ml
+17366 -18455 metaprl/theories/itt/itt_list2.prla

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-15 18:34:01 -0800 (Tue, 15 Feb 2005)
Revision: 6679
Log message:

      Forgot positivity condition in one rule.
      

Changes  Path
+5 -3 metaprl/theories/itt/itt_omega.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-15 18:56:42 -0800 (Tue, 15 Feb 2005)
Revision: 6680
Log message:

      - BUGS 3.14 was fixed some time ago.
      - As it was stated in that file, once it is fixed, the outer higherC in
        applyAllC is unnecessary - removed it.
      

Changes  Path
+1 -12 metaprl/BUGS
+1 -1 metaprl/tactics/proof/conversionals_boot.ml
+0 -0 metaprl/theories/itt/itt_pairwise2.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-15 19:49:24 -0800 (Tue, 15 Feb 2005)
Revision: 6681
Log message:

      Fixed gcd and beq_rat definitions
      

Changes  Path
+16 -16 metaprl/theories/itt/itt_rat.ml
+1 -0 metaprl/theories/itt/itt_rat.mli
+9815 -8000 metaprl/theories/itt/itt_rat.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-15 20:01:46 -0800 (Tue, 15 Feb 2005)
Revision: 6682
Log message:

      The rules for dependent function, dependent product, and quantifiers needed to
      be better at preserving the name of the bound variable.
      

Changes  Path
+2 -13 metaprl/BUGS
+9 -9 metaprl/theories/itt/itt_dfun.ml
+3 -3 metaprl/theories/itt/itt_dfun.mli
+8 -8 metaprl/theories/itt/itt_dprod.ml
+1 -1 metaprl/theories/itt/itt_functions.prla
+3 -3 metaprl/theories/itt/itt_logic.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-15 20:38:31 -0800 (Tue, 15 Feb 2005)
Revision: 6683
Log message:

      Proved rules in itt_pairwise2
      

Changes  Path
+2 -9 metaprl/theories/itt/itt_pairwise2.ml
Added metaprl/theories/itt/itt_pairwise2.prla
Properties metaprl/theories/itt/itt_pairwise2.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-15 23:53:39 -0800 (Tue, 15 Feb 2005)
Revision: 6684
Log message:

      still on they way to prove "subst_commute"
      

Changes  Path
+56 -1 metaprl/theories/itt/itt_synt_subst.ml
+1908 -550 metaprl/theories/itt/itt_synt_subst.prla
+18 -0 metaprl/theories/itt/itt_synt_var.ml
+463 -281 metaprl/theories/itt/itt_synt_var.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 00:30:03 -0800 (Wed, 16 Feb 2005)
Revision: 6685
Log message:

      Fixed the do-check-all script.
      

Changes  Path
+12 -5 metaprl/support/shell/shell_command.ml
+2 -2 metaprl/support/shell/shell_core.ml
+2 -2 metaprl/util/do-check-all.sh
+2 -2 metaprl/util/status-all.sh

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 01:02:57 -0800 (Wed, 16 Feb 2005)
Revision: 6686
Log message:

      Exception printer was raising an exception, fixed.
      

Changes  Path
+4 -2 metaprl/editor/ml/shell_mp.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 01:18:29 -0800 (Wed, 16 Feb 2005)
Revision: 6687
Log message:

      Proved a few rules.
      

Changes  Path
+3 -3 metaprl/theories/itt/itt_int_ext.ml
+7942 -7599 metaprl/theories/itt/itt_int_ext.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 01:33:45 -0800 (Wed, 16 Feb 2005)
Revision: 6688
Log message:

      Proved /itt_subtype/subtypeReflexivity
      

Changes  Path
+4054 -3613 metaprl/theories/itt/itt_subtype.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 01:46:55 -0800 (Wed, 16 Feb 2005)
Revision: 6689
Log message:

      Finished couple of proofs
      

Changes  Path
+17873 -18911 metaprl/theories/itt/itt_int_arith.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-16 02:11:01 -0800 (Wed, 16 Feb 2005)
Revision: 6690
Log message:

      The proofs in itt_list2 messed up due to the replacement of list{top} with list. Cleaned up and proved a few rules.
      

Changes  Path
+41 -35 metaprl/theories/itt/itt_list2.ml
+4472 -5287 metaprl/theories/itt/itt_list2.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 02:23:37 -0800 (Wed, 16 Feb 2005)
Revision: 6691
Log message:

      Finished a few simple proofs
      

Changes  Path
+3 -3 metaprl/theories/itt/itt_rat.ml
+3732 -3697 metaprl/theories/itt/itt_rat.prla

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-16 10:47:45 -0800 (Wed, 16 Feb 2005)
Revision: 6692
Log message:

      Replaced List.map with List.rev_map (it was causing stack overflow)
      

Changes  Path
+3 -3 metaprl/theories/itt/itt_omega.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-16 15:07:27 -0800 (Wed, 16 Feb 2005)
Revision: 6694
Log message:

      Changed definition of not_fre
      Add a comment
      

Changes  Path
+5 -0 metaprl/theories/itt/itt_list2.ml
+28 -5 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-16 15:34:55 -0800 (Wed, 16 Feb 2005)
Revision: 6695
Log message:

      Changed list{top} back to list upon Aleksey's request.
      

Changes  Path
+59 -59 metaprl/theories/itt/itt_list2.ml
+3060 -2928 metaprl/theories/itt/itt_list2.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-16 18:03:53 -0800 (Wed, 16 Feb 2005)
Revision: 6697
Log message:

      strengthened the subst rules
      

Changes  Path
+4 -0 metaprl/theories/itt/itt_synt_bterm.ml
+15 -20 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-16 18:07:38 -0800 (Wed, 16 Feb 2005)
Revision: 6698
Log message:

      added Vars_of in mli
      

Changes  Path
+1 -0 metaprl/theories/itt/itt_synt_bterm.mli

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-16 19:25:08 -0800 (Wed, 16 Feb 2005)
Revision: 6699
Log message:

      Small fixes of last Xin's commits
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_synt_bterm.ml
+1 -2 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-16 19:38:17 -0800 (Wed, 16 Feb 2005)
Revision: 6700
Log message:

      Make Itt_list2!list an I/O abstraction for list{top}. Note - because of bug
      405, I/O abstractions can not be used on the command line yet.
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_list2.ml
+6 -0 metaprl/theories/itt/itt_list2.mli
+2928 -3060 metaprl/theories/itt/itt_list2.prla

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-16 19:44:03 -0800 (Wed, 16 Feb 2005)
Revision: 6701
Log message:

      Some border cases fixes.
      

Changes  Path
+14 -4 metaprl/theories/itt/itt_omega.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-16 22:52:07 -0800 (Wed, 16 Feb 2005)
Revision: 6702
Log message:

      Fixed the problem with iforms in command-line terms.
      Shell_state was bypassing the iforms and type checking.
      
      NOTE: this also adds type-checking to command line terms
      at line 213 of term_grammar.ml.
      
      Currently, I'm not sure why command-line terms need parse_term_with_vars,
      as opposed to parse_term.  See also bug #407.
      

Changes  Path
+1 -0 metaprl/filter/base/filter_type.ml
+5 -0 metaprl/filter/filter/term_grammar.ml
+6 -6 metaprl/support/shell/shell_state.ml
+0 -0 metaprl/theories/itt/itt_list2.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 00:35:09 -0800 (Thu, 17 Feb 2005)
Revision: 6703
Log message:

      The rules left_id and right_id were too strong and needed extra conditions.
      A few proofs broke; I fixed the ones in itt_synt_var, but a few in
      itt_synt_subst are still broken.
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_list2.prla
+14 -1 metaprl/theories/itt/itt_synt_var.ml
+640 -567 metaprl/theories/itt/itt_synt_var.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 01:31:15 -0800 (Thu, 17 Feb 2005)
Revision: 6704
Log message:

      Adding couple of typing conditions to couple of rewrites (this is a follow-up
      to my previous itt_synt_var commit).
      

Changes  Path
+4 -1 metaprl/theories/itt/itt_synt_subst.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-17 03:05:59 -0800 (Thu, 17 Feb 2005)
Revision: 6707
Log message:

      Trying to prove "subst_commute".
      
      Note: haven't fixed the broken proofs due to the additon of some rewrite conditions in Aleksey's last commit.
      

Changes  Path
+16 -2 metaprl/theories/itt/itt_synt_bterm.ml
+1046 -842 metaprl/theories/itt/itt_synt_bterm.prla
+11 -5 metaprl/theories/itt/itt_synt_subst.ml
+4132 -2150 metaprl/theories/itt/itt_synt_subst.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 03:10:53 -0800 (Thu, 17 Feb 2005)
Revision: 6708
Log message:

      'subst_commute" -> "subst_commutativity"
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_synt_subst.ml
+1 -1 metaprl/theories/itt/itt_synt_subst.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 05:12:07 -0800 (Thu, 17 Feb 2005)
Revision: 6709
Log message:

      - Proved all the theorems in itt_synt_subst, except for the
        subst_add_vars_upto
      
      - Enabled the usage of the ge_intro resource in arithT (does not always work
        right for some reason). Added ge_intro resource annotation for a "n in nat"
        conslusion.
      

Changes  Path
+4 -5 metaprl/theories/itt/itt_int_arith.ml
+2 -0 metaprl/theories/itt/itt_int_arith.mli
+10 -0 metaprl/theories/itt/itt_nat.ml
+1209 -1130 metaprl/theories/itt/itt_nat.prla
+0 -4 metaprl/theories/itt/itt_synt_operator.ml
+792 -929 metaprl/theories/itt/itt_synt_operator.prla
+0 -1 metaprl/theories/itt/itt_synt_subst.ml
+993 -1004 metaprl/theories/itt/itt_synt_subst.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 06:00:05 -0800 (Thu, 17 Feb 2005)
Revision: 6710
Log message:

      Proved a few rules as needed to make itt_nat fully grounded.
      

Changes  Path
+5 -0 metaprl/theories/itt/itt_bool.ml
+8983 -9901 metaprl/theories/itt/itt_bool.prla
+14338 -14245 metaprl/theories/itt/itt_int_arith.prla
+3691 -3571 metaprl/theories/itt/itt_list2.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 06:53:23 -0800 (Thu, 17 Feb 2005)
Revision: 6711
Log message:

      Proved a number of theorems in itt_list2. Had to add extra wf conditions in
      two of them!
      

Changes  Path
+181 -125 metaprl/theories/itt/itt_int_arith.prla
+19 -17 metaprl/theories/itt/itt_list2.ml
+1904 -1702 metaprl/theories/itt/itt_list2.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-17 10:02:03 -0800 (Thu, 17 Feb 2005)
Revision: 6712
Log message:

      Make sure the grammar is prepared before marshaling.  This addresses
      bug #408.
      

Changes  Path
+6 -2 metaprl/filter/base/filter_cache_fun.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-17 14:26:56 -0800 (Thu, 17 Feb 2005)
Revision: 6713
Log message:

      Finally, all theorems are proved now.
      

Changes  Path
+3 -10 metaprl/theories/itt/itt_synt_subst.ml
+928 -1078 metaprl/theories/itt/itt_synt_subst.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-17 15:01:45 -0800 (Thu, 17 Feb 2005)
Revision: 6714
Log message:

      Proved a few theorems. Still missing /itt_list2/all_list_elim - Alexei, can
      you take a look at that one?
      

Changes  Path
+17 -17 metaprl/theories/itt/itt_list2.ml
+948 -963 metaprl/theories/itt/itt_list2.prla

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-17 15:07:49 -0800 (Thu, 17 Feb 2005)
Revision: 6715
Log message:

      Oops!  Sorry, my last commit also reintroduced bug #405.
      This was caused by calling prepare_to_marshal overly early.
      

Changes  Path
+3 -2 metaprl/filter/base/filter_cache_fun.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-17 16:20:52 -0800 (Thu, 17 Feb 2005)
Revision: 6716
Log message:

      rearranged the orders of some rules, and proved some rules.
      

Changes  Path
+12 -12 metaprl/theories/itt/itt_list2.ml
+1921 -1327 metaprl/theories/itt/itt_list2.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-17 17:49:03 -0800 (Thu, 17 Feb 2005)
Revision: 6717
Log message:

      Proved all_list_elim
      

Changes  Path
+14 -4 metaprl/theories/itt/itt_list2.ml
+1519 -1401 metaprl/theories/itt/itt_list2.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-17 18:25:49 -0800 (Thu, 17 Feb 2005)
Revision: 6718
Log message:

      Proved more theorems in Itt_list2. Now as far as I can tell proofs in Itt_synt* depend only on /itt_omega/var_elim2
      

Changes  Path
+3 -0 metaprl/theories/itt/itt_list2.ml
+585 -542 metaprl/theories/itt/itt_list2.prla

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-18 09:31:21 -0800 (Fri, 18 Feb 2005)
Revision: 6719
Log message:

      All proofs needed for omegaT are ground now.
      There is one weird thing though - only (!) one test in itt_int_bench
      shows dependency on itt_ring2
      omegaT does not depends on ring2
      Itt_int_bench depends on supinf which depends on ring2 which
      makes resources from there available but why only one test has dependency?
      

Changes  Path
+6 -0 metaprl/theories/itt/itt_int_arith.mli
+798 -472 metaprl/theories/itt/itt_int_arith.prla
+49 -47 metaprl/theories/itt/itt_omega.ml
+2 -0 metaprl/theories/itt/itt_omega.mli

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-18 09:49:23 -0800 (Fri, 18 Feb 2005)
Revision: 6720
Log message:

      Forgot to commit prla-file itself
      

Changes  Path
Added metaprl/theories/itt/itt_omega.prla
Properties metaprl/theories/itt/itt_omega.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-18 13:57:51 -0800 (Fri, 18 Feb 2005)
Revision: 6721
Log message:

      Now all proofs in itt_synt* are grounded
      

Changes  Path
+2 -2 metaprl/theories/itt/itt_list2.ml
+3259 -3182 metaprl/theories/itt/itt_list2.prla

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-18 15:17:18 -0800 (Fri, 18 Feb 2005)
Revision: 6722
Log message:

      Add the reflection rules
      

Changes  Path
+34 -18 metaprl/theories/itt/itt_reflection_new.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-18 23:56:49 -0800 (Fri, 18 Feb 2005)
Revision: 6723
Log message:

      Updated to match the paper
      

Changes  Path
+2 -9 metaprl/theories/itt/itt_reflection_new.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-19 22:11:21 -0800 (Sat, 19 Feb 2005)
Revision: 6724
Log message:

      It's a reference implementation with core of Omega Test
      used once (was twice) per constraint set.
      "reference" because it's kind of slow (no gain in performance)
      

Changes  Path
+205 -136 metaprl/theories/itt/itt_omega.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-20 00:56:01 -0800 (Sun, 20 Feb 2005)
Revision: 6725
Log message:

      More improvements for constraint that unfolds to
      D1 \/ D2
      if when solving D1-case D1 was not actually used we now skip D2
      altogether.
      It reduced total time on my "long" benchmark from 260 to 130 seconds.
      Time on omega itself is approximately 70 seconds.
      

Changes  Path
+55 -9 metaprl/theories/itt/itt_omega.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-20 17:57:17 -0800 (Sun, 20 Feb 2005)
Revision: 6728
Log message:

      Added fold_map and replace.
      Because of the way lm_map_sig and
      lm_table_util are crafted
      I failed to define fold with polymorphic type of accumulator.
      (map function is not polymorphic either)
      

Changes  Path
+23 -0 metaprl/mllib/debug_tables.ml
+3 -0 metaprl/refiner/reflib/term_eq_table.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-20 18:02:36 -0800 (Sun, 20 Feb 2005)
Revision: 6729
Log message:

      Subtraction and addition of linear forms were inefficient.
      130 seconds dropped to 100
      (time in omega core dropped from 70 to 40)
      One of the most difficult itt_int_bench2/test7 dropped from 42 to 20
      with time in omega core dropped from 40 to 15.
      
      There are still several non-tail recursive calls (List.map etc) that can be
      eliminated because constraint sets are a _sets_
      

Changes  Path
+61 -38 metaprl/theories/itt/itt_omega.ml

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-20 23:42:53 -0800 (Sun, 20 Feb 2005)
Revision: 6730
Log message:

      itt_int_bench3 time drop from 100 to 69 seconds.
      omega core time dropped to 12 seconds, i.e. virtually same perfromance as
      omega in coq.
      

Changes  Path
+2 -2 metaprl/theories/itt/itt_omega.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-21 09:14:48 -0800 (Mon, 21 Feb 2005)
Revision: 6731
Log message:

      Added some documentation on declarations.
      I'm not sure support/doc is the best place to put miscellaneous
      documentation, but it seems as good as any.
      

Changes  Path
+1 -1 metaprl/OMakefile
Properties metaprl/support/doc
Added metaprl/support/doc/OMakefile
Properties metaprl/support/doc/OMakefile
Added metaprl/support/doc/doc_declare.ml
Properties metaprl/support/doc/doc_declare.ml
Added metaprl/support/doc/doc_declare.mli
Properties metaprl/support/doc/doc_declare.mli
Added metaprl/support/doc/misc.tex
Properties metaprl/support/doc/misc.tex

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-21 11:45:15 -0800 (Mon, 21 Feb 2005)
Revision: 6733
Log message:

      Added some determinicity in the choice of next variable to eliminate
      (variable with lowest sum of absolute coefficients in all constraints).
      itt_int_bench3 dropped to 35 seconds (paper benchmark)
      bit itt_int_bench/test6 is still above 100 seconds but it was about 4 seconds
      in 1.19 revision
      

Changes  Path
+27 -10 metaprl/theories/itt/itt_omega.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-21 11:51:43 -0800 (Mon, 21 Feb 2005)
Revision: 6734
Log message:

      Check token types too.
      

Changes  Path
+1 -1 metaprl/filter/filter/filter_parse.ml
+6 -0 metaprl/refiner/refiner/refiner_debug.ml
+11 -4 metaprl/refiner/reflib/term_ty_infer.ml
+2 -0 metaprl/refiner/refsig/term_man_sig.ml
+51 -0 metaprl/refiner/term_ds/term_man_ds.ml
+59 -0 metaprl/refiner/term_gen/term_man_gen.ml
+1 -1 mpcompiler/mmc/arch/x86/mmc_x86_convention.ml
+4 -4 mpcompiler/mmc/core/mmc_core_type_erase.ml
+6 -7 mpcompiler/mmc/core/mmc_core_type_infer.ml
+3 -3 mpcompiler/mmc/extensions/operator/mmc_ext_operator.ml
+1 -1 mpcompiler/mmc/test/mpxterm

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-21 17:15:07 -0800 (Mon, 21 Feb 2005)
Revision: 6737
Log message:

      Add some documentation
      

Changes  Path
+31 -7 metaprl/theories/itt/itt_list2.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-21 17:29:47 -0800 (Mon, 21 Feb 2005)
Revision: 6738
Log message:

      For some reason itt_bintree didn't complile. Fixed.
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_bintree.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-21 18:03:12 -0800 (Mon, 21 Feb 2005)
Revision: 6740
Log message:

      Added a <-- form for productions, which really makes more sense than
      the --> form we are using.
      

Changes  Path
+26 -0 metaprl/filter/filter/filter_parse.ml
+1 -0 mpcompiler/mmc/arch/x86/mmc_x86_asm.ml
+4 -0 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-21 19:31:29 -0800 (Mon, 21 Feb 2005)
Revision: 6741
Log message:

      Different quotations should not be required to use the
      same lexer.  This commit adds the ability to define multiple
      lexers (the grammars can still be shared).
      
      Now, instead of
         lex_token "[0-9]+" --> number[lexeme:n]
      you have to specify the lexer
         declare mmc : Lexer
         ...
         lex_token mmc : "[0-9]+" --> number[lexeme:n]
      
      CAUTION: this commit breaks binary compatibility.  I'm sorry about
      this hassle--the change doesn't really affect those of you who
      don't use the input grammars.  In any case, you should export any
      unsaved work before updating from cvs.
      

Changes  Path
+5 -2 metaprl/filter/base/OMakefile
+6 -6 metaprl/filter/base/filter_cache_fun.ml
+74 -22 metaprl/filter/base/filter_grammar.ml
+8 -2 metaprl/filter/base/filter_grammar.mli
+3 -2 metaprl/filter/base/filter_magic.ml
+2 -2 metaprl/filter/base/filter_summary_type.ml
+14 -14 metaprl/filter/filter/filter_parse.ml
+6 -0 metaprl/support/display/perv.mli
+14 -0 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+14 -14 mpcompiler/mmc/core/mmc_core_ast.mli
+7 -6 mpcompiler/mmc/core/mmc_core_grammar.mli
+9 -9 mpcompiler/mmc/extensions/bool/mmc_ext_bool.mli
+19 -19 mpcompiler/mmc/extensions/int/mmc_ext_int.mli

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-21 19:42:10 -0800 (Mon, 21 Feb 2005)
Revision: 6742
Log message:

      It now checks for pairs like F>3 & F<2, i.e. opposite with empty intersection.
      So certain trivial things are detected much earlier.
      The problem with my recent commits vs itt_int_bench/test6 is gone,
      it's 2 seconds only again.
      Total time on my paper benchmark is also reduced to 25 seconds (from 35).
      Approximately, only 9 seconds are spent meaningfully, the rest is
      spent in wf-subgoals.
      

Changes  Path
+50 -25 metaprl/theories/itt/itt_omega.ml
+1 -0 metaprl/theories/itt/itt_omega.mli

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-21 20:11:34 -0800 (Mon, 21 Feb 2005)
Revision: 6743
Log message:

      Proofs for the paper benchmark.
      

Changes  Path
Added metaprl/theories/itt/itt_int_bench3.prla
Properties metaprl/theories/itt/itt_int_bench3.prla

Changes by: Yegor N. Bryukhov (ybryukhov at gc.cuny.edu)
Date: 2005-02-21 20:13:40 -0800 (Mon, 21 Feb 2005)
Revision: 6744
Log message:

      The paper benchmark is generated here
      

Changes  Path
+2 -0 metaprl/theories/itt/gen_int_bench.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-22 14:17:33 -0800 (Tue, 22 Feb 2005)
Revision: 6746
Log message:

      Added two new iform terms:
      
         1. xsovar[x:v]{'cvars; 'args} is iform translated to a so-var.
         2. A hyp of the form
      
               x: xhypcontext{'cvars; 'args}
      
            gets translated to a hyp context.
      
      In both cases, the 'cvars and 'args should be an xlist.
      
      The x86 assembly grammar is nearly complete.  Starting on the
      tast grammar.
      

Changes  Path
+91 -2 metaprl/filter/base/filter_grammar.ml
+2 -3 metaprl/filter/base/filter_summary.ml
+15 -0 metaprl/refiner/refiner/refiner_debug.ml
+2 -1 metaprl/refiner/reflib/term_ty_infer.ml
+3 -0 metaprl/refiner/refsig/term_op_sig.ml
+23 -0 metaprl/refiner/term_ds/term_op_ds.ml
+22 -1 metaprl/refiner/term_std/term_op_std.ml
+17 -0 metaprl/support/display/perv.mli
+109 -4 mpcompiler/mmc/arch/x86/mmc_x86_asm.ml
+225 -25 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+2 -2 mpcompiler/mmc/arch/x86/mmc_x86_frame.ml
+1 -1 mpcompiler/mmc/core/mmc_core_ast.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-22 19:05:37 -0800 (Tue, 22 Feb 2005)
Revision: 6750
Log message:

      Added contexts, so you can write such things as:
      
         <:tast< fun#std (x: ty, <H>) -> e >>
         <:tast< fun#std <H> -> e >>
      

Changes  Path
+2 -2 metaprl/filter/base/filter_grammar.ml
+6 -1 mpcompiler/mmc/core/mmc_core_ast.mli
+4 -0 mpcompiler/mmc/core/mmc_core_tast.ml
+50 -28 mpcompiler/mmc/core/mmc_core_tast.mli
+0 -4 mpcompiler/mmc/extensions/int/mmc_ext_int.mli
+2 -1 mpcompiler/mmc/test/mmc_grammar.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-22 20:25:41 -0800 (Tue, 22 Feb 2005)
Revision: 6751
Log message:

      Added support for nested quotations.  Here is an example.
      
      interactive foo :
         sequent { <H> >- <:tast< let v : << TyInt >> = 1 in v >> in TyTop }
      

Changes  Path
+109 -62 metaprl/filter/base/filter_grammar.ml
+3 -2 metaprl/filter/base/filter_grammar.mli
+1 -1 metaprl/filter/filter/filter_prog.ml
+153 -135 metaprl/filter/filter/term_grammar.ml
+2 -0 metaprl/refiner/refiner/refine.ml
+6 -0 metaprl/refiner/refiner/refiner_debug.ml
+8 -0 metaprl/refiner/refsig/refine_sig.ml
+4 -0 metaprl/support/display/perv.mli
+15 -0 mpcompiler/mmc/core/mmc_core_tast.ml
+40 -14 mpcompiler/mmc/core/mmc_core_tast.mli
+1 -1 mpcompiler/mmc/test/mmc_grammar.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-23 11:24:00 -0800 (Wed, 23 Feb 2005)
Revision: 6755
Log message:

      Yay, my first codegen rule, codegen_hoist_fun.  It is wrong,
      but that's beside the point.
      

Changes  Path
+4 -0 metaprl/refiner/reflib/refine_exn.ml
+40 -0 mpcompiler/mmc/arch/x86/mmc_x86_asm.ml
+190 -70 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+2 -8 mpcompiler/mmc/arch/x86/mmc_x86_codegen.ml
+22 -0 mpcompiler/mmc/core/mmc_core_tast.ml
+49 -20 mpcompiler/mmc/core/mmc_core_tast.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-23 12:58:38 -0800 (Wed, 23 Feb 2005)
Revision: 6756
Log message:

      Progress for generating code for closures.
      
      We need a better way to parse nested quotations.
      Currently, quotations are matched by the lexer, which
      can only match regular expressions.  One option is to
      hard-code quotation matching into the lexer, which is
      esentially the way camlp4 does it.
      

Changes  Path
+21 -9 metaprl/filter/base/filter_grammar.ml
+18 -16 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+11 -2 mpcompiler/mmc/arch/x86/mmc_x86_codegen.ml
+9 -4 mpcompiler/mmc/core/mmc_core_tast.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-23 20:53:46 -0800 (Wed, 23 Feb 2005)
Revision: 6757
Log message:

      Added nested lexing to handle nested matching pairs.
      The syntax is:
      
         lex_token <lexer> : <left> <right> [--> <token>]
      
      So, a Caml-style nesting comment could be ignored as follows.
      
         lex_token mmc : "[(][*]" "[*][)]"
      
      Quotations are handled this way too.
      
         (*
          * arg1 is the start delimiter, arg2 is the end delimiter.
          * the default quotation is "term".
          *)
         lex_token mmc : "<<" ">>" --> tok_quotation{xquotation[arg1:s, lexeme:s]}
      
      The xquotations are expanded eagerly, at lex time.  They are still
      expanded as iforms, so you can always type them in directly if you want.
      
         iform parse_as_term : foo[q:s] <--> xquotation["term", q:s]
      

Changes  Path
+4 -2 metaprl/filter/base/filter_cache_fun.ml
+163 -58 metaprl/filter/base/filter_grammar.ml
+7 -3 metaprl/filter/base/filter_grammar.mli
+1 -1 metaprl/filter/base/filter_magic.ml
+2 -1 metaprl/filter/base/filter_summary_type.ml
+8 -1 metaprl/filter/base/filter_type.ml
+22 -10 metaprl/filter/filter/filter_parse.ml
+17 -11 metaprl/filter/filter/term_grammar.ml
+2 -9 metaprl/filter/filter/term_grammar.mli
+13 -1 metaprl/refiner/refiner/refiner_debug.ml
+3 -0 metaprl/refiner/refsig/term_op_sig.ml
+19 -0 metaprl/refiner/term_ds/term_op_ds.ml
+19 -0 metaprl/refiner/term_std/term_op_std.ml
+1 -1 metaprl/support/display/perv.mli
+6 -3 metaprl/support/shell/shell_state.ml
+8 -9 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+3 -3 mpcompiler/mmc/arch/x86/mmc_x86_codegen.ml
+6 -6 mpcompiler/mmc/core/mmc_core_tast.mli

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-24 16:15:11 -0800 (Thu, 24 Feb 2005)
Revision: 6758
Log message:

      Added some display forms and documentation.
      Renamed unfold_eq -> unfold_is_eq. Some proofs broke. Xin, could you fix them?
      

Changes  Path
+42 -11 metaprl/theories/itt/itt_synt_var.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-24 22:32:05 -0800 (Thu, 24 Feb 2005)
Revision: 6759
Log message:

      - (Bug 409) Removed an obsolete test for duplicate bindings in redex pattern
        sequents
      
      - Added tacticC of type "(address -> tactic) -> conv" that creates a
        conversion that would just apply the tactic with the given address.
      

Changes  Path
+7 -9 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+1 -0 metaprl/tactics/proof/conversionals_boot.ml
+11 -3 metaprl/tactics/proof/rewrite_boot.ml
+1 -0 metaprl/tactics/proof/tactic_boot.ml
+6 -0 metaprl/tactics/proof/tactic_boot_sig.ml
+1 -5 metaprl/theories/itt/itt_test.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-25 14:52:46 -0800 (Fri, 25 Feb 2005)
Revision: 6760
Log message:

      Started adapting Itt_reflection_example_lambda to new definition.
      Meanwile, renamed arity -> shape, and defined arity as the length of the shape (as iform).
      Fixed the proofs, broken by my last renaming unfold_eq -> unfold_is_eq.
      

Changes  Path
+17 -8 metaprl/theories/itt/itt_reflection_example_lambda.ml
+3 -2 metaprl/theories/itt/itt_reflection_new.ml
+3 -0 metaprl/theories/itt/itt_reflection_new.mli
+7 -7 metaprl/theories/itt/itt_synt_bterm.ml
+2 -0 metaprl/theories/itt/itt_synt_bterm.mli
+3 -3 metaprl/theories/itt/itt_synt_bterm.prla
+20 -17 metaprl/theories/itt/itt_synt_operator.ml
+1 -1 metaprl/theories/itt/itt_synt_operator.mli
+15 -15 metaprl/theories/itt/itt_synt_operator.prla
+5 -5 metaprl/theories/itt/itt_synt_subst.prla
+6 -6 metaprl/theories/itt/itt_synt_var.prla

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2005-02-25 17:42:46 -0800 (Fri, 25 Feb 2005)
Revision: 6761
Log message:

      Some comments and proofs fixes in Itt_synt_var.
      

Changes  Path
+4 -0 metaprl/theories/itt/OMakefile
+1 -0 metaprl/theories/itt/itt_order.ml
+20 -2 metaprl/theories/itt/itt_poly.ml
+1 -0 metaprl/theories/itt/itt_rat.ml
+29 -13 metaprl/theories/itt/itt_synt_var.ml
+1916 -769 metaprl/theories/itt/itt_synt_var.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-25 17:46:17 -0800 (Fri, 25 Feb 2005)
Revision: 6762
Log message:

      Added a display from for iform items; minor fix in display forms for primitive
      rules.
      

Changes  Path
+1 -0 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+13 -4 metaprl/support/display/summary.ml
+1 -1 metaprl/support/display/summary.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-26 10:14:15 -0800 (Sat, 26 Feb 2005)
Revision: 6763
Log message:

      Changed args to be a vector instead of a list.
      This is to match with tuples.
      

Changes  Path
+3 -0 metaprl/filter/base/filter_grammar.ml
+3 -1 metaprl/filter/filter/term_grammar.ml
+2 -2 metaprl/refiner/reflib/term_ty_infer.ml
+20 -8 mpcompiler/mmc/arch/x86/mmc_x86_asm.mli
+54 -7 mpcompiler/mmc/arch/x86/mmc_x86_codegen.ml
+8 -8 mpcompiler/mmc/arch/x86/mmc_x86_frame.ml
+28 -14 mpcompiler/mmc/core/mmc_core_ast.ml
+166 -86 mpcompiler/mmc/core/mmc_core_ast.mli
+48 -41 mpcompiler/mmc/core/mmc_core_closure.ml
+25 -15 mpcompiler/mmc/core/mmc_core_cps.ml
+9 -9 mpcompiler/mmc/core/mmc_core_front.ml
+4 -0 mpcompiler/mmc/core/mmc_core_grammar.ml
+4 -0 mpcompiler/mmc/core/mmc_core_grammar.mli
+23 -22 mpcompiler/mmc/core/mmc_core_inline.ml
+1 -1 mpcompiler/mmc/core/mmc_core_inline.mli
+7 -5 mpcompiler/mmc/core/mmc_core_optimize.ml
+12 -3 mpcompiler/mmc/core/mmc_core_reserve.ml
+15 -9 mpcompiler/mmc/core/mmc_core_tast.ml
+77 -48 mpcompiler/mmc/core/mmc_core_tast.mli
+12 -11 mpcompiler/mmc/core/mmc_core_type_check.ml
+12 -7 mpcompiler/mmc/core/mmc_core_type_erase.ml
+7 -11 mpcompiler/mmc/core/mmc_core_type_infer.ml
+5 -5 mpcompiler/mmc/core/mmc_core_value.ml
+2 -0 mpcompiler/mmc/extensions/array/mmc_ext_array.ml
+25 -0 mpcompiler/mmc/extensions/array/mmc_ext_array.mli
+6 -8 mpcompiler/mmc/extensions/bool/mmc_ext_bool.ml
+2 -2 mpcompiler/mmc/extensions/int/mmc_ext_int.ml
+2 -2 mpcompiler/mmc/extensions/loop/mmc_ext_loop.ml
+1 -0 mpcompiler/mmc/lir/LIR-notes.txt
+0 -1 mpcompiler/mmc/main/mmc_theory.mli
+2 -0 mpcompiler/mmc/opt/direct/core/mmc_opt_direct.ml
+19 -23 mpcompiler/mmc/test/mmc_array_test.ml
+4 -8 mpcompiler/mmc/test/mmc_spill_test.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-02-27 19:36:10 -0800 (Sun, 27 Feb 2005)
Revision: 6771
Log message:

      Added support for closure elimination for recursive functions.
      Also, place all hoisted functions in a big "let rec".
      

Changes  Path
+1 -0 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+31 -0 mpcompiler/mmc/core/mmc_core_hoist.ml
+64 -32 mpcompiler/mmc/core/mmc_core_tast.ml
+72 -25 mpcompiler/mmc/core/mmc_core_tast.mli
+35 -11 mpcompiler/mmc/lir/closure_elim/mmc_lir_closure_elim_core.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-28 15:31:49 -0800 (Mon, 28 Feb 2005)
Revision: 6778
Log message:

      Removed the dash from the logo
      

Changes  Path
Binary metaprl/doc/htmlman/images/mp-logo.gif

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-28 16:54:58 -0800 (Mon, 28 Feb 2005)
Revision: 6779
Log message:

      Added some tactics, changed difinitons in itt_reflection_example_lambda
      

Changes  Path
+1 -1 metaprl/theories/base/base_reflection.ml
+1 -0 metaprl/theories/base/base_reflection.mli
+1 -1 metaprl/theories/itt/itt_reflection_example_lambda.ml
+3 -1 metaprl/theories/itt/itt_reflection_new.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-28 17:58:04 -0800 (Mon, 28 Feb 2005)
Revision: 6780
Log message:

      Minor code clean-up
      

Changes  Path
+1 -1 metaprl/filter/base/filter_magic.ml
+6 -9 metaprl/refiner/reflib/ascii_io.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-28 21:06:27 -0800 (Mon, 28 Feb 2005)
Revision: 6782
Log message:

      Fixed an Ascii IO bug: a corner case when overwriting a manually changed .prla
      was not handled correctly. Also changed the corresponding code so that any
      similar bug we might hit in the future would exhibit itself in a more obvious
      way.
      

Changes  Path
+1 -1 metaprl/filter/base/filter_magic.ml
+26 -21 metaprl/refiner/reflib/ascii_io.ml
+6 -5 metaprl/refiner/reflib/ascii_io.mli
+22 -23 metaprl/refiner/reflib/ascii_io_sig.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-02-28 21:10:06 -0800 (Mon, 28 Feb 2005)
Revision: 6783
Log message:

      This is an interesting one - CVS stripping white space off at the end of the
      line caused the magic value in filter_magic to change...
      

Changes  Path
+1 -1 metaprl/filter/base/filter_magic.ml

Changes by: Alexei Kopylov (kopylov at cs.caltech.edu)
Date: 2005-02-28 22:02:37 -0800 (Mon, 28 Feb 2005)
Revision: 6784
Log message:

      Added some rewrites to reduce resource. Proved some theorems
      

Changes  Path
+1666 -1105 metaprl/theories/itt/itt_reflection_example_lambda.prla
+6 -5 metaprl/theories/itt/itt_reflection_new.ml