Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-01 17:52:07 -0700 (Tue, 01 Jun 1999)
Revision: 2682
Log message:

      Fixed a bug that prevented resulting terms from being displayed in toploop.
      
      Before:
      # <<'x>>;;
      #
      
      Now:
      # <<'x>>;;
      x : term
      #
      

Changes  Path
+1 -1 metaprl/editor/ml/shell_mp.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-01 19:16:00 -0700 (Tue, 01 Jun 1999)
Revision: 2683
Log message:

      Produce more meaningful error messges when parsing terms in toploop.
      
      Before:
      # <<x>>;;
      chars 17-18: Pcaml.Qerror("", 0, _)
      # chars 20-22: Stream.Error("illegal begin of toplevel phrase")
      #
      ...
      # <<x>>;;
      chars 57-58: Pcaml.Qerror("", 0, _)
      # chars 60-62: Stream.Error("illegal begin of toplevel phrase")
      #
      
      Now:
      # <<x>>;;
      chars 17-18: Failure("Shell_p4.mk_opname: no current package")
      # chars 20-22: Stream.Error("illegal begin of toplevel phrase")
      #
      ...
      # <<x>>;;
      chars 57-58: Failure("Package_info.mk_opname: summary not initialized")
      # chars 60-62: Stream.Error("illegal begin of toplevel phrase")
      #
      

Changes  Path
+0 -9 metaprl/BUGS
+6 -1 metaprl/editor/ml/shell_mp.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-01 22:56:08 -0700 (Tue, 01 Jun 1999)
Revision: 2684
Log message:

      1) By default, the values of non-meta string/token/var parameters are now printed in quotes
      
      2) Fixed the dispay forms for summary items. There were several problems there:
      - some display forms (id, prec_rel) were assuming wrong term structure
      - some display forms were broken by the addition of an extra resource_def argument.
      

Changes  Path
+3 -3 metaprl/refiner/reflib/simple_print.ml
+28 -17 metaprl/theories/base/summary.ml
+3 -2 metaprl/theories/base/summary.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-02 02:14:37 -0700 (Wed, 02 Jun 1999)
Revision: 2685
Log message:

      - added a display form for Summary!meta_function. Still, things do not
      always look right - take, for example itt_int theory, intElimination rule
      
      - copied itt_list.cmoz to itt_list.prlb to eliminate
      "rules nilFormation do not match" warning
      

Changes  Path
+0 -7 metaprl/BUGS
+3 -1 metaprl/theories/base/summary.ml
+1 -1 metaprl/theories/base/summary.mli
Binary metaprl/theories/itt/itt_list.prlb

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-02 16:01:30 -0700 (Wed, 02 Jun 1999)
Revision: 2686
Log message:

      Documentation:
      - removed references to slot[i:n], slot[t:t] and slot[v:v], mentioned that
      slot[p:s] should be used for printing parameters
      - removed var:l from the term syntax description, mentioned that :s in parameters
      is optional
      - ran spell-checker on mp-dform and mp-terms
      
      Summary:
      - added display forms for MetaLabeled
      - fixed display form for MetaFunction
      

Changes  Path
+17 -22 metaprl/doc/htmlman/user-guide/mp-dform.html
+7 -7 metaprl/doc/htmlman/user-guide/mp-terms.html
+11 -3 metaprl/theories/base/summary.ml
+2 -1 metaprl/theories/base/summary.mli

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-03 00:00:22 -0700 (Thu, 03 Jun 1999)
Revision: 2687
Log message:

      Here's some documentation I wrote for the base
      tactics/conversions/etc. and for ITT.  I wrote it for myself; I hope
      other people find it useful.
      
      Let me know what you think!
      

Changes  Path
Added metaprl/doc/itt_quickref.txt
Properties metaprl/doc/itt_quickref.txt

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-05 02:22:02 -0700 (Sat, 05 Jun 1999)
Revision: 2688
Log message:

      Fixed minor inaccuracies in doc/it_quickref.txt.
      
      Bugfix in max_level_exp (both ds and std).
      
      Fixed precedence of "fun" constructor:
         (a -> b) -> c
      was displaying as
         a -> b -> c
      

Changes  Path
+5 -4 metaprl/doc/itt_quickref.txt
+1 -1 metaprl/refiner/term_ds/term_man_ds.ml
+1 -1 metaprl/refiner/term_gen/term_man_gen.ml
+1 -1 metaprl/theories/itt/itt_rfun.ml

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-05 03:22:13 -0700 (Sat, 05 Jun 1999)
Revision: 2689
Log message:

      Made the working directory (more easily) configurable.
      

Changes  Path
+9 -2 metaprl/editor/emacs/prl-hack.el

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-05 15:33:26 -0700 (Sat, 05 Jun 1999)
Revision: 2690
Log message:

      Added a workaround for a bug in my version of Emacs.  Shouldn't affect
      anyone else; let me know if it does, and I'll back it out.
      

Changes  Path
+9 -3 metaprl/editor/emacs/prl-hack.el

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-05 23:26:04 -0700 (Sat, 05 Jun 1999)
Revision: 2691
Log message:

      Added a new primitive rule universeCumulativity and corresponding
      tactic cumulativityT.
      

Changes  Path
+4 -0 metaprl/doc/itt_quickref.txt
+19 -0 metaprl/theories/itt/itt_equal.ml
+1 -0 metaprl/theories/itt/itt_equal.mli

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-06 19:56:23 -0700 (Sun, 06 Jun 1999)
Revision: 2692
Log message:

      Now that I (think I) understand "squash", I've made my new cumulativity
      rule a bit more general.
      

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

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-07 20:03:21 -0700 (Mon, 07 Jun 1999)
Revision: 2693
Log message:

      Fixed some comments
      

Changes  Path
+1 -1 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+1 -1 metaprl/refiner/rewrite/rewrite_build_contractum.mli
+1 -1 metaprl/refiner/rewrite/rewrite_compile_contractum.mli
+1 -1 metaprl/refiner/rewrite/rewrite_compile_redex.mli
+1 -1 metaprl/refiner/rewrite/rewrite_debug.mli
+1 -1 metaprl/refiner/rewrite/rewrite_match_redex.mli
+1 -1 metaprl/refiner/rewrite/rewrite_meta.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-08 16:23:41 -0700 (Tue, 08 Jun 1999)
Revision: 2694
Log message:

      Removed unused code
      

Changes  Path
+0 -17 metaprl/refiner/rewrite/rewrite_types.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-08 19:19:59 -0700 (Tue, 08 Jun 1999)
Revision: 2696
Log message:

      Added a comsistent way of coming up with a new name for a variable that needs to be renamed
      (for example, to avoid capturing during substitution).
      
      Please note: the renaming algorithm is likely be changed in the future,
      no part of the system should rely on the particular algorithm.
      

Changes  Path
+8 -0 metaprl/mllib/string_util.ml
+4 -0 metaprl/mllib/string_util.mli
+3 -10 metaprl/refiner/term_ds/term_base_ds.ml
+13 -22 metaprl/refiner/term_std/term_subst_std.ml
+2 -9 metaprl/theories/tactic/var.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-08 20:28:30 -0700 (Tue, 08 Jun 1999)
Revision: 2697
Log message:

      Removed duplicate code
      

Changes  Path
+0 -40 metaprl/refiner/term_ds/term_base_ds.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-08 20:44:27 -0700 (Tue, 08 Jun 1999)
Revision: 2698
Log message:

      compile_so_redex_term can not get a context term as an input (not as a part of a sequent)
      

Changes  Path
+2 -14 metaprl/refiner/rewrite/rewrite_compile_contractum.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-10 19:12:51 -0700 (Thu, 10 Jun 1999)
Revision: 2699
Log message:

      Backed up the previous change. We may be interested in having SO contexts
      outside sequents, but we need to implemnt them correctly.
      

Changes  Path
+14 -2 metaprl/refiner/rewrite/rewrite_compile_contractum.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-10 19:28:03 -0700 (Thu, 10 Jun 1999)
Revision: 2700
Log message:

      Documented some rewriter bugs.
      

Changes  Path
+15 -1 metaprl/BUGS

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-10 20:31:51 -0700 (Thu, 10 Jun 1999)
Revision: 2701
Log message:

      More rewriter bugs.
      

Changes  Path
+7 -1 metaprl/BUGS

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-10 22:31:14 -0700 (Thu, 10 Jun 1999)
Revision: 2702
Log message:

      Fixed level_lt and level_le.  Now the universeEquality rule no longer
      proves << member{univ[i:l]; univ[i:l]} >>, and it does prove
      << member{univ[i|j ':l]; univ[j:l]} >> (it got both of these cases
      wrong before).
      

Changes  Path
+8 -8 metaprl/refiner/term_ds/term_man_ds.ml
+8 -8 metaprl/refiner/term_gen/term_man_gen.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-11 13:49:17 -0700 (Fri, 11 Jun 1999)
Revision: 2703
Log message:

      Fixed the "repeated meta-parameter" rewriter problem.
      However, I have not checked the level expressions code yet.
      

Changes  Path
+3 -3 metaprl/BUGS
+27 -13 metaprl/refiner/rewrite/rewrite_match_redex.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-11 17:22:28 -0700 (Fri, 11 Jun 1999)
Revision: 2704
Log message:

      More problems
      

Changes  Path
+10 -12 metaprl/BUGS

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-11 18:01:46 -0700 (Fri, 11 Jun 1999)
Revision: 2705
Log message:

      Removed unused directory
      

Changes  Path
Deleted metaprl/theories/rewrite/Makefile
Deleted metaprl/theories/rewrite/rw_beta.ml
Deleted metaprl/theories/rewrite/rw_beta.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-12 19:34:07 -0700 (Sat, 12 Jun 1999)
Revision: 2706
Log message:

      Small changes
      

Changes  Path
+0 -1 metaprl/BUGS
+1 -0 metaprl/Makefile
+1 -2 metaprl/refiner/refiner/refine.ml
+1 -1 metaprl/refiner/rewrite/rewrite_match_redex.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-13 08:21:46 -0700 (Sun, 13 Jun 1999)
Revision: 2707
Log message:

      - Documented the behaviour of several functions when variable lists
      have repeated entries.
      In particular: <<x,x.'x>> is understood as <<x,y.'x>> by alpha_equality.
      
      - Made sure that this behaviour of Term_ds and Term_std is consistent
      with the documentation.
      
      - Documented a bug in alpha_equal_match
      

Changes  Path
+9 -0 metaprl/BUGS
+7 -0 metaprl/mllib/list_util.mli
+23 -2 metaprl/refiner/refsig/term_subst_sig.ml
+21 -15 metaprl/refiner/term_ds/term_subst_ds.ml
+9 -4 metaprl/refiner/term_std/term_subst_std.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-13 15:21:30 -0700 (Sun, 13 Jun 1999)
Revision: 2708
Log message:

      - Now rewriter should handle repeated variables in redex more or less correctly
      
      - I changed build_contractum to use String_util.vnewname for renaming variables
      

Changes  Path
+16 -37 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+20 -13 metaprl/refiner/rewrite/rewrite_compile_redex.ml

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-13 18:14:10 -0700 (Sun, 13 Jun 1999)
Revision: 2709
Log message:

      Changed the behavior of the dT and eqcdT tactics on goals with
      conclusions of the form
      << (quot x1, y1: 'A1 // 'E1['x; 'y]) =
         (quot x2, y2: 'A2 // 'E2['x1; 'x2]) in univ[@i:l] >>
      (to use the quotientWeakEquality rule instead of the quotientEquality
      rule).  The old behavior is recovered with altT.
      
      I would be very surprised if this broke any proofs; the original
      tactic created subgoals of the same form as the current goal, and I
      don't think there's any way to prove those subgoals.
      

Changes  Path
+8 -5 metaprl/theories/itt/itt_quotient.ml

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-13 19:19:35 -0700 (Sun, 13 Jun 1999)
Revision: 2710
Log message:

      Added equalityEquality to the eqcd resource, so eqcdT and dT 0 can handle
      << ('a1 = 'b1 in 'T1) = ('a2 = 'b2 in 'T2) in univ[i:l] >>.
      
      Updated documentation.
      

Changes  Path
+12 -4 metaprl/doc/itt_quickref.txt
+3 -0 metaprl/theories/itt/itt_equal.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-13 20:32:18 -0700 (Sun, 13 Jun 1999)
Revision: 2711
Log message:

      cvf_theory is not an MLZFILE and should not be mentioned in Makefile
      

Changes  Path
+0 -3 metaprl/theories/czf/Makefile

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-13 21:03:39 -0700 (Sun, 13 Jun 1999)
Revision: 2712
Log message:

      Fixed the following behavior when using the OCaml toplevel:
      # << univ[i:l] >>;;
      Unbound constructor Refiner.Refiner.TermType.Level
      

Changes  Path
+2 -3 metaprl/refiner/reflib/ml_format.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-13 21:21:47 -0700 (Sun, 13 Jun 1999)
Revision: 2713
Log message:

      - Added a "strict" flag to compile_redex. Currently rewrite.ml just always sets it
      to false, but the support for the flag is there.
      
      The free variable checking in "strict" mode would not always wor correctly when
      matching term that has repeated bound variables. I plan to fix most (hopefully all)
      bugs related to matching terms repeated bound variables in a separate commit.
      
      - Made rewrite_type_sig.mlz a generated file - it is very close to rewrite_types.ml
      and it is annoying to have to change them both every time.
      

Changes  Path
+4 -0 metaprl/refiner/rewrite/Makefile
+4 -3 metaprl/refiner/rewrite/rewrite.ml
+52 -45 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+2 -1 metaprl/refiner/rewrite/rewrite_compile_redex_sig.mlz
+2 -0 metaprl/refiner/rewrite/rewrite_debug.ml
+5 -1 metaprl/refiner/rewrite/rewrite_match_redex.ml
Deleted metaprl/refiner/rewrite/rewrite_type_sig.mlz
+13 -0 metaprl/refiner/rewrite/rewrite_types.ml
+5 -0 metaprl/refiner/rewrite/rewrite_util.ml
+1 -0 metaprl/refiner/rewrite/rewrite_util_sig.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-14 00:13:27 -0700 (Mon, 14 Jun 1999)
Revision: 2714
Log message:

      * Made the initialization more stable by adding a list of modules to open.
      
      * Instead of an initialization command, define a file to #use, ~/.mprc by
        default - this should probably be done by MP itself.
      
      * Some more minor changes and cosmetics.
      

Changes  Path
+38 -23 metaprl/editor/emacs/prl-hack.el

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-14 23:14:36 -0700 (Mon, 14 Jun 1999)
Revision: 2715
Log message:

      I'm going to avoid the ugly hack of translating DEFMACRO's to a
      temporary syntax by adding the macros as soon as they're parsed.
      This means that macros can be used before their definitions and that
      playing games like modifying macros for some source parts wouldn't work,
      so I'm still not sure I'll go with it, but I'm cheking this in just in
      case.
      
      If anyone thinks that such a behavior would be a bad idea, tell me.
      

Changes  Path
+164 -150 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-15 02:37:40 -0700 (Tue, 15 Jun 1999)
Revision: 2716
Log message:

      Finally, this version works with includes.
      
      Also, the ugly hack of temporary syntax trees is not needed, yet the
      processing of macros is sequential so macro redefinitions etc work
      properly.
      
      Other things that might be needed, but I'll consider them only if such
      a need arise are:
      1. Error reporting is probably heavily screwed up because of bogus loc
         fields.  I'll try to solve each problem as it pops.
      2. Making everything work also in interface files,
      3. Adding toplevel macros so a single macro application will be able to
         create several definitions (if this is implemented then INCLUDE can
         be such a macro with an ML function body).
      
      Tomorrow I'll start trying to move CPP stuff to use this instead.
      

Changes  Path
+74 -119 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-15 15:53:39 -0700 (Tue, 15 Jun 1999)
Revision: 2717
Log message:

      Added
        cd `dirname $0`
      so it is possible to run these files from any directory.
      

Changes  Path
+1 -0 metaprl/editor/ml/mp
+1 -0 metaprl/editor/ml/mpopt
+1 -0 metaprl/editor/ml/mptop

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-15 23:34:45 -0700 (Tue, 15 Jun 1999)
Revision: 2718
Log message:

      Added a -I option for INCLUDE statements.
      

Changes  Path
+30 -7 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-16 12:06:59 -0700 (Wed, 16 Jun 1999)
Revision: 2719
Log message:

      Added a local macro construct.
      
      Also Added some documentation on what is provided so far.
      

Changes  Path
+54 -15 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-16 17:20:55 -0700 (Wed, 16 Jun 1999)
Revision: 2720
Log message:

      Added HashTerm and HashBTerm modules to TermHash module in order to be able to
      have hash tables with terms or bterms as keys
      

Changes  Path
+1 -0 metaprl/mllib/weak_memo.ml
+1 -0 metaprl/mllib/weak_memo_sig.ml
+5 -0 metaprl/refiner/refsig/term_hash_sig.ml
Properties metaprl/refiner/rewrite
+18 -0 metaprl/refiner/term_gen/term_hash.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 02:08:44 -0700 (Thu, 17 Jun 1999)
Revision: 2721
Log message:

      Made DEFINED symbols hold expressions so it is possible to use a "-DX=x"
      flag and a "DEFINE X = x" statement.
      
      Also, made the code-walker a seperate module.
      

Changes  Path
+331 -213 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 02:11:00 -0700 (Thu, 17 Jun 1999)
Revision: 2722
Log message:

      Renamed CPPFLAGS to PPFLAGS;
      Added CAMLP4MACRO to be used instead of CPP.
      

Changes  Path
+1 -1 metaprl/mk/preface
+2 -0 metaprl/mk/rules

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 02:18:19 -0700 (Thu, 17 Jun 1999)
Revision: 2723
Log message:

      marshal_shared.ml uses macro.ml now.
      

Changes  Path
+1 -1 metaprl/mllib/Makefile
+2 -2 metaprl/mllib/marshal_shared.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 02:22:52 -0700 (Thu, 17 Jun 1999)
Revision: 2724
Log message:

      Forgot to commit a stupid bug...
      (Sorry for all these seperate updates)
      

Changes  Path
+1 -1 metaprl/util/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-17 15:39:51 -0700 (Thu, 17 Jun 1999)
Revision: 2725
Log message:

      Added: reduceEta is too strong
      

Changes  Path
+2 -0 metaprl/BUGS

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 17:45:38 -0700 (Thu, 17 Jun 1999)
Revision: 2726
Log message:

      * Fixed some more bugs in macro.ml.
      
      * Added refine_error.mlh which is the ml equivalent of refine_error.h
        (there must be some better suffix for these, any ideas?)
      
      * Modified refine.ml so it uses macro.ml.
      

Changes  Path
+1 -1 metaprl/refiner/refiner/Makefile
+182 -182 metaprl/refiner/refiner/refine.ml
Added metaprl/refiner/refsig/refine_error.mlh
Properties metaprl/refiner/refsig/refine_error.mlh
+49 -19 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 18:16:11 -0700 (Thu, 17 Jun 1999)
Revision: 2727
Log message:

      I happen to come across an erroneous "#1/bin/csh"...
      

Changes  Path
+1 -1 metaprl/editor/ml/mpserver

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 18:22:15 -0700 (Thu, 17 Jun 1999)
Revision: 2728
Log message:

      Forgot to commit this also.
      

Changes  Path
+3 -3 metaprl/mllib/marshal_buf.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-17 19:12:31 -0700 (Thu, 17 Jun 1999)
Revision: 2729
Log message:

      There is no need to use String_util.concat instead of String.concat
      

Changes  Path
+1 -1 metaprl/mllib/mp_id.ml
+0 -9 metaprl/mllib/string_util.ml
+0 -4 metaprl/mllib/string_util.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-17 21:20:10 -0700 (Thu, 17 Jun 1999)
Revision: 2730
Log message:

      Used type system to enforce parameter hashing
      

Changes  Path
+5 -2 metaprl/refiner/refsig/term_hash_sig.ml
+3 -0 metaprl/refiner/term_gen/term_hash.ml
+2 -2 metaprl/refiner/term_gen/term_header_constr.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-17 21:25:57 -0700 (Thu, 17 Jun 1999)
Revision: 2731
Log message:

      Yet another commit before another major change.
      

Changes  Path
+2 -3 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-17 21:51:42 -0700 (Thu, 17 Jun 1999)
Revision: 2732
Log message:

      Added support for ASCII-based term IO. I tested the code a lot and it seems working,
      but it is not integrated into the system yet. And simple_name_* functions need to be
      improved if we want ASCII theory files to be at least sligtly readable.
      

Changes  Path
+49 -0 metaprl/mllib/string_util.ml
+7 -0 metaprl/mllib/string_util.mli
+4 -0 metaprl/refiner/refbase/opname.ml
+1 -0 metaprl/refiner/refbase/opname.mli
+2 -0 metaprl/refiner/reflib/Files
+2 -1 metaprl/refiner/reflib/Makefile
Added metaprl/refiner/reflib/ascii_io.ml
Properties metaprl/refiner/reflib/ascii_io.ml
Added metaprl/refiner/reflib/ascii_io.mli
Properties metaprl/refiner/reflib/ascii_io.mli
Added metaprl/refiner/reflib/ascii_io_sig.ml
Properties metaprl/refiner/reflib/ascii_io_sig.ml
+1 -0 metaprl/refiner/refsig/term_hash_sig.ml
+16 -0 metaprl/refiner/term_gen/term_hash.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-18 05:21:43 -0700 (Fri, 18 Jun 1999)
Revision: 2733
Log message:

      Whew...  I hope that this one is the last major rewrite for this...
      

Changes  Path
+252 -262 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-19 17:06:36 -0700 (Sat, 19 Jun 1999)
Revision: 2734
Log message:

      Fixed alpha_equal_match
      

Changes  Path
+11 -0 metaprl/mllib/list_util.ml
+6 -0 metaprl/mllib/list_util.mli
+19 -17 metaprl/refiner/term_ds/term_subst_ds.ml
+22 -20 metaprl/refiner/term_std/term_subst_std.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-20 15:07:53 -0700 (Sun, 20 Jun 1999)
Revision: 2735
Log message:

      Removed some really old filter test files.
      

Changes  Path
+0 -7 metaprl/filter/Makefile
Deleted metaprl/filter/term_quote.ml
Deleted metaprl/filter/term_quote.mli
Deleted metaprl/filter/test.ml
Deleted metaprl/filter/test.mli
Deleted metaprl/filter/test_filter.ml
Deleted metaprl/filter/test_filter.mli
Deleted metaprl/filter/test_gram.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-20 17:41:38 -0700 (Sun, 20 Jun 1999)
Revision: 2736
Log message:

      In "strict" mode rewriter now should correctly restrict free variables
      in sequent contexts.
      
      I postponed testing of this code until "strig" flag would be fully implemented.
      

Changes  Path
+2 -0 metaprl/BUGS
+2 -2 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+19 -7 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+3 -0 metaprl/refiner/rewrite/rewrite_debug.ml
+24 -2 metaprl/refiner/rewrite/rewrite_match_redex.ml
+1 -0 metaprl/refiner/rewrite/rewrite_types.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-21 01:48:24 -0700 (Mon, 21 Jun 1999)
Revision: 2737
Log message:

      Now the arguments of SO variables are fully compiled and matched.
      
      As a result, the nested SO variables in a redex are now handled correctly.
      
      This also allowed to replace alpha_equal_match with a fuction alpha_equal_fun
      that (IMHO) is easier to understand and I have more confidence that I've got
      it right than I had with alpha_equal_match
      

Changes  Path
+9 -6 metaprl/refiner/refsig/term_subst_sig.ml
+0 -7 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+31 -35 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+6 -8 metaprl/refiner/rewrite/rewrite_debug.ml
+30 -28 metaprl/refiner/rewrite/rewrite_match_redex.ml
+2 -2 metaprl/refiner/rewrite/rewrite_types.ml
+21 -32 metaprl/refiner/term_ds/term_subst_ds.ml
+18 -33 metaprl/refiner/term_std/term_subst_std.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-21 07:19:13 -0700 (Mon, 21 Jun 1999)
Revision: 2738
Log message:

      More changes.
      (more to come.)
      

Changes  Path
+118 -116 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-22 08:30:58 -0700 (Tue, 22 Jun 1999)
Revision: 2739
Log message:

      Added Alexei Kopylov's implementation of the collection type.
      

Changes  Path
+1 -0 metaprl/theories/itt/Makefile
Added metaprl/theories/itt/collection.ml
Properties metaprl/theories/itt/collection.ml
Added metaprl/theories/itt/collection.mli
Properties metaprl/theories/itt/collection.mli
Added metaprl/theories/itt/collection.prlb
Properties metaprl/theories/itt/collection.prlb

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-22 13:32:03 -0700 (Tue, 22 Jun 1999)
Revision: 2740
Log message:

      Added lots of stuff to macro.ml, so it handles many more syntax types and
      also mli files.
      
      An improvised update for refiner_verb_and_simp.txt, it should either be
      extended or deleted.
      

Changes  Path
+11 -12 metaprl/doc/refiner_verb_and_simp.txt
+381 -94 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-22 13:33:49 -0700 (Tue, 22 Jun 1999)
Revision: 2741
Log message:

      Using macro.ml for this directory works.
      

Changes  Path
+1 -1 metaprl/refiner/term_std/Makefile
+27 -27 metaprl/refiner/term_std/term_base_std.ml
+4 -4 metaprl/refiner/term_std/term_eval_std.ml
+40 -40 metaprl/refiner/term_std/term_op_std.ml
+71 -44 metaprl/refiner/term_std/term_subst_std.ml

Changes by: ( at unknown.email)
Date: 1999-06-22 13:33:49 -0700 (Tue, 22 Jun 1999)
Revision: 2742
Log message:

      This commit was manufactured by cvs2svn to create tag
      'meta-prl-0_5_3'.

Changes  Path
Copied metaprl-tags/meta-prl-0_5_3

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 1999-06-22 21:50:29 -0700 (Tue, 22 Jun 1999)
Revision: 2743
Log message:

      This is a major release; I bumped the release number to 0.6.
      WARNING: There are major changes here, and there may be problems
         with this version that prevent you from using your old proof.
         Save your work before using this version.
      NOTE: If you decide to try this out, and you find problems,
         please(!) send me email so I can fix it.
      
      Changes:
         1. The proof structure is totally changed, so that the proof
            editor edits the raw proof extracts.  This means that you
            can view the actions of the refiner down to the primitive
            rule applications.  In the proof editor, you can use
            "down 0" (or "cd "0") to descend into the proof of a rule box.
            Primitive proofs are called "extracts", and are labeled with
            brackets (like [extract]).  To expand the extract, use the command
            "unfold ()".  You should be able to get all the way down to
            the primitive rule/rewrite applications.
      
            This also means that the format of the proof files (the .prlb
            files) has changed.  The old proof files are still valid,
            but this is a hack and will be deprecated in the next
            few months.  I haven't yet added Alexey's ASCII proof
            files, but that will come with the next release.
      
            As usual, the "undo ()" command undoes the last proof step,
            including "unfold ()".  The "nop ()" command, reset the undo
            stack.  I also added a "redo ()" command that undoes the
            last undo.
      
            There is a simple rule-box proof cache for collecting proofs
            as you edit them.  If cached proofs are available, you will
            see them in brackets (like [* # * *]) on the status line.
            I haven't yet:( added the commands to use cached proofs.
      
         2. Refiner changes.  I added two new features: the "cutT <term>"
            tactic cuts in a new assumption.  Also, you can apply
            rewrites directly on assumptions, with the "rwc" and
            "rwch" operations, that take a clause argument.  Basically,
            this means that instead of folding the goal, you can unfold
            the assumption.  I believe this is sound; let me know if
            you think otherwise!
      
         3. Resource changes.  I added resource automation, built on
            the basic resource parsing Alexey added.  Ratherthan writing
            resource code for every rule, you can annotate most rules
            to generate the resource code directly.  You can see lots of
            examples in the Itt theory.  Basically, there are three useful
            resources annotations:
               intro_resource []: adds the rule as an introduction in dT
               intro_resource [SelectOption i]: adds to selT i dT
               elim_resource []: adds as an elimination rule to dT.
                  This normally tries to thin the hyp that was eliminated.
               elim_resource [ThinOption]: don't thin the hyp
      
            Rules should be annotated with labels on their clauses,
            like [wf], [main], [assertion], etc.  This means that in
            most tactic aplcations, you no longer need to have the
            thenLT [addHiddenLabel "main"; ...] part.
      
            N.B.  This is the most likey parts of this release to
            cause problems, because I deleted most old resource code.
      
            Also, you can still write standard resource code, but there
            is no longer a d_resource--it has been broken into two parts:
            the intro_resource for application to goals, and elim_resource
            for application to hyps.
      
         4. The proof editor is multi-threaded, so you can work on multiple
            proofs simultaneously.  In the normal Emacs editor, this is
            no help for you.  But there is a new Java editor with the
            standard point-and-click interface, and it views the proof
            in HTML, with multiple windows etc.  The beautiful thing is
            that you can use display forms to add commands to edit windows.
            The sad thing is that I built it on NT, Java 1.2 is required,
            and I haven't tried the blackdown.org Java release on Linux.
            This editor is pending some bug fixes from Sun to get the
            fonts right (they call this a standard release?).
      
            In any case, here are the direct implications.  The display
            forms have an "html" mode.  The display form formatting in
            the module Rformat has been completely redone, but display
            _should_ be the same as it was before.
      
            It is likely that I will add an HTML dump, so we can send
            uneditable proofs around by email or on the web.  Check out
            the file theories/base/summary.ml to see some example HTML
            display forms.
      
            The other issue: your MetaPRL process starts a web server on
            YOUR local machine using YOUR process id on the "next" available
            TCP port, and it serves files only from the search path that you pass
            MetaPRL.  I realize that this has security implications.  This
            is necessary to get browser access to the working MetaPRL proof.
            Is this crazy?  Let me know your beliefs, religious or
            otherwise.
      
         5. There are numerous minor changes.  I redid parts of the WeakMemo,
            Term_header_constr, and TermHash.  The theories/tactic directory
            has been split into tactic/boot (which is not compiled by MetaPRL),
            and theories/tactic (which is).
      
      Jason
      

Changes  Path
+1 -1 metaprl/Makefile
Deleted metaprl/editor/java/ActiveApplet.java
Deleted metaprl/editor/java/ActiveApplication.java
Deleted metaprl/editor/java/BoundTerm.java
Deleted metaprl/editor/java/Closure.java
Deleted metaprl/editor/java/DebugFlags.java
Deleted metaprl/editor/java/DisplayDynamic.java
Deleted metaprl/editor/java/DisplayEngine.java
Deleted metaprl/editor/java/DisplayTerm.java
Deleted metaprl/editor/java/Eval.java
Deleted metaprl/editor/java/EvalError.java
Deleted metaprl/editor/java/FontBase.java
Deleted metaprl/editor/java/FreeVar.java
Deleted metaprl/editor/java/GateSequence.java
Deleted metaprl/editor/java/ImageView.java
Added metaprl/editor/java/InText.java
Properties metaprl/editor/java/InText.java
Deleted metaprl/editor/java/IntStack.java
Deleted metaprl/editor/java/LevelExp.java
Deleted metaprl/editor/java/LevelVar.java
Deleted metaprl/editor/java/Lexer.java
Deleted metaprl/editor/java/LispExpression.java
Deleted metaprl/editor/java/LispParser.java
Deleted metaprl/editor/java/LispSExpression.java
Deleted metaprl/editor/java/LispSoApply.java
Deleted metaprl/editor/java/LispVar.java
Deleted metaprl/editor/java/Makefile
Deleted metaprl/editor/java/MatchError.java
Deleted metaprl/editor/java/Matching.java
Added metaprl/editor/java/ModeLine.java
Properties metaprl/editor/java/ModeLine.java
Deleted metaprl/editor/java/NetscapeApplet.java
Binary metaprl/editor/java/Nuprl.dsp
Binary metaprl/editor/java/Nuprl.dsw
Deleted metaprl/editor/java/Nuprl.java
Added metaprl/editor/java/Nuprl.man
Properties metaprl/editor/java/Nuprl.man
Binary metaprl/editor/java/Nuprl.opt
Binary metaprl/editor/java/Nuprl.plg
Added metaprl/editor/java/NuprlArgumentToken.java
Properties metaprl/editor/java/NuprlArgumentToken.java
Added metaprl/editor/java/NuprlAuthorization.java
Properties metaprl/editor/java/NuprlAuthorization.java
Added metaprl/editor/java/NuprlBus.java
Properties metaprl/editor/java/NuprlBus.java
Added metaprl/editor/java/NuprlBusClient.java
Properties metaprl/editor/java/NuprlBusClient.java
Added metaprl/editor/java/NuprlBusEndpoint.java
Properties metaprl/editor/java/NuprlBusEndpoint.java
Added metaprl/editor/java/NuprlBusMessage.java
Properties metaprl/editor/java/NuprlBusMessage.java
Added metaprl/editor/java/NuprlBusPort.java
Properties metaprl/editor/java/NuprlBusPort.java
Added metaprl/editor/java/NuprlClient.java
Properties metaprl/editor/java/NuprlClient.java
Added metaprl/editor/java/NuprlCommand.java
Properties metaprl/editor/java/NuprlCommand.java
Added metaprl/editor/java/NuprlCommandToken.java
Properties metaprl/editor/java/NuprlCommandToken.java
Added metaprl/editor/java/NuprlConstants.java
Properties metaprl/editor/java/NuprlConstants.java
Added metaprl/editor/java/NuprlContext.java
Properties metaprl/editor/java/NuprlContext.java
Added metaprl/editor/java/NuprlControl.java
Properties metaprl/editor/java/NuprlControl.java
Added metaprl/editor/java/NuprlControlToken.java
Properties metaprl/editor/java/NuprlControlToken.java
Added metaprl/editor/java/NuprlDataToken.java
Properties metaprl/editor/java/NuprlDataToken.java
Added metaprl/editor/java/NuprlDebug.java
Properties metaprl/editor/java/NuprlDebug.java
Added metaprl/editor/java/NuprlEscapedToken.java
Properties metaprl/editor/java/NuprlEscapedToken.java
Added metaprl/editor/java/NuprlException.java
Properties metaprl/editor/java/NuprlException.java
Added metaprl/editor/java/NuprlFrame.java
Properties metaprl/editor/java/NuprlFrame.java
Added metaprl/editor/java/NuprlHost.java
Properties metaprl/editor/java/NuprlHost.java
Added metaprl/editor/java/NuprlHyperlinkToken.java
Properties metaprl/editor/java/NuprlHyperlinkToken.java
Binary metaprl/editor/java/NuprlIcon.dsp
Deleted metaprl/editor/java/NuprlIcon.java
Binary metaprl/editor/java/NuprlIcon.plg
Added metaprl/editor/java/NuprlInternalFrame.java
Properties metaprl/editor/java/NuprlInternalFrame.java
Added metaprl/editor/java/NuprlLogin.java
Properties metaprl/editor/java/NuprlLogin.java
Added metaprl/editor/java/NuprlManager.java
Properties metaprl/editor/java/NuprlManager.java
Added metaprl/editor/java/NuprlMenu.java
Properties metaprl/editor/java/NuprlMenu.java
Added metaprl/editor/java/NuprlOptionBlockToken.java
Properties metaprl/editor/java/NuprlOptionBlockToken.java
Added metaprl/editor/java/NuprlOptionRequestToken.java
Properties metaprl/editor/java/NuprlOptionRequestToken.java
Added metaprl/editor/java/NuprlOptionResponseToken.java
Properties metaprl/editor/java/NuprlOptionResponseToken.java
Added metaprl/editor/java/NuprlOptionSBToken.java
Properties metaprl/editor/java/NuprlOptionSBToken.java
Added metaprl/editor/java/NuprlOptionToken.java
Properties metaprl/editor/java/NuprlOptionToken.java
Added metaprl/editor/java/NuprlPrlToken.java
Properties metaprl/editor/java/NuprlPrlToken.java
Added metaprl/editor/java/NuprlProof.java
Properties metaprl/editor/java/NuprlProof.java
Added metaprl/editor/java/NuprlSyncToken.java
Properties metaprl/editor/java/NuprlSyncToken.java
Binary metaprl/editor/java/NuprlTerm.dsp
Deleted metaprl/editor/java/NuprlTerm.java
Binary metaprl/editor/java/NuprlTerm.plg
Added metaprl/editor/java/NuprlText.java
Properties metaprl/editor/java/NuprlText.java
Added metaprl/editor/java/NuprlText.java.new
Properties metaprl/editor/java/NuprlText.java.new
Added metaprl/editor/java/NuprlToken.java
Properties metaprl/editor/java/NuprlToken.java
Added metaprl/editor/java/NuprlTokenInputStream.java
Properties metaprl/editor/java/NuprlTokenInputStream.java
Added metaprl/editor/java/NuprlURLToken.java
Properties metaprl/editor/java/NuprlURLToken.java
Deleted metaprl/editor/java/Operator.java
Deleted metaprl/editor/java/Opname.java
Added metaprl/editor/java/OutText.java
Properties metaprl/editor/java/OutText.java
Deleted metaprl/editor/java/Param.java
Deleted metaprl/editor/java/ParamLevelExp.java
Deleted metaprl/editor/java/ParamMDiff.java
Deleted metaprl/editor/java/ParamMEqual.java
Deleted metaprl/editor/java/ParamMLessThan.java
Deleted metaprl/editor/java/ParamMLevel.java
Deleted metaprl/editor/java/ParamMNotEqual.java
Deleted metaprl/editor/java/ParamMNumber.java
Deleted metaprl/editor/java/ParamMPair.java
Deleted metaprl/editor/java/ParamMProduct.java
Deleted metaprl/editor/java/ParamMQuotient.java
Deleted metaprl/editor/java/ParamMRem.java
Deleted metaprl/editor/java/ParamMString.java
Deleted metaprl/editor/java/ParamMSum.java
Deleted metaprl/editor/java/ParamMToken.java
Deleted metaprl/editor/java/ParamMVar.java
Deleted metaprl/editor/java/ParamMatchError.java
Deleted metaprl/editor/java/ParamMeta.java
Deleted metaprl/editor/java/ParamNumber.java
Deleted metaprl/editor/java/ParamString.java
Deleted metaprl/editor/java/ParamToken.java
Deleted metaprl/editor/java/ParamVar.java
Added metaprl/editor/java/PromptPasswordRecognizer.java
Properties metaprl/editor/java/PromptPasswordRecognizer.java
Added metaprl/editor/java/PromptRecognizer.java
Properties metaprl/editor/java/PromptRecognizer.java
Added metaprl/editor/java/PromptUserRecognizer.java
Properties metaprl/editor/java/PromptUserRecognizer.java
Deleted metaprl/editor/java/QuickSort.java
Deleted metaprl/editor/java/Rewrite.java
Deleted metaprl/editor/java/Semaphore.java
Deleted metaprl/editor/java/SmallScrollGroup.java
Deleted metaprl/editor/java/Sort.java
Added metaprl/editor/java/StringBooleanFunction.java
Properties metaprl/editor/java/StringBooleanFunction.java
Added metaprl/editor/java/StringIntFunction.java
Properties metaprl/editor/java/StringIntFunction.java
Added metaprl/editor/java/StringTokenizer.java
Properties metaprl/editor/java/StringTokenizer.java
Deleted metaprl/editor/java/Subst.java
Deleted metaprl/editor/java/SubstParam.java
Deleted metaprl/editor/java/SubstSimul.java
Deleted metaprl/editor/java/SubstSingle.java
Added metaprl/editor/java/Target.java
Properties metaprl/editor/java/Target.java
Deleted metaprl/editor/java/Term.java
Deleted metaprl/editor/java/TermBreak.java
Deleted metaprl/editor/java/TermDisplay.java
Deleted metaprl/editor/java/TermFont.java
Deleted metaprl/editor/java/TermLexer.java
Deleted metaprl/editor/java/TermNuprl.java
Deleted metaprl/editor/java/TermParser.java
Deleted metaprl/editor/java/TermPop.java
Deleted metaprl/editor/java/TermPush.java
Deleted metaprl/editor/java/TermSoApply.java
Deleted metaprl/editor/java/TermSoVar.java
Deleted metaprl/editor/java/TermString.java
Deleted metaprl/editor/java/TermVar.java
Deleted metaprl/editor/java/TermView.java
Deleted metaprl/editor/java/TermZone.java
Deleted metaprl/editor/java/TextBuffer.java
Deleted metaprl/editor/java/TextViewBuffer.java
Deleted metaprl/editor/java/Token.java
Added metaprl/editor/java/TtyArea.java
Properties metaprl/editor/java/TtyArea.java
Deleted metaprl/editor/java/controller.html
Deleted metaprl/editor/java/frameset.html
Binary metaprl/editor/java/images/back.gif
Binary metaprl/editor/java/images/back_gray.gif
Binary metaprl/editor/java/images/back_press.gif
Binary metaprl/editor/java/images/background.gif
Binary metaprl/editor/java/images/background41.gif
Binary metaprl/editor/java/images/background_dark.gif
Binary metaprl/editor/java/images/forward.gif
Binary metaprl/editor/java/images/forward_gray.gif
Binary metaprl/editor/java/images/forward_press.gif
Binary metaprl/editor/java/images/gate_1.jpg
Binary metaprl/editor/java/images/gate_2.jpg
Binary metaprl/editor/java/images/gate_3.jpg
Binary metaprl/editor/java/images/gate_4.jpg
Binary metaprl/editor/java/images/gate_5.jpg
Binary metaprl/editor/java/images/gate_6.jpg
Binary metaprl/editor/java/images/gate_7.jpg
Binary metaprl/editor/java/images/gate_8.jpg
Binary metaprl/editor/java/images/gate_9.jpg
Binary metaprl/editor/java/images/home.gif
Binary metaprl/editor/java/images/home_gray.gif
Binary metaprl/editor/java/images/home_press.gif
Added metaprl/editor/java/images/image1.gif
Properties metaprl/editor/java/images/image1.gif
Binary metaprl/editor/java/images/info.gif
Binary metaprl/editor/java/images/key.gif
Binary metaprl/editor/java/images/mkdir.gif
Binary metaprl/editor/java/images/mkdir_gray.gif
Binary metaprl/editor/java/images/mkdir_press.gif
Binary metaprl/editor/java/images/turn_close.gif
Binary metaprl/editor/java/images/turn_open.gif
Binary metaprl/editor/java/images/up.gif
Binary metaprl/editor/java/images/up_gray.gif
Binary metaprl/editor/java/images/up_press.gif
Added metaprl/editor/java/lucidaSansUnicode.html
Properties metaprl/editor/java/lucidaSansUnicode.html
Deleted metaprl/editor/java/raw.html
Deleted metaprl/editor/java/resize.js
Deleted metaprl/editor/java/styles.html
Deleted metaprl/editor/java/test.html
Properties metaprl/editor/ml
+34 -33 metaprl/editor/ml/Makefile
Added metaprl/editor/ml/display_term.ml
Properties metaprl/editor/ml/display_term.ml
Added metaprl/editor/ml/display_term.mli
Properties metaprl/editor/ml/display_term.mli
Deleted metaprl/editor/ml/io_proof_type.mlz
+79 -88 metaprl/editor/ml/library_eval.ml
+66 -60 metaprl/editor/ml/mp.ml
+2 -4 metaprl/editor/ml/mp.mli
+3 -2 metaprl/editor/ml/mp_top.ml
Added metaprl/editor/ml/mux_channel.ml
Properties metaprl/editor/ml/mux_channel.ml
Added metaprl/editor/ml/mux_channel.mli
Properties metaprl/editor/ml/mux_channel.mli
+10 -10 metaprl/editor/ml/package_df.ml
Added metaprl/editor/ml/package_edit.ml
Properties metaprl/editor/ml/package_edit.ml
Added metaprl/editor/ml/package_edit.mli
Properties metaprl/editor/ml/package_edit.mli
+452 -356 metaprl/editor/ml/package_info.ml
+8 -13 metaprl/editor/ml/package_info.mli
Added metaprl/editor/ml/package_sig.mlz
Properties metaprl/editor/ml/package_sig.mlz
Deleted metaprl/editor/ml/package_type.mlz
Deleted metaprl/editor/ml/proof.ml
Deleted metaprl/editor/ml/proof.mli
+318 -494 metaprl/editor/ml/proof_edit.ml
+60 -32 metaprl/editor/ml/proof_edit.mli
Deleted metaprl/editor/ml/proof_type.mlz
Added metaprl/editor/ml/recursive_lock.ml
Properties metaprl/editor/ml/recursive_lock.ml
Added metaprl/editor/ml/recursive_lock.mli
Properties metaprl/editor/ml/recursive_lock.mli
+725 -503 metaprl/editor/ml/shell.ml
+7 -96 metaprl/editor/ml/shell.mli
Added metaprl/editor/ml/shell_http.ml
Properties metaprl/editor/ml/shell_http.ml
Added metaprl/editor/ml/shell_http.mli
Properties metaprl/editor/ml/shell_http.mli
+121 -411 metaprl/editor/ml/shell_mp.ml
+6 -6 metaprl/editor/ml/shell_mp.mli
Deleted metaprl/editor/ml/shell_null.ml
Deleted metaprl/editor/ml/shell_null.mli
+61 -305 metaprl/editor/ml/shell_p4.ml
+7 -11 metaprl/editor/ml/shell_p4.mli
Added metaprl/editor/ml/shell_p4_sig.mlz
Properties metaprl/editor/ml/shell_p4_sig.mlz
Deleted metaprl/editor/ml/shell_p4_type.mlz
Added metaprl/editor/ml/shell_package.ml
Properties metaprl/editor/ml/shell_package.ml
Added metaprl/editor/ml/shell_package.mli
Properties metaprl/editor/ml/shell_package.mli
+81 -96 metaprl/editor/ml/shell_rewrite.ml
+13 -8 metaprl/editor/ml/shell_rewrite.mli
Added metaprl/editor/ml/shell_root.ml
Properties metaprl/editor/ml/shell_root.ml
Added metaprl/editor/ml/shell_root.mli
Properties metaprl/editor/ml/shell_root.mli
+73 -93 metaprl/editor/ml/shell_rule.ml
+13 -8 metaprl/editor/ml/shell_rule.mli
Added metaprl/editor/ml/shell_sig.mlz
Properties metaprl/editor/ml/shell_sig.mlz
Added metaprl/editor/ml/shell_state.ml
Properties metaprl/editor/ml/shell_state.ml
Added metaprl/editor/ml/shell_state.mli
Properties metaprl/editor/ml/shell_state.mli
Deleted metaprl/editor/ml/shell_type.mlz
+2 -39 metaprl/editor/ml/test.ml
+1 -4 metaprl/editor/ml/test.mli
+3 -4 metaprl/ensemble/thread_refiner.mli
+31 -20 metaprl/ensemble/thread_refiner_null.ml
+4 -4 metaprl/ensemble/thread_refiner_null.mli
+2 -4 metaprl/ensemble/thread_refiner_null_mod.ml
+28 -28 metaprl/ensemble/thread_refiner_sig.mlz
+2 -0 metaprl/filter/Makefile
+41 -27 metaprl/filter/filter_bin.ml
+255 -275 metaprl/filter/filter_cache.ml
+18 -12 metaprl/filter/filter_cache.mli
+32 -25 metaprl/filter/filter_cache_fun.ml
+5 -5 metaprl/filter/filter_cache_fun.mli
+4 -5 metaprl/filter/filter_exn.ml
+13 -10 metaprl/filter/filter_main.ml
+1914 -1872 metaprl/filter/filter_ocaml.ml
+67 -52 metaprl/filter/filter_ocaml.mli
+348 -247 metaprl/filter/filter_parse.ml
+355 -110 metaprl/filter/filter_prog.ml
+14 -9 metaprl/filter/filter_prog.mli
+1299 -1285 metaprl/filter/filter_summary.ml
+105 -102 metaprl/filter/filter_summary.mli
+11 -10 metaprl/filter/filter_summary_io.ml
+8 -6 metaprl/filter/filter_summary_io.mli
+13 -11 metaprl/filter/filter_summary_type.mlz
+3 -2 metaprl/filter/filter_type.mlz
+11 -11 metaprl/filter/filter_util.ml
+5 -5 metaprl/filter/filter_util.mli
+5 -4 metaprl/filter/infix.mli
+12 -4 metaprl/filter/infix.pre.ml
+67 -19 metaprl/filter/term_grammar.ml
+5 -4 metaprl/filter/term_grammar.mli
+4 -2 metaprl/library/library_type_base.ml
+1 -1 metaprl/mk/preface
+5 -5 metaprl/mk/rules
+8 -2 metaprl/mllib/Makefile
+3 -2 metaprl/mllib/debug_string_sets.ml
+8 -7 metaprl/mllib/debug_string_sets.mli
+14 -1 metaprl/mllib/env_arg.ml
+27 -10 metaprl/mllib/env_arg.mli
+93 -68 metaprl/mllib/file_base.ml
+5 -4 metaprl/mllib/file_base.mli
+20 -15 metaprl/mllib/file_base_type.ml
+28 -24 metaprl/mllib/file_type_base.ml
+18 -11 metaprl/mllib/file_type_base.mli
+29 -5 metaprl/mllib/filename_util.ml
+11 -5 metaprl/mllib/filename_util.mli
+6 -5 metaprl/mllib/fun_splay_set.mli
+6 -5 metaprl/mllib/hash_set.mli
+131 -128 metaprl/mllib/hash_with_gc.ml
+44 -13 metaprl/mllib/hash_with_gc_sig.ml
Added metaprl/mllib/http_server.ml
Properties metaprl/mllib/http_server.ml
Added metaprl/mllib/http_server.mli
Properties metaprl/mllib/http_server.mli
Added metaprl/mllib/list_neq_append.ml
Properties metaprl/mllib/list_neq_append.ml
Added metaprl/mllib/list_neq_append.mli
Properties metaprl/mllib/list_neq_append.mli
+57 -7 metaprl/mllib/list_util.ml
+8 -4 metaprl/mllib/list_util.mli
+160 -151 metaprl/mllib/memo.ml
+6 -39 metaprl/mllib/memo.mli
Added metaprl/mllib/memo_sig.ml
Properties metaprl/mllib/memo_sig.ml
Added metaprl/mllib/mp_inet.ml
Properties metaprl/mllib/mp_inet.ml
Added metaprl/mllib/mp_inet.mli
Properties metaprl/mllib/mp_inet.mli
+10 -34 metaprl/mllib/red_black_set.mli
Added metaprl/mllib/red_black_table.ml
Properties metaprl/mllib/red_black_table.ml
Added metaprl/mllib/red_black_table.mli
Properties metaprl/mllib/red_black_table.mli
+8 -5 metaprl/mllib/red_black_test.mli
Added metaprl/mllib/set_sig.mlz
Properties metaprl/mllib/set_sig.mlz
+6 -5 metaprl/mllib/small_set.ml
+7 -6 metaprl/mllib/small_set.mli
+5 -2 metaprl/mllib/splay_linear_set.mli
+272 -85 metaprl/mllib/splay_table.ml
+7 -28 metaprl/mllib/splay_table.mli
+6 -5 metaprl/mllib/string_set.mli
+128 -12 metaprl/mllib/string_util.ml
+17 -5 metaprl/mllib/string_util.mli
Added metaprl/mllib/table_util.ml
Properties metaprl/mllib/table_util.ml
Added metaprl/mllib/table_util.mli
Properties metaprl/mllib/table_util.mli
+242 -102 metaprl/mllib/weak_memo.ml
+8 -6 metaprl/mllib/weak_memo.mli
+98 -55 metaprl/mllib/weak_memo_sig.ml
+1 -0 metaprl/refiner/refiner/Files
+876 -238 metaprl/refiner/refiner/refine.ml
+6 -4 metaprl/refiner/refiner/refine_error.ml
+4 -4 metaprl/refiner/refiner/refiner.mli
+12 -3 metaprl/refiner/refiner/refiner_ds.ml
+1 -0 metaprl/refiner/refiner/refiner_ds.mli
Added metaprl/refiner/refiner/refiner_io.ml
Properties metaprl/refiner/refiner/refiner_io.ml
Added metaprl/refiner/refiner/refiner_io.mli
Properties metaprl/refiner/refiner/refiner_io.mli
+14 -4 metaprl/refiner/refiner/refiner_std.ml
+1 -0 metaprl/refiner/refiner/refiner_std.mli
+2 -1 metaprl/refiner/reflib/Files
+19 -21 metaprl/refiner/reflib/ascii_io.ml
+53 -54 metaprl/refiner/reflib/dform.ml
+16 -6 metaprl/refiner/reflib/dform.mli
+3 -2 metaprl/refiner/reflib/ml_term.ml
+13 -4 metaprl/refiner/reflib/mp_resource.ml
+20 -3 metaprl/refiner/reflib/mp_resource.mli
+4 -4 metaprl/refiner/reflib/refine_exn.ml
+880 -514 metaprl/refiner/reflib/rformat.ml
+29 -33 metaprl/refiner/reflib/rformat.mli
+7 -0 metaprl/refiner/reflib/simple_print.ml
+20 -21 metaprl/refiner/reflib/simple_print.mli
+8 -8 metaprl/refiner/reflib/simple_print_sig.ml
+148 -27 metaprl/refiner/reflib/term_copy2_weak.ml
+89 -10 metaprl/refiner/reflib/term_copy2_weak.mli
+14 -10 metaprl/refiner/reflib/term_copy_weak.ml
+26 -15 metaprl/refiner/reflib/term_copy_weak.mli
Added metaprl/refiner/reflib/term_eq_table.ml
Properties metaprl/refiner/reflib/term_eq_table.ml
Added metaprl/refiner/reflib/term_eq_table.mli
Properties metaprl/refiner/reflib/term_eq_table.mli
+7 -7 metaprl/refiner/reflib/term_io.ml
+10 -14 metaprl/refiner/reflib/term_io.mli
Added metaprl/refiner/reflib/term_match_table.ml
Properties metaprl/refiner/reflib/term_match_table.ml
Added metaprl/refiner/reflib/term_match_table.mli
Properties metaprl/refiner/reflib/term_match_table.mli
+4 -4 metaprl/refiner/reflib/theory.ml
+4 -4 metaprl/refiner/reflib/theory.mli
+4 -3 metaprl/refiner/refsig/Files
+6 -4 metaprl/refiner/refsig/refine_error_sig.ml
Added metaprl/refiner/refsig/refine_minimal_sig.ml
Properties metaprl/refiner/refsig/refine_minimal_sig.ml
+124 -48 metaprl/refiner/refsig/refine_sig.ml
+63 -15 metaprl/refiner/refsig/refiner_sig.ml
+2 -0 metaprl/refiner/refsig/term_addr_sig.ml
Added metaprl/refiner/refsig/term_base_minimal_sig.ml
Properties metaprl/refiner/refsig/term_base_minimal_sig.ml
+198 -47 metaprl/refiner/refsig/term_hash_sig.ml
Added metaprl/refiner/refsig/term_man_minimal_sig.ml
Properties metaprl/refiner/refsig/term_man_minimal_sig.ml
+3 -0 metaprl/refiner/refsig/term_man_sig.ml
+5 -5 metaprl/refiner/refsig/term_meta_sig.ml
+43 -18 metaprl/refiner/refsig/term_norm_sig.ml
+4 -0 metaprl/refiner/refsig/term_op_sig.ml
Added metaprl/refiner/refsig/term_subst_minimal_sig.ml
Properties metaprl/refiner/refsig/term_subst_minimal_sig.ml
+8 -10 metaprl/refiner/refsig/term_subst_sig.ml
+17 -11 metaprl/refiner/refsig/termmod_hash_sig.ml
+51 -12 metaprl/refiner/refsig/termmod_sig.ml
Deleted metaprl/refiner/refsig/tm_base_sig.mlz
Deleted metaprl/refiner/refsig/tm_man_sig.mlz
Deleted metaprl/refiner/refsig/tm_subst_sig.mlz
+16 -2 metaprl/refiner/term_ds/term_addr_ds.ml
+41 -17 metaprl/refiner/term_ds/term_base_ds.ml
+1 -0 metaprl/refiner/term_ds/term_ds.ml
+8 -1 metaprl/refiner/term_ds/term_ds_sig.ml
+22 -0 metaprl/refiner/term_ds/term_man_ds.ml
+33 -2 metaprl/refiner/term_ds/term_op_ds.ml
+24 -23 metaprl/refiner/term_ds/term_subst_ds.ml
+14 -1 metaprl/refiner/term_gen/term_addr_gen.ml
+156 -109 metaprl/refiner/term_gen/term_hash.ml
+7 -6 metaprl/refiner/term_gen/term_hash.mli
+31 -23 metaprl/refiner/term_gen/term_header_constr.ml
+11 -8 metaprl/refiner/term_gen/term_header_constr.mli
+34 -0 metaprl/refiner/term_gen/term_man_gen.ml
+30 -14 metaprl/refiner/term_gen/term_meta_gen.ml
+31 -13 metaprl/refiner/term_gen/term_norm.ml
+11 -8 metaprl/refiner/term_gen/term_norm.mli
+11 -4 metaprl/refiner/term_std/term_base_std.ml
+30 -2 metaprl/refiner/term_std/term_op_std.ml
+6 -0 metaprl/refiner/term_std/term_std_sig.ml
+16 -17 metaprl/refiner/term_std/term_subst_std.ml
+1 -3 metaprl/theories/base/Makefile
+21 -6 metaprl/theories/base/base_auto_tactic.ml
+6 -4 metaprl/theories/base/base_auto_tactic.mli
+2 -2 metaprl/theories/base/base_cache.ml
+2 -2 metaprl/theories/base/base_cache.mli
+97 -11 metaprl/theories/base/base_dform.ml
+9 -4 metaprl/theories/base/base_dform.mli
+273 -37 metaprl/theories/base/base_dtactic.ml
+12 -6 metaprl/theories/base/base_dtactic.mli
+22 -33 metaprl/theories/base/base_meta.ml
+2 -0 metaprl/theories/base/base_meta.mli
Deleted metaprl/theories/base/base_rewrite.ml
Deleted metaprl/theories/base/base_rewrite.mli
+4 -4 metaprl/theories/base/base_theory.mlz
Deleted metaprl/theories/base/nuprl_font.ml
Deleted metaprl/theories/base/nuprl_font.mli
+348 -87 metaprl/theories/base/summary.ml
+62 -17 metaprl/theories/base/summary.mli
+10 -9 metaprl/theories/base/typeinf.ml
+3 -3 metaprl/theories/base/typeinf.mli
Properties metaprl/theories/boot
Added metaprl/theories/boot/Makefile
Properties metaprl/theories/boot/Makefile
Added metaprl/theories/boot/conversionals_boot.ml
Properties metaprl/theories/boot/conversionals_boot.ml
Added metaprl/theories/boot/conversionals_boot.mli
Properties metaprl/theories/boot/conversionals_boot.mli
Added metaprl/theories/boot/exn_boot.ml
Properties metaprl/theories/boot/exn_boot.ml
Added metaprl/theories/boot/exn_boot.mli
Properties metaprl/theories/boot/exn_boot.mli
Added metaprl/theories/boot/proof_boot.ml
Properties metaprl/theories/boot/proof_boot.ml
Added metaprl/theories/boot/proof_boot.mli
Properties metaprl/theories/boot/proof_boot.mli
Added metaprl/theories/boot/proof_term_boot.ml
Properties metaprl/theories/boot/proof_term_boot.ml
Added metaprl/theories/boot/proof_term_boot.mli
Properties metaprl/theories/boot/proof_term_boot.mli
Added metaprl/theories/boot/rewrite_boot.ml
Properties metaprl/theories/boot/rewrite_boot.ml
Added metaprl/theories/boot/rewrite_boot.mli
Properties metaprl/theories/boot/rewrite_boot.mli
Added metaprl/theories/boot/sequent_boot.ml
Properties metaprl/theories/boot/sequent_boot.ml
Added metaprl/theories/boot/sequent_boot.mli
Properties metaprl/theories/boot/sequent_boot.mli
Added metaprl/theories/boot/tactic_boot.ml
Properties metaprl/theories/boot/tactic_boot.ml
Added metaprl/theories/boot/tactic_boot.mli
Properties metaprl/theories/boot/tactic_boot.mli
Added metaprl/theories/boot/tactic_boot_sig.mlz
Properties metaprl/theories/boot/tactic_boot_sig.mlz
Added metaprl/theories/boot/tactic_type.ml
Properties metaprl/theories/boot/tactic_type.ml
Added metaprl/theories/boot/tactic_type.mli
Properties metaprl/theories/boot/tactic_type.mli
Added metaprl/theories/boot/tacticals_boot.ml
Properties metaprl/theories/boot/tacticals_boot.ml
Added metaprl/theories/boot/tacticals_boot.mli
Properties metaprl/theories/boot/tacticals_boot.mli
+1 -1 metaprl/theories/czf/Makefile
+3 -3 metaprl/theories/czf/czf_itt_all.ml
+1 -1 metaprl/theories/czf/czf_itt_all.mli
+3 -3 metaprl/theories/czf/czf_itt_and.ml
+3 -3 metaprl/theories/czf/czf_itt_dall.ml
+1 -1 metaprl/theories/czf/czf_itt_dall.mli
+3 -3 metaprl/theories/czf/czf_itt_dexists.ml
+1 -1 metaprl/theories/czf/czf_itt_dexists.mli
+2 -2 metaprl/theories/czf/czf_itt_empty.ml
+2 -2 metaprl/theories/czf/czf_itt_eq.ml
+1 -1 metaprl/theories/czf/czf_itt_eq.mli
+2 -2 metaprl/theories/czf/czf_itt_eq_inner.ml
+1 -1 metaprl/theories/czf/czf_itt_eq_inner.mli
+3 -3 metaprl/theories/czf/czf_itt_exists.ml
+1 -1 metaprl/theories/czf/czf_itt_exists.mli
+2 -2 metaprl/theories/czf/czf_itt_false.ml
+1 -1 metaprl/theories/czf/czf_itt_false.mli
+3 -3 metaprl/theories/czf/czf_itt_implies.ml
+1 -1 metaprl/theories/czf/czf_itt_isect.mli
+3 -3 metaprl/theories/czf/czf_itt_member.ml
+2 -2 metaprl/theories/czf/czf_itt_member.mli
+3 -3 metaprl/theories/czf/czf_itt_or.ml
+4 -4 metaprl/theories/czf/czf_itt_pre_set.ml
+2 -2 metaprl/theories/czf/czf_itt_pre_set.mli
+1 -1 metaprl/theories/czf/czf_itt_rel.ml
+3 -3 metaprl/theories/czf/czf_itt_sall.ml
+2 -2 metaprl/theories/czf/czf_itt_sall.mli
+3 -3 metaprl/theories/czf/czf_itt_sep.ml
+1 -1 metaprl/theories/czf/czf_itt_sep.mli
+10 -10 metaprl/theories/czf/czf_itt_set.ml
+2 -2 metaprl/theories/czf/czf_itt_set.mli
+4 -4 metaprl/theories/czf/czf_itt_set_ext.ml
+2 -2 metaprl/theories/czf/czf_itt_set_ext.mli
+1 -1 metaprl/theories/czf/czf_itt_set_ind.ml
+3 -3 metaprl/theories/czf/czf_itt_sexists.ml
+1 -1 metaprl/theories/czf/czf_itt_sexists.mli
+3 -3 metaprl/theories/czf/czf_itt_small.ml
+2 -2 metaprl/theories/czf/czf_itt_small.mli
+2 -2 metaprl/theories/czf/czf_itt_true.ml
+3 -3 metaprl/theories/czf/czf_itt_union.ml
+1 -1 metaprl/theories/czf/czf_itt_union.mli
+1 -1 metaprl/theories/fol/Makefile
+9 -42 metaprl/theories/fol/fol_all.ml
+9 -28 metaprl/theories/fol/fol_and.ml
+2 -1 metaprl/theories/fol/fol_class.ml
+1 -1 metaprl/theories/fol/fol_class.mli
+9 -30 metaprl/theories/fol/fol_exists.ml
+2 -22 metaprl/theories/fol/fol_false.ml
+9 -30 metaprl/theories/fol/fol_implies.ml
+7 -26 metaprl/theories/fol/fol_not.ml
+14 -36 metaprl/theories/fol/fol_or.ml
+3 -2 metaprl/theories/fol/fol_struct.ml
+1 -1 metaprl/theories/fol/fol_struct.mli
+1 -1 metaprl/theories/fol/fol_theory.ml
+2 -19 metaprl/theories/fol/fol_true.ml
+3 -2 metaprl/theories/fol/fol_type.ml
+3 -2 metaprl/theories/fol/fol_univ.ml
+1 -1 metaprl/theories/fol/fol_univ_itt.ml
+2 -2 metaprl/theories/itt/Makefile
Deleted metaprl/theories/itt/collection.ml
Deleted metaprl/theories/itt/collection.mli
Deleted metaprl/theories/itt/collection.prlb
+1 -3 metaprl/theories/itt/itt_arith.ml
+24 -40 metaprl/theories/itt/itt_atom.ml
+1 -4 metaprl/theories/itt/itt_atom.mli
+10 -31 metaprl/theories/itt/itt_atom_bool.ml
+1 -1 metaprl/theories/itt/itt_atom_bool.mli
+36 -71 metaprl/theories/itt/itt_bisect.ml
+94 -298 metaprl/theories/itt/itt_bool.ml
+2 -6 metaprl/theories/itt/itt_bool.mli
+18 -62 metaprl/theories/itt/itt_bunion.ml
+1 -1 metaprl/theories/itt/itt_bunion.mli
Added metaprl/theories/itt/itt_collection.ml
Properties metaprl/theories/itt/itt_collection.ml
Added metaprl/theories/itt/itt_collection.mli
Properties metaprl/theories/itt/itt_collection.mli
Added metaprl/theories/itt/itt_collection.prlb
Properties metaprl/theories/itt/itt_collection.prlb
+17 -22 metaprl/theories/itt/itt_derive.ml
+1 -1 metaprl/theories/itt/itt_derive.mli
+47 -135 metaprl/theories/itt/itt_dfun.ml
+5 -13 metaprl/theories/itt/itt_dfun.mli
+26 -116 metaprl/theories/itt/itt_dprod.ml
+5 -10 metaprl/theories/itt/itt_dprod.mli
+205 -262 metaprl/theories/itt/itt_equal.ml
+18 -10 metaprl/theories/itt/itt_equal.mli
Binary metaprl/theories/itt/itt_equal.prlb
+5 -5 metaprl/theories/itt/itt_ext_equal.ml
+10 -7 metaprl/theories/itt/itt_fset.ml
+4 -2 metaprl/theories/itt/itt_fset.mli
+52 -126 metaprl/theories/itt/itt_fun.ml
+6 -9 metaprl/theories/itt/itt_fun.mli
+53 -81 metaprl/theories/itt/itt_int.ml
+7 -8 metaprl/theories/itt/itt_int.mli
+10 -31 metaprl/theories/itt/itt_int_bool.ml
+1 -1 metaprl/theories/itt/itt_int_bool.mli
+22 -89 metaprl/theories/itt/itt_isect.ml
+1 -4 metaprl/theories/itt/itt_isect.mli
+30 -140 metaprl/theories/itt/itt_list.ml
+1 -4 metaprl/theories/itt/itt_list.mli
+39 -132 metaprl/theories/itt/itt_list2.ml
+1 -1 metaprl/theories/itt/itt_list2.mli
+162 -439 metaprl/theories/itt/itt_logic.ml
+2 -2 metaprl/theories/itt/itt_logic.mli
+21 -21 metaprl/theories/itt/itt_prec.ml
+16 -76 metaprl/theories/itt/itt_prod.ml
+5 -11 metaprl/theories/itt/itt_prod.mli
+5 -4 metaprl/theories/itt/itt_prop_decide.ml
+1 -1 metaprl/theories/itt/itt_prop_decide.mli
+50 -131 metaprl/theories/itt/itt_quotient.ml
+1 -4 metaprl/theories/itt/itt_quotient.mli
+98 -121 metaprl/theories/itt/itt_rfun.ml
+18 -5 metaprl/theories/itt/itt_rfun.mli
+36 -110 metaprl/theories/itt/itt_set.ml
+2 -5 metaprl/theories/itt/itt_set.mli
+3 -5 metaprl/theories/itt/itt_squash.ml
+2 -5 metaprl/theories/itt/itt_squash.mli
+19 -53 metaprl/theories/itt/itt_srec.ml
+82 -62 metaprl/theories/itt/itt_struct.ml
+4 -2 metaprl/theories/itt/itt_struct.mli
+27 -79 metaprl/theories/itt/itt_subtype.ml
+2 -4 metaprl/theories/itt/itt_subtype.mli
+7 -7 metaprl/theories/itt/itt_test.ml
+2 -2 metaprl/theories/itt/itt_test.mli
+1 -1 metaprl/theories/itt/itt_tsub.ml
+17 -78 metaprl/theories/itt/itt_tunion.ml
+32 -137 metaprl/theories/itt/itt_union.ml
+5 -11 metaprl/theories/itt/itt_union.mli
+30 -50 metaprl/theories/itt/itt_unit.ml
+2 -8 metaprl/theories/itt/itt_unit.mli
+22 -45 metaprl/theories/itt/itt_void.ml
+1 -4 metaprl/theories/itt/itt_void.mli
+21 -115 metaprl/theories/itt/itt_w.ml
+71 -70 metaprl/theories/ocaml/ocaml_base_df.ml
+5 -4 metaprl/theories/ocaml/ocaml_base_df.mli
+70 -70 metaprl/theories/ocaml/ocaml_expr_df.ml
+13 -13 metaprl/theories/ocaml/ocaml_mt_df.ml
+95 -95 metaprl/theories/ocaml/ocaml_patt_df.ml
+15 -15 metaprl/theories/ocaml/ocaml_sig_df.ml
+29 -29 metaprl/theories/ocaml/ocaml_str_df.ml
+36 -36 metaprl/theories/ocaml/ocaml_type_df.ml
+1 -1 metaprl/theories/reflect_itt/Makefile
+15 -15 metaprl/theories/reflect_itt/refl_free_vars.ml
+1 -1 metaprl/theories/reflect_itt/refl_free_vars.mli
+36 -105 metaprl/theories/reflect_itt/refl_raw_term.ml
+2 -2 metaprl/theories/reflect_itt/refl_raw_term.mli
+75 -175 metaprl/theories/reflect_itt/refl_term.ml
+2 -3 metaprl/theories/reflect_itt/refl_term.mli
+28 -71 metaprl/theories/reflect_itt/refl_var.ml
+2 -2 metaprl/theories/reflect_itt/refl_var.mli
+86 -190 metaprl/theories/reflect_itt/refl_var_set.ml
+2 -2 metaprl/theories/reflect_itt/refl_var_set.mli
+5 -7 metaprl/theories/tactic/Makefile
Deleted metaprl/theories/tactic/conversionals.ml
Deleted metaprl/theories/tactic/conversionals.mli
+2 -2 metaprl/theories/tactic/mptop.ml
+2 -2 metaprl/theories/tactic/mptop.mli
Added metaprl/theories/tactic/nuprl_font.ml
Properties metaprl/theories/tactic/nuprl_font.ml
Added metaprl/theories/tactic/nuprl_font.mli
Properties metaprl/theories/tactic/nuprl_font.mli
+4 -5 metaprl/theories/tactic/perv.mli
Deleted metaprl/theories/tactic/pre_tactic_type.ml
Deleted metaprl/theories/tactic/pre_tactic_type.mli
Deleted metaprl/theories/tactic/remote_null.ml
Deleted metaprl/theories/tactic/remote_null.mli
Deleted metaprl/theories/tactic/remote_sig.mlz
Deleted metaprl/theories/tactic/rewrite_type.ml
Deleted metaprl/theories/tactic/rewrite_type.mli
Deleted metaprl/theories/tactic/sequent.ml
Deleted metaprl/theories/tactic/sequent.mli
Deleted metaprl/theories/tactic/tactic_type.ml
Deleted metaprl/theories/tactic/tactic_type.mli
Deleted metaprl/theories/tactic/tacticals.ml
Deleted metaprl/theories/tactic/tacticals.mli
Added metaprl/theories/tactic/top_conversionals.ml
Properties metaprl/theories/tactic/top_conversionals.ml
Added metaprl/theories/tactic/top_conversionals.mli
Properties metaprl/theories/tactic/top_conversionals.mli
Added metaprl/theories/tactic/top_tacticals.ml
Properties metaprl/theories/tactic/top_tacticals.ml
Added metaprl/theories/tactic/top_tacticals.mli
Properties metaprl/theories/tactic/top_tacticals.mli
+28 -3 metaprl/theories/tactic/var.ml
+2 -1 metaprl/theories/tactic/var.mli
+1 -1 metaprl/theories/tptp/Makefile
+27 -83 metaprl/theories/tptp/tptp.ml
+16 -16 metaprl/theories/tptp/tptp.mli
+6 -5 metaprl/theories/tptp/tptp_cache.ml
+2 -1 metaprl/theories/tptp/tptp_prove.ml
+1 -1 metaprl/theories/tptp/tptp_prove.mli
+1 -2 metaprl/util/ocamldep.mll

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 11:45:15 -0700 (Wed, 23 Jun 1999)
Revision: 2744
Log message:

      Fixed couple of typos that prevented "make opt" from working
      

Changes  Path
+2 -0 metaprl/editor/ml/Makefile
+1 -1 metaprl/filter/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 15:19:48 -0700 (Wed, 23 Jun 1999)
Revision: 2745
Log message:

      Updated the ds/std and VERBOSE/SIMPLE documentation.
      
      Updated mk/make_config.sh to include in mk/config the pointers to this documentation
      

Changes  Path
+14 -10 metaprl/doc/refiner_verb_and_simp.txt
+4 -4 metaprl/doc/term_modules.txt
+2 -0 metaprl/mk/make_config.sh

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 16:01:38 -0700 (Wed, 23 Jun 1999)
Revision: 2746
Log message:

      Eliminated "circular dependencies" make warnings
      

Changes  Path
+5 -5 metaprl/filter/filter_bin.ml
+3 -1 metaprl/filter/filter_cache.ml
+2 -2 metaprl/filter/filter_cache.mli
+5 -5 metaprl/filter/filter_parse.ml
+0 -3 metaprl/refiner/refiner/refiner_io.ml
+0 -3 metaprl/refiner/refiner/refiner_io.mli
+4 -4 metaprl/refiner/reflib/term_io.mli
+1 -0 metaprl/theories/boot/proof_boot.ml
+2 -2 metaprl/theories/boot/tactic_boot_sig.mlz

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 16:40:57 -0700 (Wed, 23 Jun 1999)
Revision: 2747
Log message:

      By default, run make with -s (silent) flag.
      
      This way you are able to see all the essential messages that otherwise
      would get lost among all those ocamlc & ocamlopt commands
      

Changes  Path
+3 -2 metaprl/Makefile
+4 -0 metaprl/mk/make_config.sh
+4 -1 metaprl/mk/preface
+5 -5 metaprl/refiner/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 16:51:04 -0700 (Wed, 23 Jun 1999)
Revision: 2748
Log message:

      Removed some old code that Eli accidentally added back
      

Changes  Path
+0 -23 metaprl/refiner/term_std/term_subst_std.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 17:10:42 -0700 (Wed, 23 Jun 1999)
Revision: 2749
Log message:

      Eliminated a worning
      

Changes  Path
+2 -0 metaprl/refiner/reflib/refine_exn.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 18:00:29 -0700 (Wed, 23 Jun 1999)
Revision: 2750
Log message:

      Term_copy*_weak modules only need Term modules, not full refiners, on input
      

Changes  Path
+1 -1 metaprl/refiner/refiner/refiner_ds.ml
+1 -0 metaprl/refiner/refiner/refiner_std.ml
+3 -3 metaprl/refiner/reflib/term_copy2_weak.ml
+3 -3 metaprl/refiner/reflib/term_copy2_weak.mli
+5 -3 metaprl/refiner/reflib/term_copy_weak.ml
+4 -3 metaprl/refiner/reflib/term_copy_weak.mli
+2 -35 metaprl/refiner/refsig/refiner_sig.ml
+7 -0 metaprl/refiner/refsig/termmod_hash_sig.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-23 18:54:39 -0700 (Wed, 23 Jun 1999)
Revision: 2751
Log message:

      Yet more stuff - now there are also toplevel macros that can be used.
      I really hope that this is the last feature addition (in other words,
      if someone don't like these frequent updates - me neither).
      

Changes  Path
+327 -273 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-23 19:28:46 -0700 (Wed, 23 Jun 1999)
Revision: 2752
Log message:

      Made some of the "internal" stuff go away.
      
      Eli, I've made refsig gcc-preprocessed, but I hope it would be really easy to convert
      it to macros. Sorry about that.
      

Changes  Path
+2 -0 metaprl/refiner/refsig/Makefile
+50 -79 metaprl/refiner/refsig/term_base_minimal_sig.ml
+149 -228 metaprl/refiner/refsig/term_hash_sig.ml
+1 -1 metaprl/refiner/term_gen/term_hash.mli
+26 -26 metaprl/refiner/term_gen/term_header_constr.ml
+1 -1 metaprl/refiner/term_gen/term_header_constr.mli
+1 -1 metaprl/refiner/term_std/Makefile

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 1999-06-24 17:19:15 -0700 (Thu, 24 Jun 1999)
Revision: 2753
Log message:

      These are some minor changes to make things work better.  Changed
      meaning of ThinOption in elim_resource: it now means to thin the hyp
      by default, unless overridden by thinningT false.
      
      Fixed some proof operations.  Added "move_to_assum" command to take
      the current subgoal and make it an extra assumption of the entire
      proof (it may not work at the moment).
      
      ls now takes a _string_ argument.  Use ls "u";; to display only the
      unproved rules in the current module.
      
      Proved many membership variants of the standard type constructors,
      but there are a few more to go.  When you are defining theories, I
      believe you should use membership, not equality.  After all, equality
      is derivable from membership, and membership is a lot easier.
      
      Still to go: ASCII format proof files; save proofs _without_ extracts
      by default.  The expand () function does not reexpand proofs correctly.
      A few problems with proof navigation.
      

Changes  Path
+1 -1 metaprl/Makefile
Properties metaprl/editor/java
+0 -0 metaprl/editor/java/InText.java
Added metaprl/editor/java/Makefile
Properties metaprl/editor/java/Makefile
+0 -0 metaprl/editor/java/ModeLine.java
Added metaprl/editor/java/Nuprl.java
Properties metaprl/editor/java/Nuprl.java
+0 -0 metaprl/editor/java/NuprlArgumentToken.java
+0 -0 metaprl/editor/java/NuprlAuthorization.java
+0 -0 metaprl/editor/java/NuprlBus.java
+0 -0 metaprl/editor/java/NuprlBusClient.java
+0 -0 metaprl/editor/java/NuprlBusEndpoint.java
+0 -0 metaprl/editor/java/NuprlBusMessage.java
+0 -0 metaprl/editor/java/NuprlBusPort.java
+0 -0 metaprl/editor/java/NuprlClient.java
+0 -0 metaprl/editor/java/NuprlCommand.java
+0 -0 metaprl/editor/java/NuprlCommandToken.java
+0 -0 metaprl/editor/java/NuprlConstants.java
+0 -0 metaprl/editor/java/NuprlContext.java
+0 -0 metaprl/editor/java/NuprlControl.java
+0 -0 metaprl/editor/java/NuprlControlToken.java
+0 -0 metaprl/editor/java/NuprlDataToken.java
+0 -0 metaprl/editor/java/NuprlDebug.java
+0 -0 metaprl/editor/java/NuprlEscapedToken.java
+0 -0 metaprl/editor/java/NuprlException.java
+0 -0 metaprl/editor/java/NuprlFrame.java
+0 -0 metaprl/editor/java/NuprlHost.java
+0 -0 metaprl/editor/java/NuprlHyperlinkToken.java
+0 -0 metaprl/editor/java/NuprlInternalFrame.java
+0 -0 metaprl/editor/java/NuprlLogin.java
+0 -0 metaprl/editor/java/NuprlManager.java
+0 -0 metaprl/editor/java/NuprlMenu.java
+0 -0 metaprl/editor/java/NuprlOptionBlockToken.java
+0 -0 metaprl/editor/java/NuprlOptionRequestToken.java
+0 -0 metaprl/editor/java/NuprlOptionResponseToken.java
+0 -0 metaprl/editor/java/NuprlOptionSBToken.java
+0 -0 metaprl/editor/java/NuprlOptionToken.java
+0 -0 metaprl/editor/java/NuprlPrlToken.java
+0 -0 metaprl/editor/java/NuprlProof.java
+0 -0 metaprl/editor/java/NuprlSyncToken.java
Added metaprl/editor/java/NuprlTerm.java
Properties metaprl/editor/java/NuprlTerm.java
+0 -0 metaprl/editor/java/NuprlText.java
+0 -0 metaprl/editor/java/NuprlToken.java
+0 -0 metaprl/editor/java/NuprlTokenInputStream.java
+0 -0 metaprl/editor/java/NuprlURLToken.java
+21 -0 metaprl/editor/java/OutText.java
+0 -0 metaprl/editor/java/PromptPasswordRecognizer.java
+0 -0 metaprl/editor/java/PromptRecognizer.java
+0 -0 metaprl/editor/java/PromptUserRecognizer.java
Added metaprl/editor/java/Semaphore.java
Properties metaprl/editor/java/Semaphore.java
+0 -0 metaprl/editor/java/StringBooleanFunction.java
+0 -0 metaprl/editor/java/StringIntFunction.java
+0 -0 metaprl/editor/java/StringTokenizer.java
+0 -0 metaprl/editor/java/Target.java
+0 -0 metaprl/editor/java/TtyArea.java
+7 -1 metaprl/editor/ml/mp.ml
+7 -1 metaprl/editor/ml/mp.mli
+9 -0 metaprl/editor/ml/mp_top.ml
+31 -42 metaprl/editor/ml/package_info.ml
+1 -1 metaprl/editor/ml/package_sig.mlz
+85 -0 metaprl/editor/ml/proof_edit.ml
+28 -0 metaprl/editor/ml/proof_edit.mli
+76 -39 metaprl/editor/ml/shell.ml
+3 -0 metaprl/editor/ml/shell_http.ml
+3 -0 metaprl/editor/ml/shell_mp.ml
+72 -13 metaprl/editor/ml/shell_package.ml
+8 -12 metaprl/editor/ml/shell_rewrite.ml
+4 -8 metaprl/editor/ml/shell_root.ml
+8 -13 metaprl/editor/ml/shell_rule.ml
+17 -4 metaprl/editor/ml/shell_sig.mlz
+2 -2 metaprl/editor/ml/shell_state.ml
+23 -6 metaprl/filter/filter_prog.ml
+2 -0 metaprl/filter/filter_summary.ml
+4 -0 metaprl/filter/filter_summary.mli
+1 -1 metaprl/refiner/refiner/refine.ml
+49 -10 metaprl/refiner/reflib/mp_resource.ml
+4 -2 metaprl/refiner/reflib/mp_resource.mli
+3 -5 metaprl/refiner/reflib/rformat.ml
+1 -0 metaprl/theories/base/Makefile
+25 -4 metaprl/theories/base/base_dtactic.ml
+2 -2 metaprl/theories/base/base_dtactic.mli
Added metaprl/theories/base/base_rewrite.ml
Properties metaprl/theories/base/base_rewrite.ml
Added metaprl/theories/base/base_rewrite.mli
Properties metaprl/theories/base/base_rewrite.mli
+1 -0 metaprl/theories/base/base_theory.mlz
+1 -1 metaprl/theories/base/summary.ml
+108 -10 metaprl/theories/boot/proof_boot.ml
+1 -1 metaprl/theories/boot/proof_term_boot.ml
+12 -0 metaprl/theories/boot/tactic_boot_sig.mlz
+1 -1 metaprl/theories/fol/Makefile
+4 -1 metaprl/theories/fol/fol_all.ml
+1 -1 metaprl/theories/fol/fol_and.ml
+1 -1 metaprl/theories/fol/fol_exists.ml
+1 -1 metaprl/theories/fol/fol_or.ml
+3 -2 metaprl/theories/itt/Makefile
+3 -1 metaprl/theories/itt/itt_atom_bool.ml
+25 -19 metaprl/theories/itt/itt_bool.ml
+2 -1 metaprl/theories/itt/itt_bool.mli
Binary metaprl/theories/itt/itt_bool.prlb
+3 -1 metaprl/theories/itt/itt_bunion.ml
+7 -7 metaprl/theories/itt/itt_collection.ml
+68 -51 metaprl/theories/itt/itt_dfun.ml
+8 -2 metaprl/theories/itt/itt_dfun.mli
Binary metaprl/theories/itt/itt_dfun.prlb
Properties metaprl/theories/itt/itt_dfun.prlb
+57 -5 metaprl/theories/itt/itt_dprod.ml
+1 -1 metaprl/theories/itt/itt_dprod.mli
Binary metaprl/theories/itt/itt_dprod.prlb
Properties metaprl/theories/itt/itt_dprod.prlb
Added metaprl/theories/itt/itt_dprod_imp.ml
Properties metaprl/theories/itt/itt_dprod_imp.ml
Added metaprl/theories/itt/itt_dprod_imp.mli
Properties metaprl/theories/itt/itt_dprod_imp.mli
Binary metaprl/theories/itt/itt_dprod_imp.prlb
Properties metaprl/theories/itt/itt_dprod_imp.prlb
+24 -3 metaprl/theories/itt/itt_equal.ml
Binary metaprl/theories/itt/itt_equal.prlb
+42 -85 metaprl/theories/itt/itt_fun.ml
+2 -1 metaprl/theories/itt/itt_fun.mli
Binary metaprl/theories/itt/itt_fun.prlb
Properties metaprl/theories/itt/itt_fun.prlb
+5 -2 metaprl/theories/itt/itt_int.ml
+1 -1 metaprl/theories/itt/itt_int_bool.ml
+4 -1 metaprl/theories/itt/itt_list.ml
+10 -10 metaprl/theories/itt/itt_logic.ml
+5 -2 metaprl/theories/itt/itt_prec.ml
+2 -1 metaprl/theories/itt/itt_prod.ml
+7 -4 metaprl/theories/itt/itt_quotient.ml
+114 -9 metaprl/theories/itt/itt_rfun.ml
+2 -3 metaprl/theories/itt/itt_rfun.mli
Binary metaprl/theories/itt/itt_rfun.prlb
Properties metaprl/theories/itt/itt_rfun.prlb
+10 -1 metaprl/theories/itt/itt_set.ml
+5 -2 metaprl/theories/itt/itt_srec.ml
+8 -25 metaprl/theories/itt/itt_struct.ml
+1 -1 metaprl/theories/itt/itt_struct.mli
Binary metaprl/theories/itt/itt_struct.prlb
Properties metaprl/theories/itt/itt_struct.prlb
+4 -1 metaprl/theories/itt/itt_subtype.ml
+1 -0 metaprl/theories/itt/itt_subtype.mli
+22 -3 metaprl/theories/itt/itt_union.ml
+1 -1 metaprl/theories/itt/itt_union.mli
+6 -1 metaprl/theories/itt/itt_unit.ml
+4 -1 metaprl/theories/itt/itt_w.ml
+3 -1 metaprl/theories/reflect_itt/refl_raw_term.ml
+1 -1 metaprl/theories/reflect_itt/refl_term.ml
+3 -2 metaprl/theories/reflect_itt/refl_var.ml
+6 -5 metaprl/theories/reflect_itt/refl_var_set.ml
+1 -1 metaprl/theories/tptp/tptp.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 1999-06-24 17:31:48 -0700 (Thu, 24 Jun 1999)
Revision: 2754
Log message:

      Disabled web server for now.
      

Changes  Path
+2 -0 metaprl/editor/ml/shell_http.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 17:10:11 -0700 (Fri, 25 Jun 1999)
Revision: 2755
Log message:

      macro.ml-ified.
      

Changes  Path
+1 -1 metaprl/refiner/term_gen/Makefile
+131 -123 metaprl/refiner/term_gen/term_addr_gen.ml
+36 -36 metaprl/refiner/term_gen/term_man_gen.ml
+6 -6 metaprl/refiner/term_gen/term_meta_gen.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 17:36:02 -0700 (Fri, 25 Jun 1999)
Revision: 2756
Log message:

      macro.ml-ified
      

Changes  Path
+1 -1 metaprl/refiner/term_ds/Makefile
+154 -152 metaprl/refiner/term_ds/term_addr_ds.ml
+61 -58 metaprl/refiner/term_ds/term_base_ds.ml
+4 -4 metaprl/refiner/term_ds/term_eval_ds.ml
+29 -29 metaprl/refiner/term_ds/term_man_ds.ml
+42 -42 metaprl/refiner/term_ds/term_op_ds.ml
+78 -72 metaprl/refiner/term_ds/term_subst_ds.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 18:37:30 -0700 (Fri, 25 Jun 1999)
Revision: 2757
Log message:

      Mazal Tov!
      
      Done.
      

Changes  Path
+4 -2 metaprl/refiner/rewrite/Makefile
+45 -45 metaprl/refiner/rewrite/rewrite.ml
+85 -87 metaprl/refiner/rewrite/rewrite_build_contractum.ml
+12 -12 metaprl/refiner/rewrite/rewrite_compile_contractum.ml
+9 -9 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+1 -1 metaprl/refiner/rewrite/rewrite_debug.ml
+155 -157 metaprl/refiner/rewrite/rewrite_match_redex.ml
+3 -3 metaprl/refiner/rewrite/rewrite_meta.ml
+27 -19 metaprl/refiner/rewrite/rewrite_types.ml
+8 -8 metaprl/refiner/rewrite/rewrite_util.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 18:38:45 -0700 (Fri, 25 Jun 1999)
Revision: 2758
Log message:

      Small changes and additions.
      

Changes  Path
+1 -0 metaprl/mk/rules
+24 -2 metaprl/util/macro.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 18:55:03 -0700 (Fri, 25 Jun 1999)
Revision: 2759
Log message:

      \newcommand{\message}{Mazal Tov}
      
      The last \message was too early,
      this one is OK: \message.
      
      By this commit we're completely CPP-free.
      

Changes  Path
+0 -5 metaprl/mk/rules
+1 -1 metaprl/refiner/refsig/Makefile
+49 -47 metaprl/refiner/refsig/term_base_minimal_sig.ml
+147 -146 metaprl/refiner/refsig/term_hash_sig.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-25 19:21:38 -0700 (Fri, 25 Jun 1999)
Revision: 2760
Log message:

      Macro cleanup: renamed some of the X1 identifiers back to X'
      and removed the macros entry from the TODO file.
      

Changes  Path
+7 -7 metaprl/refiner/term_ds/term_addr_ds.ml
+4 -4 metaprl/refiner/term_gen/term_addr_gen.ml

Changes by: Eli Barzilay (eli at cs.cornell.edu)
Date: 1999-06-25 20:01:09 -0700 (Fri, 25 Jun 1999)
Revision: 2761
Log message:

      * No need for "-DMLZ".
      * Added some documentaion in macro.ml.
      

Changes  Path
+1 -1 metaprl/refiner/rewrite/Makefile
+5 -1 metaprl/util/macro.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-25 23:26:06 -0700 (Fri, 25 Jun 1999)
Revision: 2762
Log message:

      There is no need for any tmp.mli
      

Changes  Path
+1 -3 metaprl/refiner/rewrite/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-28 20:40:34 -0700 (Mon, 28 Jun 1999)
Revision: 2763
Log message:

      Removed -I $(ROOT)/lib from the INCLUDES.
      It was unnecessary since mk/rules adds -I $(ROOT)/lib to ocaml{c,opt} calls anyway.
      

Changes  Path
+0 -1 metaprl/editor/ml/Makefile
+1 -1 metaprl/theories/base/Makefile
+1 -1 metaprl/theories/boot/Makefile
+1 -1 metaprl/theories/czf/Makefile
+1 -1 metaprl/theories/itt/Makefile
+1 -1 metaprl/theories/ocaml/Makefile
+1 -1 metaprl/theories/ocaml_sos/Makefile
+1 -1 metaprl/theories/reflect_itt/Makefile
+1 -1 metaprl/theories/tactic/Makefile
+1 -1 metaprl/theories/tptp/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-28 20:46:59 -0700 (Mon, 28 Jun 1999)
Revision: 2764
Log message:

      This seems to work under Linux.
      

Changes  Path
Properties metaprl/editor/java
+38 -3 metaprl/editor/java/Makefile
Added metaprl/editor/java/run
Properties metaprl/editor/java/run

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-28 23:23:02 -0700 (Mon, 28 Jun 1999)
Revision: 2765
Log message:

      Small changes.
      

Changes  Path
+19 -9 metaprl/editor/java/Makefile
+1 -0 metaprl/editor/java/NuprlManager.java
+1 -1 metaprl/editor/java/run

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 1999-06-29 13:43:13 -0700 (Tue, 29 Jun 1999)
Revision: 2766
Log message:

      Minor fixes to make Linux Makefile and shell script work.
      

Changes  Path
+10 -5 metaprl/editor/java/Makefile
+1 -1 metaprl/editor/java/run

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-29 18:47:15 -0700 (Tue, 29 Jun 1999)
Revision: 2767
Log message:

      Fixed some comments
      

Changes  Path
+1 -1 metaprl/editor/ml/tutorial_itt.ml
+2 -2 metaprl/refiner/refsig/term_subst_sig.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-29 23:27:09 -0700 (Tue, 29 Jun 1999)
Revision: 2768
Log message:

      Now
      #use "x.ml";;
      works again in ./mp
      

Changes  Path
+1 -1 metaprl/editor/ml/mpconfig
+2 -2 metaprl/editor/ml/x.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 1999-06-30 12:17:56 -0700 (Wed, 30 Jun 1999)
Revision: 2769
Log message:

      If for some reason you can not connect to port 80 on metaprl-cvs, try using port 3000 instead.
      

Changes  Path
+1 -0 metaprl/doc/htmlman/mp-cvs-rw.html

Changes by: Carl Witty (cwitty at newtonlabs.com)
Date: 1999-06-30 21:47:18 -0700 (Wed, 30 Jun 1999)
Revision: 2770
Log message:

      I tried to make the OCaml toploop (i.e., editor/ml/mp) work.  I think
      this may be part of the solution, but somebody needs to check my work;
      I didn't really understand what I was doing here.
      
      There's still a bug: when I try to enter a term at the prompt, I get
      messages claiming that the term names are undeclared:
      
      # << unit >>;;
      # While expanding quotation "term":
      Failure: undeclared name: unit
      
      This was in a context (specifically, "itt_fset/fsub_member_intro3")
      where << unit >> should have been declared (and in fact, I don't get
      that error using mptop).
      

Changes  Path
+1 -1 metaprl/editor/ml/shell_p4.ml
+2 -0 metaprl/editor/ml/shell_p4_sig.mlz
+3 -2 metaprl/editor/ml/shell_state.ml