Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2003-09-01 03:29:15 -0700 (Mon, 01 Sep 2003)
Revision: 4905
Log message:

      Fixed some typos in the documention.
      

Changes  Path
+1 -1 metaprl/theories/itt/itt_decidable.ml
+2 -2 metaprl/theories/itt/itt_dprod.ml
+1 -1 metaprl/theories/itt/itt_equal.ml
+1 -1 metaprl/theories/itt/itt_fun.ml
+34 -34 metaprl/theories/itt/itt_logic.ml
+1 -1 metaprl/theories/itt/itt_prod.ml
+13 -5 metaprl/theories/itt/itt_rfun.ml
+1 -1 metaprl/theories/itt/itt_set.ml
+2 -2 metaprl/theories/itt/itt_squash.ml
+2 -2 metaprl/theories/itt/itt_struct.ml
+1 -1 metaprl/theories/itt/itt_subtype.ml
+3 -2 metaprl/theories/itt/itt_union.ml

Changes by: Adam Granicz (granicz at cs.caltech.edu)
Date: 2003-09-01 08:00:09 -0700 (Mon, 01 Sep 2003)
Revision: 4906
Log message:

      Added magic/version to .cph file header.
      Now, before we do anything with .cph files, we check
      1. the magic number. If incorrect, we raise Bad_magic
      2. the version number. If incorrect, we use .pho file
      3. if header checks out, we use .cph file (of course, we check
      whether the .pho file is newer or not)
      
      Also, got rid of precedence warnings. This was a check to ensure that
      all prec directives list terminal symbols. This is too conservative,
      so I removed it entirely. I will modify this in my next commit to
      check whether all rules with %prec name valid precedence symbols,
      e.g. either existing terminal symbols or those listed in the precedence
      section.
      

Changes  Path
+1 -1 metaprl/filter/phobos/Makefile
+26 -21 metaprl/filter/phobos/phobos_compile.ml
+80 -80 metaprl/filter/phobos/phobos_exn.ml
+3 -2 metaprl/filter/phobos/phobos_exn.mli
+21 -43 metaprl/filter/phobos/phobos_grammar.ml
+10 -0 metaprl/filter/phobos/phobos_marshal.ml
+3 -0 metaprl/filter/phobos/phobos_parse_state.ml
+2 -4 metaprl/filter/phobos/phobos_parse_state.mli

Changes by: Adam Granicz (granicz at cs.caltech.edu)
Date: 2003-09-01 08:37:18 -0700 (Mon, 01 Sep 2003)
Revision: 4907
Log message:

      Check whether we specify valid symbols in %prec of a rule.
      

Changes  Path
+18 -2 metaprl/filter/phobos/phobos_grammar.ml
+2 -0 metaprl/filter/phobos/phobos_util.ml
+4 -0 metaprl/filter/phobos/phobos_util.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-01 16:46:00 -0700 (Mon, 01 Sep 2003)
Revision: 4908
Log message:

      Document all magic numbers in a single location.
      

Changes  Path
+2 -0 metaprl/filter/base/filter_magic.ml

Changes by: Xin Yu (xiny at cs.caltech.edu)
Date: 2003-09-01 16:59:50 -0700 (Mon, 01 Sep 2003)
Revision: 4909
Log message:

      Typo fixes in the documentation.
      

Changes  Path
+5 -5 metaprl/support/display/comment.ml
+4 -4 metaprl/support/display/summary.ml
+1 -1 metaprl/support/shell/mptop.ml
+1 -1 metaprl/support/tactics/dtactic.ml
+6 -6 metaprl/support/tactics/top_conversionals.ml
+10 -8 metaprl/support/tactics/top_tacticals.ml
+1 -1 metaprl/support/tactics/var.ml
+1 -1 metaprl/theories/base/base_rewrite.ml
+1 -1 metaprl/theories/base/base_theory.mlz

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-01 20:28:23 -0700 (Mon, 01 Sep 2003)
Revision: 4910
Log message:

      Cleaning up and refactoring the refiner implementation.
      
      Now refiner should keep enough information around to be able
      to figure out which axioms a proof is dependent on.
      
      Still to do: need to be able to actually extract out the dependency
      information and a UI to print it (including UI for checking whether
      teh rule is fully grounded or not).
      

Changes  Path
+1 -1 metaprl/filter/filter/filter_prog.ml
+379 -521 metaprl/refiner/refiner/refine.ml
+3 -4 metaprl/refiner/refsig/refine_sig.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-02 19:57:45 -0700 (Tue, 02 Sep 2003)
Revision: 4911
Log message:

      Xin & Aleksey:
      - Fixed and improved a number of display forms.
      - Made a number of improvements to the documentation text.
      - Fixed the recent breakage in Itt_rfun (removed the ``experimental'' rule
      that Xin have added and removed the unneeded assumption from the original rule).
      

Changes  Path
+3 -4 metaprl/filter/filter/term_grammar.ml
+4 -0 metaprl/lib/words
+1 -0 metaprl/refiner/reflib/dform.mli
+3 -1 metaprl/support/display/base_dform.ml
+9 -4 metaprl/support/display/comment.ml
+2 -2 metaprl/support/display/comment.mli
+13 -9 metaprl/support/display/summary.ml
+18 -18 metaprl/support/tactics/top_conversionals.ml
+29 -13 metaprl/support/tactics/top_tacticals.ml
+1 -1 metaprl/theories/base/base_rewrite.ml
+6 -3 metaprl/theories/base/base_theory.mlz
+4 -4 metaprl/theories/czf/czf_itt_theory.mlz
+1 -1 metaprl/theories/experimental/compile/m_ast.ml
+1 -1 metaprl/theories/experimental/compile/m_doc_x86_codegen.ml
+34 -27 metaprl/theories/experimental/compile/m_ir_ast.ml
+7 -9 metaprl/theories/experimental/compile/m_ra_type.mlz
+3 -0 metaprl/theories/itt/itt_atom.ml
+4 -3 metaprl/theories/itt/itt_equal.ml
+3 -3 metaprl/theories/itt/itt_logic.ml
+1 -10 metaprl/theories/itt/itt_rfun.ml
+17 -17 metaprl/theories/itt/itt_struct.ml
+4 -4 metaprl/theories/itt/itt_theory.ml
+1 -1 metaprl/theories/itt/itt_union.ml

Changes by: Nathaniel Gray (n8gray at caltech.edu)
Date: 2003-09-02 20:39:39 -0700 (Tue, 02 Sep 2003)
Revision: 4912
Log message:

      Build-system changes for PREBUILT_CLIBS option.
      

Changes  Path
+6 -0 metaprl/mk/config.win32
+9 -0 metaprl/mk/make_config.sh

Changes by: Nathaniel Gray (n8gray at caltech.edu)
Date: 2003-09-02 20:40:17 -0700 (Tue, 02 Sep 2003)
Revision: 4913
Log message:

      Build system changes for PREBUILT_CLIBS option.
      

Changes  Path
+3 -1 metaprl/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 00:54:38 -0700 (Wed, 03 Sep 2003)
Revision: 4914
Log message:

      Working on the MetaPRL publications page.
      

Changes  Path
Added metaprl/doc/htmlman/papers/bibtex.txt
Properties metaprl/doc/htmlman/papers/bibtex.txt
Added metaprl/doc/htmlman/papers/default.html
Properties metaprl/doc/htmlman/papers/default.html
Added metaprl/doc/htmlman/papers/derived_rules.html
Properties metaprl/doc/htmlman/papers/derived_rules.html
Added metaprl/doc/htmlman/papers/fast_proving.html
Properties metaprl/doc/htmlman/papers/fast_proving.html
Added metaprl/doc/htmlman/papers/jprover.html
Properties metaprl/doc/htmlman/papers/jprover.html
Added metaprl/doc/htmlman/papers/markov.html
Properties metaprl/doc/htmlman/papers/markov.html
Added metaprl/doc/htmlman/papers/metaprl.html
Properties metaprl/doc/htmlman/papers/metaprl.html
Added metaprl/doc/htmlman/papers/mp-index.html
Properties metaprl/doc/htmlman/papers/mp-index.html
Added metaprl/doc/htmlman/papers/mp-papers.html
Properties metaprl/doc/htmlman/papers/mp-papers.html
Added metaprl/doc/htmlman/papers/quotients.html
Properties metaprl/doc/htmlman/papers/quotients.html
Added metaprl/doc/htmlman/papers/thesis.html
Properties metaprl/doc/htmlman/papers/thesis.html

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-03 14:34:13 -0700 (Wed, 03 Sep 2003)
Revision: 4915
Log message:

      Copy files from the $(PREBUILT_CLIBS) directory.
      

Changes  Path
+1 -3 metaprl/OMakefile
+34 -29 metaprl/clib/OMakefile
+1 -1 metaprl/mllib/weak_memo.ml
+1 -0 metaprl/support/shell/shell.ml
+2 -0 metaprl/support/shell/shell.mli
+8 -25 metaprl/theories/base/base_rewrite.ml
+1 -11 metaprl/theories/itt/itt_int_base.mli
+1 -19 metaprl/theories/itt/itt_int_ext.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 15:47:35 -0700 (Wed, 03 Sep 2003)
Revision: 4916
Log message:

      Disable the display of cache status for now.
      

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

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-03 17:24:37 -0700 (Wed, 03 Sep 2003)
Revision: 4917
Log message:

      A newer config.win32
      

Changes  Path
+5 -5 metaprl/mk/config.win32

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-03 17:26:43 -0700 (Wed, 03 Sep 2003)
Revision: 4918
Log message:

      Updated the .INCLUDE lines.
      

Changes  Path
+2 -2 metaprl/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 18:09:20 -0700 (Wed, 03 Sep 2003)
Revision: 4919
Log message:

      - Adding TPHOLs cat B papers.
      - Adding PDF and PS for the TPHOLs cat A system description.
      

Changes  Path
Added metaprl/doc/htmlman/papers/arith.html
Properties metaprl/doc/htmlman/papers/arith.html
+0 -1 metaprl/doc/htmlman/papers/derived_rules.html
+0 -1 metaprl/doc/htmlman/papers/fast_proving.html
Added metaprl/doc/htmlman/papers/formalaa.html
Properties metaprl/doc/htmlman/papers/formalaa.html
+0 -1 metaprl/doc/htmlman/papers/jprover.html
+0 -1 metaprl/doc/htmlman/papers/markov.html
+3 -2 metaprl/doc/htmlman/papers/metaprl.html
+10 -0 metaprl/doc/htmlman/papers/mp-papers.html
+0 -1 metaprl/doc/htmlman/papers/quotients.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 18:47:39 -0700 (Wed, 03 Sep 2003)
Revision: 4920
Log message:

      I think I solved the problem with regenerating mk/config!
      

Changes  Path
+2 -3 metaprl/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 18:54:14 -0700 (Wed, 03 Sep 2003)
Revision: 4921
Log message:

      Better comments.
      

Changes  Path
+14 -3 metaprl/mk/make_config.sh

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 19:46:38 -0700 (Wed, 03 Sep 2003)
Revision: 4922
Log message:

      Added Alexei's dependent intersection paper.
      

Changes  Path
Added metaprl/doc/htmlman/papers/dinter.html
Properties metaprl/doc/htmlman/papers/dinter.html
+1 -1 metaprl/doc/htmlman/papers/fast_proving.html
+4 -6 metaprl/doc/htmlman/papers/markov.html
+5 -0 metaprl/doc/htmlman/papers/mp-papers.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 19:54:03 -0700 (Wed, 03 Sep 2003)
Revision: 4923
Log message:

      Adding ISSRE paper (without any abstract or electronic version for now).
      

Changes  Path
+4 -0 metaprl/doc/htmlman/papers/mp-papers.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 20:18:06 -0700 (Wed, 03 Sep 2003)
Revision: 4924
Log message:

      Added Jason's CADE system discription. I've added a link to the Springer's site
      (with the PDF of Jason's paper), but no local electronic copies. Jason, do
      you have any electronic copies we can put on files.metaprl.org?
      

Changes  Path
+20 -0 metaprl/doc/htmlman/papers/bibtex.txt
Added metaprl/doc/htmlman/papers/distributed.html
Properties metaprl/doc/htmlman/papers/distributed.html
+10 -0 metaprl/doc/htmlman/papers/mp-papers.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 20:38:41 -0700 (Wed, 03 Sep 2003)
Revision: 4925
Log message:

      Added the original Nuprl-Light paper.
      

Changes  Path
+1 -1 metaprl/doc/htmlman/papers/distributed.html
+16 -5 metaprl/doc/htmlman/papers/mp-papers.html
Added metaprl/doc/htmlman/papers/nuprl-light.html
Properties metaprl/doc/htmlman/papers/nuprl-light.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 20:58:25 -0700 (Wed, 03 Sep 2003)
Revision: 4926
Log message:

      Adding the paper on FOrmal Design Environment
      Adding the papers page to the MetaPRL navigation.
      

Changes  Path
+1 -0 metaprl/doc/htmlman/developer-guide/mp-index.html
+1 -0 metaprl/doc/htmlman/framework/mp-index.html
+1 -0 metaprl/doc/htmlman/mp-index.html
Added metaprl/doc/htmlman/papers/fde.html
Properties metaprl/doc/htmlman/papers/fde.html
+6 -2 metaprl/doc/htmlman/papers/mp-papers.html
+1 -0 metaprl/doc/htmlman/system/mp-index.html
+1 -0 metaprl/doc/htmlman/tutorial/mp-index.html
+1 -0 metaprl/doc/htmlman/user-guide/mp-index.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-03 21:07:56 -0700 (Wed, 03 Sep 2003)
Revision: 4927
Log message:

      Adding the MERLIN paper.
      
      Jason, do you have any bibliographical information for this one? Thanks!
      

Changes  Path
Added metaprl/doc/htmlman/papers/compiler1.html
Properties metaprl/doc/htmlman/papers/compiler1.html
+5 -0 metaprl/doc/htmlman/papers/mp-papers.html

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-03 21:11:28 -0700 (Wed, 03 Sep 2003)
Revision: 4928
Log message:

      Implemented versioning, check_config, etc.
      
      CAUTION: you will need the latest version of omake to do this, since
      it defines new functions needed during versioning.
      

Changes  Path
+31 -2 metaprl/OMakefile
+2 -2 metaprl/mk/defaults

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-04 03:05:41 -0700 (Thu, 04 Sep 2003)
Revision: 4929
Log message:

      Changed the Refine.extract to contain a pointer to the sentinel used to
      create the extract, which in turn contains a pointer to the refiner.
      Using these pointer, we garantee that in any extract all parts were
      created using the same sentinel and that a derived rule can only be justified
      by an extract that was created using the appropriate refiner.
      
      Note - this may cause problems when construction extract from a distributed proof,
      as Refine module now expects things to be pointer-equal...
      

Changes  Path
+113 -202 metaprl/refiner/refiner/refine.ml
+13 -4 metaprl/refiner/refsig/refine_sig.ml
+4 -4 metaprl/support/shell/shell.ml
+1 -1 metaprl/tactics/proof/proof_boot.ml
+2 -0 metaprl/tactics/proof/tactic_boot.ml
+1 -0 metaprl/tactics/proof/tactic_boot_sig.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-04 04:23:25 -0700 (Thu, 04 Sep 2003)
Revision: 4930
Log message:

      I have implemented parsing of the proofs and extraction of the information
      on which axioms a certain proof depends (producing an error message if
      a proof uses - directly or indirectly - a derived item that was not fully
      proven). Note that the scanning is done xon the lowest possible level (Refine
      module), so the results are high-confidence.
      

Changes  Path
+107 -33 metaprl/refiner/refiner/refine.ml
+9 -5 metaprl/refiner/refsig/refine_sig.ml
+42 -26 metaprl/support/shell/shell.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-04 14:32:58 -0700 (Thu, 04 Sep 2003)
Revision: 4931
Log message:

      Added an alias for "it" - "trivial".
      

Changes  Path
+3 -0 metaprl/theories/base/base_trivial.ml
+1 -0 metaprl/theories/base/base_trivial.mli

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-04 16:00:38 -0700 (Thu, 04 Sep 2003)
Revision: 4932
Log message:

      Killing the PREBUILT_CLIBS flag.
      

Changes  Path
+29 -34 metaprl/clib/OMakefile
+0 -6 metaprl/mk/config.win32
+0 -12 metaprl/mk/make_config.sh

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-04 17:14:55 -0700 (Thu, 04 Sep 2003)
Revision: 4933
Log message:

      This fixed bug 32 - "omake clean" now really cleans everything in needs to clean
      and "omake realclean" now only prompts about .omakedb, and mk/config* files.
      

Changes  Path
+4 -3 metaprl/OMakefile
+1 -1 metaprl/filter/phobos/OMakefile
+10 -1 metaprl/mllib/OMakefile
+7 -3 metaprl/refiner/reflib/OMakefile
+1 -3 metaprl/refiner/term_ds/OMakefile
+1 -3 metaprl/refiner/term_gen/OMakefile
+1 -3 metaprl/refiner/term_std/OMakefile
+0 -3 metaprl/tactics/proof/OMakefile
+1 -1 metaprl/theories/base/Makefile
+4 -4 metaprl/theories/experimental/compile/OMakefile
+1 -3 metaprl/theories/fir/OMakefile
+1 -1 metaprl/theories/tptp/OMakefile
+1 -1 metaprl/util/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 00:10:12 -0700 (Fri, 05 Sep 2003)
Revision: 4935
Log message:

      - Changed the way mp_version.ml is hapdled to be a -pp hack on a static .ml file.
      This will likely break Win32 build! :-(
      
      - Added checks that make sure that the extract passed into Refiner really proves
      what it was supposed to prove. This requires moving a HACK that creates sequent
      representation of rewrites into the Refine module :-(
      

Changes  Path
+4 -4 metaprl/OMakefile
+10 -14 metaprl/editor/ml/OMakefile
Added metaprl/editor/ml/mp_version.ml
Properties metaprl/editor/ml/mp_version.ml
+3 -0 metaprl/filter/filter/prlcomp.ml
+35 -31 metaprl/refiner/refiner/refine.ml
+4 -0 metaprl/refiner/refsig/refine_sig.ml
+0 -12 metaprl/support/shell/shell_rewrite.ml

Changes by: ( at unknown.email)
Date: 2003-09-05 00:10:12 -0700 (Fri, 05 Sep 2003)
Revision: 4936
Log message:

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

Changes  Path
Copied metaprl-branches/WeakMemoGCexpr
Deleted metaprl-branches/WeakMemoGCexpr/BUGS
Deleted metaprl-branches/WeakMemoGCexpr/Makefile
Deleted metaprl-branches/WeakMemoGCexpr/OMakefile
Deleted metaprl-branches/WeakMemoGCexpr/OMakeroot
Deleted metaprl-branches/WeakMemoGCexpr/README
Deleted metaprl-branches/WeakMemoGCexpr/README.MACOSX
Deleted metaprl-branches/WeakMemoGCexpr/README.WIN32
Deleted metaprl-branches/WeakMemoGCexpr/doc/Makefile
Deleted metaprl-branches/WeakMemoGCexpr/doc/itt_quickref.txt
Deleted metaprl-branches/WeakMemoGCexpr/doc/latex/theories/Makefile
Deleted metaprl-branches/WeakMemoGCexpr/doc/latex/theories/README
Deleted metaprl-branches/WeakMemoGCexpr/doc/latex/theories/all-theories.tex
Deleted metaprl-branches/WeakMemoGCexpr/doc/latex/theories/book2.tex
Deleted metaprl-branches/WeakMemoGCexpr/doc/resources_spec.txt
Deleted metaprl-branches/WeakMemoGCexpr/doc/status.tex
Deleted metaprl-branches/WeakMemoGCexpr/doc/weblintrc
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/.gdbinit
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/BOO008-3.p
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/GEN.p
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/Makefile
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/OMakefile
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/QUICKSTART
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp_top.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp_top.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mp_version.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpconfig
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpdebug
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpdebug-top
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpgossip
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpopt
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpserver
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mptop
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mptop.bat
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpxterm
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/mpxterm-large
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_eval.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_eval.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_jprover.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_jprover.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_run.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_run.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/nuprl_sig.mlz
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_http.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_http.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_mp.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_mp.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_p4.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/shell_p4.mli
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/tutorial.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/tutorial_itt.ml
Deleted metaprl-branches/WeakMemoGCexpr/editor/ml/x.ml

Changes by: ( at unknown.email)
Date: 2003-09-05 00:10:12 -0700 (Fri, 05 Sep 2003)
Revision: 4937
Log message:

      This commit was manufactured by cvs2svn to create branch
      'new-then_Lab_T-implementation'.

Changes  Path
Copied metaprl-branches/new-then_Lab_T-implementation
Deleted metaprl-branches/new-then_Lab_T-implementation/BUGS
Deleted metaprl-branches/new-then_Lab_T-implementation/Makefile
Deleted metaprl-branches/new-then_Lab_T-implementation/OMakefile
Deleted metaprl-branches/new-then_Lab_T-implementation/OMakeroot
Deleted metaprl-branches/new-then_Lab_T-implementation/README
Deleted metaprl-branches/new-then_Lab_T-implementation/README.MACOSX
Deleted metaprl-branches/new-then_Lab_T-implementation/README.WIN32
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/Makefile
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/OMakefile
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/display_term.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/display_term.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/mptop.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/mptop.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/mux_channel.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/mux_channel.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/package_info.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/package_info.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/package_sig.mlz
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/proof_edit.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/proof_edit.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/recursive_lock.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/recursive_lock.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_p4_sig.mlz
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_package.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_package.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_root.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_root.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_rule.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_rule.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_sig.mlz
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_state.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_state.mli
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_tex.ml
Deleted metaprl-branches/new-then_Lab_T-implementation/support/shell/shell_tex.mli

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-05 07:43:00 -0700 (Fri, 05 Sep 2003)
Revision: 4938
Log message:

      Turn off threads.  We need them only for the threaded refiner and the
      http server.  Sometime, we should figure out how to get the build
      system to enable/disable threads.
      

Changes  Path
+4 -5 metaprl/OMakefile
+2 -1 metaprl/editor/ml/shell_http.ml
+1 -0 metaprl/mllib/http_server.ml
+2 -1 metaprl/mllib/remote_queue_null.ml
+1 -0 metaprl/refiner/reflib/term_copy2_weak.ml
+2 -1 metaprl/support/shell/mux_channel.ml
+1 -0 metaprl/support/shell/package_info.ml
+1 -0 metaprl/support/shell/proof_edit.ml
+1 -0 metaprl/support/shell/recursive_lock.ml
+1 -0 metaprl/support/shell/shell.ml
+1 -0 metaprl/support/shell/shell_state.ml
+2 -1 metaprl/tactics/proof/proof_boot.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2003-09-05 08:30:16 -0700 (Fri, 05 Sep 2003)
Revision: 4939
Log message:

      MetaPRL compiles and runs on Cygwin.
      Now, I need to figure out the font situation.
      

Changes  Path
+11 -8 metaprl/editor/ml/OMakefile
+2 -1 metaprl/util/ocamldep.mll

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 10:37:53 -0700 (Fri, 05 Sep 2003)
Revision: 4940
Log message:

      Extraction finally works!!!!!!!!!!
      

Changes  Path
+6 -7 metaprl/editor/ml/Makefile
+1 -0 metaprl/filter/base/filter_type.ml
+7 -7 metaprl/filter/base/filter_util.ml
+29 -7 metaprl/filter/filter/filter_parse.ml
+17 -5 metaprl/filter/filter/term_grammar.ml
+1 -1 metaprl/mk/defaults
+173 -60 metaprl/refiner/refiner/refine.ml
+13 -1 metaprl/refiner/refsig/refine_sig.ml
+2 -2 metaprl/refiner/refsig/rewrite_sig.ml
+1 -0 metaprl/refiner/refsig/term_meta_sig.ml
+1 -1 metaprl/refiner/rewrite/rewrite.ml
+38 -31 metaprl/refiner/rewrite/rewrite_compile_redex.ml
+5 -0 metaprl/refiner/rewrite/rewrite_compile_redex.mli
+1 -0 metaprl/support/shell/shell_state.ml
+2 -0 metaprl/theories/itt/itt_test.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 15:25:56 -0700 (Fri, 05 Sep 2003)
Revision: 4941
Log message:

      Start with empty MPFILES.
      

Changes  Path
+1 -26 metaprl/theories/tutorial/OMakefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 17:47:10 -0700 (Fri, 05 Sep 2003)
Revision: 4942
Log message:

      For tutorial, refreshing most .prla files in base and itt.
      

Changes  Path
+2458 -2483 metaprl/theories/base/base_rewrite.prla
+3611 -3830 metaprl/theories/itt/ctt_markov.prla
+1796 -1706 metaprl/theories/itt/itt_antiquotient.prla
+3135 -3552 metaprl/theories/itt/itt_bintree.prla
Deleted metaprl/theories/itt/itt_bugs.prla
+2000 -2309 metaprl/theories/itt/itt_bunion.prla
+13269 -12973 metaprl/theories/itt/itt_cyclic_group.prla
+1682 -1901 metaprl/theories/itt/itt_decidable.prla
+3341 -3477 metaprl/theories/itt/itt_derive.prla
+5067 -5234 metaprl/theories/itt/itt_dprod.prla
+7984 -8383 metaprl/theories/itt/itt_equal.prla
+2077 -2026 metaprl/theories/itt/itt_esquash.prla
+1411 -1314 metaprl/theories/itt/itt_ext_equal.prla
+6494 -6904 metaprl/theories/itt/itt_grouplikeobj.prla
+7271 -7110 metaprl/theories/itt/itt_nat.prla
+1010 -1002 metaprl/theories/itt/itt_pointwise.prla
+1813 -2000 metaprl/theories/itt/itt_prod.prla
+14095 -11878 metaprl/theories/itt/itt_quotient_group.prla
+2043 -2261 metaprl/theories/itt/itt_record_label.prla
+2251 -2278 metaprl/theories/itt/itt_record_label0.prla
+7024 -7340 metaprl/theories/itt/itt_rfun.prla
+2166 -2300 metaprl/theories/itt/itt_set.prla
+1552 -1828 metaprl/theories/itt/itt_singleton.prla
+5973 -5419 metaprl/theories/itt/itt_sort.prla
+6352 -8141 metaprl/theories/itt/itt_sortedtree.prla
+2738 -2833 metaprl/theories/itt/itt_squiggle.prla
+3883 -4889 metaprl/theories/itt/itt_subset2.prla
+3858 -3956 metaprl/theories/itt/itt_subtype.prla
+1163 -1381 metaprl/theories/itt/itt_tsquash.prla
+1313 -1365 metaprl/theories/itt/itt_unit.prla
+1381 -1301 metaprl/theories/itt/itt_void.prla
+3644 -3788 metaprl/theories/itt/itt_w.prla
+2198 -2596 metaprl/theories/itt/itt_well_founded.prla

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 17:53:19 -0700 (Fri, 05 Sep 2003)
Revision: 4943
Log message:

      Killing the old tutorial, replacing all links to it with links to
      http://files.metaprl.org/papers/tutorial1.pdf
      

Changes  Path
+1 -1 metaprl/doc/htmlman/developer-guide/mp-index.html
+1 -1 metaprl/doc/htmlman/framework/mp-index.html
+1 -1 metaprl/doc/htmlman/mp-index.html
+1 -1 metaprl/doc/htmlman/mp.html
+1 -1 metaprl/doc/htmlman/papers/mp-index.html
+2 -1 metaprl/doc/htmlman/seminars.html
+1 -1 metaprl/doc/htmlman/system/mp-index.html
+1 -1 metaprl/doc/htmlman/user-guide/mp-index.html

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 17:54:11 -0700 (Fri, 05 Sep 2003)
Revision: 4944
Log message:

      No tutorial anymore.
      

Changes  Path
+0 -19 metaprl/doc/Makefile

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 18:06:59 -0700 (Fri, 05 Sep 2003)
Revision: 4945
Log message:

      Version 0.9.5!!!
      

Changes  Path
+1 -1 metaprl/mk/defaults

Changes by: ( at unknown.email)
Date: 2003-09-05 18:06:59 -0700 (Fri, 05 Sep 2003)
Revision: 4946
Log message:

      This commit was manufactured by cvs2svn to create tag
      'metaprl-0_9_5'.

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

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-05 18:15:18 -0700 (Fri, 05 Sep 2003)
Revision: 4947
Log message:

      The version 0.9.5 is now tagged with CVS tag "metaprl_0_9_5" and I am
      changing the version string to 0.9.5+ to make sure that only this exact
      version of MetaPRL calls itself 0.9.5.
      

Changes  Path
+1 -1 metaprl/mk/defaults

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2003-09-09 03:28:06 -0700 (Tue, 09 Sep 2003)
Revision: 4948
Log message:

      - NCURSES should be on by default
      - Add a comment to mk/config to let people know that NCURSES should
      be enabled in order for READLINE to work
      

Changes  Path
+1 -1 metaprl/OMakefile
+2 -0 metaprl/mk/make_config.sh
+3 -0 metaprl/mk/preface
+1 -1 metaprl/theories/tutorial/OMakefile