]> matita.cs.unibo.it Git - helm.git/log
helm.git
15 years agoauto was compiraing lazy proof terms with = ... fixed
Enrico Tassi [Fri, 26 Sep 2008 09:27:51 +0000 (09:27 +0000)]
auto was compiraing lazy proof terms with = ... fixed

15 years agoiremoved call to auto
Enrico Tassi [Fri, 26 Sep 2008 09:05:17 +0000 (09:05 +0000)]
iremoved call to auto

15 years agocommented out a line that was making the file fail
Enrico Tassi [Fri, 26 Sep 2008 08:43:35 +0000 (08:43 +0000)]
commented out a line that was making the file fail

15 years agolazy proof term to increase sharing and decrease memory consumption.
Enrico Tassi [Fri, 26 Sep 2008 08:03:47 +0000 (08:03 +0000)]
lazy proof term to increase sharing and decrease memory consumption.
I hope nobody was comparing grafite-statuses with ocaml polymorphic =

15 years agosome work
Enrico Tassi [Fri, 26 Sep 2008 08:00:53 +0000 (08:00 +0000)]
some work

15 years ago...
Enrico Tassi [Thu, 25 Sep 2008 16:59:36 +0000 (16:59 +0000)]
...

15 years ago...
Enrico Tassi [Thu, 25 Sep 2008 16:59:31 +0000 (16:59 +0000)]
...

15 years ago...
Enrico Tassi [Thu, 25 Sep 2008 16:10:27 +0000 (16:10 +0000)]
...

15 years agobeta expand
Enrico Tassi [Thu, 25 Sep 2008 15:39:26 +0000 (15:39 +0000)]
beta expand

15 years ago...
Claudio Sacerdoti Coen [Thu, 25 Sep 2008 14:59:47 +0000 (14:59 +0000)]
...

15 years ago...
Claudio Sacerdoti Coen [Thu, 25 Sep 2008 14:52:36 +0000 (14:52 +0000)]
...

15 years ago...
Enrico Tassi [Thu, 25 Sep 2008 11:44:40 +0000 (11:44 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 16:59:37 +0000 (16:59 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 16:37:42 +0000 (16:37 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 15:59:52 +0000 (15:59 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 14:48:49 +0000 (14:48 +0000)]
...

15 years agoadded skip function
Enrico Tassi [Wed, 24 Sep 2008 14:48:36 +0000 (14:48 +0000)]
added skip function

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 14:48:23 +0000 (14:48 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 11:25:22 +0000 (11:25 +0000)]
...

15 years ago...
Enrico Tassi [Wed, 24 Sep 2008 11:09:12 +0000 (11:09 +0000)]
...

15 years agonew iterator
Enrico Tassi [Mon, 22 Sep 2008 15:35:20 +0000 (15:35 +0000)]
new iterator

15 years agonew small devel
Ferruccio Guidi [Mon, 22 Sep 2008 12:19:29 +0000 (12:19 +0000)]
new small devel

15 years agofixed auto invocation
Enrico Tassi [Mon, 22 Sep 2008 11:30:58 +0000 (11:30 +0000)]
fixed auto invocation

15 years agowe commented some of the debug pps rather than removing them :)
Ferruccio Guidi [Sun, 21 Sep 2008 12:32:38 +0000 (12:32 +0000)]
we commented some of the debug pps rather than removing them :)

15 years agosnapshot
Enrico Tassi [Fri, 19 Sep 2008 16:44:36 +0000 (16:44 +0000)]
snapshot

15 years agosnapshot, cicMsubst compiles
Enrico Tassi [Fri, 19 Sep 2008 16:36:32 +0000 (16:36 +0000)]
snapshot, cicMsubst compiles

15 years agomore abstract discrimination tree
Enrico Tassi [Fri, 19 Sep 2008 12:47:23 +0000 (12:47 +0000)]
more abstract discrimination tree

15 years agoadded list_seq
Enrico Tassi [Fri, 19 Sep 2008 12:47:09 +0000 (12:47 +0000)]
added list_seq

15 years agosnapshot
Enrico Tassi [Fri, 19 Sep 2008 11:35:37 +0000 (11:35 +0000)]
snapshot

15 years agobetter abstraction to allow 1 discrimination tree implementation for both the
Enrico Tassi [Fri, 19 Sep 2008 09:16:21 +0000 (09:16 +0000)]
better abstraction to allow 1 discrimination tree implementation for both the
new and the old CIC

15 years agonew discrimination tree
Enrico Tassi [Fri, 19 Sep 2008 08:20:03 +0000 (08:20 +0000)]
new discrimination tree

15 years agoRevised discrimination tree implementation:
Enrico Tassi [Fri, 19 Sep 2008 08:11:53 +0000 (08:11 +0000)]
Revised discrimination tree implementation:

- code size reduced, looking for unifiables or generalizations is
  almost the same and do not internally work with the query term,
  but its path representation that is now decorated with arieties to
  recover the tree structure when needed (jump to the sibling...)

- works with partial instantiation (no more global ariety list, but
  local to application heads). Stupid example:

  query: fold plus [] 0 = 0
  ==?==
  tree: fold ? [] 0 = 0

  since the 2nd arg is ? we skip the query subterm rooted in plus,
  but if plus is considered of ariety 2, we fail unifiing the following
  terms (we skip [] and 0 reaching the second 0 that is unified with
  [] and fails).

- term -> path string function fixed to clen up the input term, no more
  "FIXME: the trie received invalid term". Here there is room for improvements
  especially on beta redexes and terms beginning with an abstraction, but we
  need the substitutions operation, we should move the file elsewhere

- Big change:
  - if the query term is a meta, then the whole content of the tree is returned
  - in paramodulation this is dangerous, thus we added a small check in
    the paramodulation code (eq_indexing) instead of making the discrimination
    tree behave in a nasty way
  - the new implementation returns the same set of candidates on all test
    TPTP/Veloci and library/ (except for the aforementioned corner case).

15 years agomore comments and compare function for URI exported
Enrico Tassi [Fri, 19 Sep 2008 07:57:25 +0000 (07:57 +0000)]
more comments and compare function for URI exported

15 years agoremoved debug pps
Enrico Tassi [Fri, 19 Sep 2008 07:56:27 +0000 (07:56 +0000)]
removed debug pps

15 years agonew reorganization
Enrico Tassi [Fri, 19 Sep 2008 07:55:24 +0000 (07:55 +0000)]
new reorganization

15 years agofixed
Enrico Tassi [Fri, 19 Sep 2008 07:53:50 +0000 (07:53 +0000)]
fixed

15 years agoA temporary patch to demodulation theorem.
Andrea Asperti [Fri, 19 Sep 2008 06:41:27 +0000 (06:41 +0000)]
A temporary patch to demodulation theorem.

15 years agoremoved debug pps
Enrico Tassi [Thu, 18 Sep 2008 15:03:21 +0000 (15:03 +0000)]
removed debug pps

15 years agoapplyTransformation: improved error detection
Ferruccio Guidi [Thu, 18 Sep 2008 14:44:21 +0000 (14:44 +0000)]
applyTransformation: improved error detection
library: new depend and svn:ignore

15 years agolibrarian: improved error detection, bug fix in time comparison functions: now the...
Ferruccio Guidi [Thu, 18 Sep 2008 14:36:52 +0000 (14:36 +0000)]
librarian: improved error detection, bug fix in time comparison functions: now the object files are considered in the correct compilation order even if they mtime is the same :)
Procedural: improved error detection

15 years agoppterm_in_named_context removed in favour of the high-level pretty printer.
Claudio Sacerdoti Coen [Thu, 18 Sep 2008 12:04:47 +0000 (12:04 +0000)]
ppterm_in_named_context removed in favour of the high-level pretty printer.
Much nicer error messages :-)

15 years agoMajor reordering of theorems in the appropriate files.
Claudio Sacerdoti Coen [Thu, 18 Sep 2008 11:29:35 +0000 (11:29 +0000)]
Major reordering of theorems in the appropriate files.

15 years agoIn case of coercion to Prod, the error message shown is that _after_ the
Claudio Sacerdoti Coen [Thu, 18 Sep 2008 11:13:39 +0000 (11:13 +0000)]
In case of coercion to Prod, the error message shown is that _after_ the
coercion. In case of multiple coercions, only one error is shown.

15 years agofixed script
Enrico Tassi [Thu, 18 Sep 2008 10:31:20 +0000 (10:31 +0000)]
fixed script

15 years agoPrecedence level of \downarrow changed to match that of the binary one.
Claudio Sacerdoti Coen [Thu, 18 Sep 2008 09:17:02 +0000 (09:17 +0000)]
Precedence level of \downarrow changed to match that of the binary one.

15 years agosnapshot
Enrico Tassi [Wed, 17 Sep 2008 16:26:08 +0000 (16:26 +0000)]
snapshot

15 years ago...
Enrico Tassi [Wed, 17 Sep 2008 10:22:57 +0000 (10:22 +0000)]
...

15 years agoformal_map now defined
Claudio Sacerdoti Coen [Tue, 16 Sep 2008 19:55:56 +0000 (19:55 +0000)]
formal_map now defined

15 years agoDefinition of formal_topologies.
Claudio Sacerdoti Coen [Tue, 16 Sep 2008 15:32:29 +0000 (15:32 +0000)]
Definition of formal_topologies.

15 years ago...
Enrico Tassi [Tue, 16 Sep 2008 10:23:35 +0000 (10:23 +0000)]
...

15 years ago...
Enrico Tassi [Tue, 16 Sep 2008 10:18:44 +0000 (10:18 +0000)]
...

15 years ago...
Enrico Tassi [Tue, 16 Sep 2008 10:15:31 +0000 (10:15 +0000)]
...

15 years ago...
Enrico Tassi [Tue, 16 Sep 2008 10:11:36 +0000 (10:11 +0000)]
...

15 years agonew directory for the newGeneration refiner
Enrico Tassi [Tue, 16 Sep 2008 10:06:51 +0000 (10:06 +0000)]
new directory for the newGeneration refiner

15 years agoBTop is a category.
Claudio Sacerdoti Coen [Mon, 15 Sep 2008 20:26:34 +0000 (20:26 +0000)]
BTop is a category.

15 years agoold bug in mtime computation fixed
Ferruccio Guidi [Fri, 12 Sep 2008 18:11:44 +0000 (18:11 +0000)]
old bug in mtime computation fixed

15 years ago...
Claudio Sacerdoti Coen [Fri, 12 Sep 2008 15:51:14 +0000 (15:51 +0000)]
...

15 years ago1) as usual, I took the reverse notation for composition.
Claudio Sacerdoti Coen [Fri, 12 Sep 2008 15:22:31 +0000 (15:22 +0000)]
1) as usual, I took the reverse notation for composition.
   "fixed" according to the internatinal tradition
2) partial proof that basic_topologies form a category

15 years agohelm mailing list moved to cs.unibo.it
Claudio Sacerdoti Coen [Thu, 11 Sep 2008 14:24:15 +0000 (14:24 +0000)]
helm mailing list moved to cs.unibo.it

15 years agowe skip discharging on matita opbjects (they don't have exp. variables)
Ferruccio Guidi [Wed, 10 Sep 2008 19:05:54 +0000 (19:05 +0000)]
we skip discharging on matita opbjects (they don't have exp. variables)

15 years agocicDischarge, Procedural: we improved debugging and added some time stamps
Ferruccio Guidi [Wed, 10 Sep 2008 19:03:21 +0000 (19:03 +0000)]
cicDischarge, Procedural: we improved debugging and added some time stamps
librarian.ml: new algorithm for sorting sources according to compilation order

15 years agoreverted auto experiment
Enrico Tassi [Wed, 10 Sep 2008 13:10:27 +0000 (13:10 +0000)]
reverted auto experiment

15 years agoAGAIN A TEST
Enrico Tassi [Wed, 10 Sep 2008 13:02:09 +0000 (13:02 +0000)]
AGAIN A TEST

15 years agoCOMMIT TO JUST RUN A BENCH, SHOULD BE REVERTED ASAP (auto run after every tactic)
Enrico Tassi [Wed, 10 Sep 2008 09:17:16 +0000 (09:17 +0000)]
COMMIT TO JUST RUN A BENCH, SHOULD BE REVERTED ASAP (auto run after every tactic)

15 years agoReordering of lemmas in proper places.
Claudio Sacerdoti Coen [Tue, 9 Sep 2008 17:13:55 +0000 (17:13 +0000)]
Reordering of lemmas in proper places.

15 years agoConcrete spaces do form a category, after all :-)
Claudio Sacerdoti Coen [Tue, 9 Sep 2008 15:34:07 +0000 (15:34 +0000)]
Concrete spaces do form a category, after all :-)

15 years agosome work to make tries "printable", fixed comparison of constants in
Enrico Tassi [Tue, 9 Sep 2008 12:07:45 +0000 (12:07 +0000)]
some work to make tries "printable", fixed comparison of constants in
paramodulation, added (but commented) a call to auto after every tactic
invocation to test it on the whole library.

15 years agoGetting closer thanks to more technical arrangements.
Claudio Sacerdoti Coen [Tue, 9 Sep 2008 09:41:23 +0000 (09:41 +0000)]
Getting closer thanks to more technical arrangements.

15 years ago...
Claudio Sacerdoti Coen [Mon, 8 Sep 2008 13:49:15 +0000 (13:49 +0000)]
...

15 years ago...
Enrico Tassi [Mon, 8 Sep 2008 11:42:58 +0000 (11:42 +0000)]
...

15 years agoConcrete spaces now defined.
Claudio Sacerdoti Coen [Mon, 8 Sep 2008 11:41:23 +0000 (11:41 +0000)]
Concrete spaces now defined.

15 years agoCase c1 t1 vs c2 t2 where c1 and c2 are not splitted and t1 and t2
Claudio Sacerdoti Coen [Mon, 8 Sep 2008 11:41:10 +0000 (11:41 +0000)]
Case c1 t1 vs c2 t2 where c1 and c2 are not splitted and t1 and t2
are rigid was not handled correctly. Fixed.

15 years agocicDischarge: we still have some problems here. Some fixes
Ferruccio Guidi [Sun, 7 Sep 2008 17:09:19 +0000 (17:09 +0000)]
cicDischarge: we still have some problems here. Some fixes
cicTypeChecker: added some debug prints (commented for now)
applyTransformation.ml: improved error detection

15 years agowe always save the discharged object for future reference
Ferruccio Guidi [Sat, 6 Sep 2008 15:02:42 +0000 (15:02 +0000)]
we always save the discharged object for future reference

15 years agowe have to remove the Num directory :)
Ferruccio Guidi [Fri, 5 Sep 2008 18:40:08 +0000 (18:40 +0000)]
we have to remove the Num directory :)

15 years agotranscript: we now check for non-existing objects
Ferruccio Guidi [Fri, 5 Sep 2008 18:37:01 +0000 (18:37 +0000)]
transcript: we now check for non-existing objects
procedural/Coq: we now generate from ufficial 8.0pl2
                that does not have the Num directory

15 years ago...
Enrico Tassi [Fri, 5 Sep 2008 08:48:21 +0000 (08:48 +0000)]
...

15 years agounification+pullback fix. It used to saturate a coercion (generating new metas)
Enrico Tassi [Fri, 5 Sep 2008 08:44:21 +0000 (08:44 +0000)]
unification+pullback fix. It used to saturate a coercion (generating new metas)
but not do any unification steps on them nor using them to build a new term,
thus they were left in the metasenv with no chance to be closed by subsequent
calls to unification. The meets function has been specialized takin in input a
boolean for every direction (left/right) to state if the graph can grow in this
direction and it returns saturated coercions and augmented metasenv only for
the requested directions. Still unclear to me what does it mean to search a non
triangular pullback with a boolean set to false....

15 years agotranscript: improved debuugging facilities
Ferruccio Guidi [Thu, 4 Sep 2008 22:28:14 +0000 (22:28 +0000)]
transcript: improved debuugging facilities
orocedural/Coq: we escaped the non-ASCII7 characters

15 years ago...
Claudio Sacerdoti Coen [Thu, 4 Sep 2008 16:55:33 +0000 (16:55 +0000)]
...

15 years agowe forgot to delete the old CoRN mma files :)
Ferruccio Guidi [Thu, 4 Sep 2008 16:20:57 +0000 (16:20 +0000)]
we forgot to delete the old CoRN mma files :)

15 years agotranscript: we improved the parser/lexer to read the scripts of the standard
Ferruccio Guidi [Thu, 4 Sep 2008 16:08:25 +0000 (16:08 +0000)]
transcript: we improved the parser/lexer to read the scripts of the standard
            library of coq. Coercion extraction is disabled for now.
contribs/procedural: new root for mma files generated by transcript.
                     We now have the mma files of the cic:/Coq/* objects

15 years agofixed case of divergence
Enrico Tassi [Thu, 4 Sep 2008 15:46:08 +0000 (15:46 +0000)]
fixed case of divergence

15 years agofixed notation
Enrico Tassi [Thu, 4 Sep 2008 14:30:43 +0000 (14:30 +0000)]
fixed notation

15 years agorestored
Enrico Tassi [Thu, 4 Sep 2008 14:30:32 +0000 (14:30 +0000)]
restored

15 years ago....
Enrico Tassi [Thu, 4 Sep 2008 13:37:51 +0000 (13:37 +0000)]
....

15 years ago...
Enrico Tassi [Thu, 4 Sep 2008 13:36:50 +0000 (13:36 +0000)]
...

15 years ago...
Claudio Sacerdoti Coen [Thu, 4 Sep 2008 11:56:03 +0000 (11:56 +0000)]
...

15 years agoremoved debug pps
Enrico Tassi [Thu, 4 Sep 2008 10:41:45 +0000 (10:41 +0000)]
removed debug pps

15 years agocomparison function fixed
Enrico Tassi [Thu, 4 Sep 2008 10:38:48 +0000 (10:38 +0000)]
comparison function fixed

15 years ago...
Enrico Tassi [Thu, 4 Sep 2008 10:19:22 +0000 (10:19 +0000)]
...

15 years agoremoved old non-working file
Enrico Tassi [Thu, 4 Sep 2008 10:03:22 +0000 (10:03 +0000)]
removed old non-working file

15 years agonotation_id were compared using Pervasives.equal this was rarely triggering the
Enrico Tassi [Thu, 4 Sep 2008 09:42:26 +0000 (09:42 +0000)]
notation_id were compared using Pervasives.equal this was rarely triggering the
exception eq_on_functional_values. New implementation of compare using
a camlp5, that only provides an equality function, that is hacked to
return an integer.

15 years agostop running LAMBDA-TYPES as a test, can be reactivated when it will take
Enrico Tassi [Thu, 4 Sep 2008 09:15:12 +0000 (09:15 +0000)]
stop running LAMBDA-TYPES as a test, can be reactivated when it will take
less than one night

15 years agohbox => hvbox in constructor arguments in match patterns.
Claudio Sacerdoti Coen [Thu, 4 Sep 2008 08:26:27 +0000 (08:26 +0000)]
hbox => hvbox in constructor arguments in match patterns.

15 years agoSetoids are now more pervasive.
Claudio Sacerdoti Coen [Wed, 3 Sep 2008 16:22:22 +0000 (16:22 +0000)]
Setoids are now more pervasive.

15 years agoUri ending in '' were not accepted. Fixed.
Claudio Sacerdoti Coen [Tue, 2 Sep 2008 13:59:47 +0000 (13:59 +0000)]
Uri ending in '' were not accepted. Fixed.

15 years agonew debugging option
Claudio Sacerdoti Coen [Mon, 1 Sep 2008 14:40:30 +0000 (14:40 +0000)]
new debugging option

15 years agoRelations are now closer to Sambin's ones. I.e. they range over Types
Claudio Sacerdoti Coen [Sun, 31 Aug 2008 23:43:25 +0000 (23:43 +0000)]
Relations are now closer to Sambin's ones. I.e. they range over Types
and not (sub)sets.

15 years ago...
Enrico Tassi [Thu, 28 Aug 2008 14:10:30 +0000 (14:10 +0000)]
...