Commit Graph

171 Commits

Author SHA1 Message Date
William J. Bowman
0d110dffaf
Cleaned up eliminator reduction and typing 2015-10-02 17:02:48 -04:00
William J. Bowman
fd455b7a07
Reorganized eliminator typing
Typing of eliminators is now entirely in metafunctions. It is easier to
understand, and should lead to more efficient typing. Some of these
functions should be exposed via reflection.
2015-10-01 17:45:37 -04:00
William J. Bowman
bd2e06acce
Removed unused judgment 2015-10-01 16:54:21 -04:00
William J. Bowman
26e5e40ec6
Removed methods-for
Finish reorganization of method type metafunctions
2015-10-01 14:42:30 -04:00
William J. Bowman
47460cf916
More work on organizing method types 2015-10-01 13:09:28 -04:00
William J. Bowman
e69920907d
Reorganizing eliminating typing 2015-10-01 10:41:56 -04:00
William J. Bowman
0ea4c0447b
Removed some Racket code; want this core Redexy 2015-10-01 10:30:52 -04:00
William J. Bowman
5d5ec00052
Comments on more reorg 2015-10-01 00:05:21 -04:00
William J. Bowman
bb86e4fabc
Replaced unnecessary patterns with any
This simplifies reading, and should improve performance
2015-09-30 23:31:34 -04:00
William J. Bowman
1182c477dc
Reorganized context functions; style fixes
* Reorganized, reimplemented, and renamed many functions related to
  contexts (telescopes Ξ and apply context Θ)
* Moved some test suite stuff to the top
* Various style fixes in comments, indentation and such
2015-09-30 23:19:45 -04:00
William J. Bowman
993e51eab9
Reorganizing code, removing explicit reductions
* Reorganizing sections of code to be easier to read. Grouping by
  similar requirements in meta-functions, and trying to reduce
  dependencies between meta-functions.
* Removed explicit reductions from various meta-functions. That should
  be handled by equivalence rules in type-checking.
2015-09-30 22:09:09 -04:00
William J. Bowman
0ff4474bcc
More check-equiv? tests
* check-equiv? now uses default-equiv, for more extensibility
* more tests now uses check-equiv?
2015-09-30 21:38:39 -04:00
William J. Bowman
9eca5d6222
Reindent and renaming
* Renaming Σ and Γ methods to be named more like dictionary functions,
  since Σ and Γ are essentially maps.
* Reindent various bits of code
2015-09-30 17:58:36 -04:00
William J. Bowman
e49cf0c425
fresh-x was broken, and wasn't helping 2015-09-30 17:37:52 -04:00
William J. Bowman
0647b19ee6
fresh-x when generating names; α-equiv testing
* This commit breaks something, not sure why
* Changed all uses of (where .... ,(variable-not-in )) to use (fresh-x)
  instead.
* Defined check-equiv for testing modulo α-equivalence
* Changed many  check-equal? to check-equiv?. Remaining require
  splitting into separate tests, e.g., checking that judgment-form
  returns exactly 1 argument that is check-equiv? ...
2015-09-30 16:39:28 -04:00
William J. Bowman
e08d006aba
Moved Σ to core language, since elim is there. 2015-09-30 16:21:03 -04:00
William J. Bowman
2398bd1603
Renamed languages to reflect facts: cic to tt 2015-09-30 16:16:03 -04:00
William J. Bowman
a3c3b0fca7
Fixed/sped up eliminator reduction. closes #20
* Made the primitive form of elim (elim t_0 t_1), allowing this form to be
  considered a value when t_0 and t_1 are values.
* Moved definition of values to reduction language, and fixed it. This
  fixed issues with unique decomposition, and thus fixed reduction of
  eliminators.
* Enabled caching in apply-reduction-relation* to speed up results of
  recursive calls.
2015-09-29 17:56:37 -04:00
William J. Bowman
0807128f9e
Merge branch 'issue-23'. Closes #23 2015-09-29 17:01:02 -04:00
William J. Bowman
b2d042e4a6
Fixed reduction of eliminators like (elim ==)
Fixed eliminator reduction for eliminators of inductive types whose
constructors do not have the same parameters as their type. The
canonical example is ==, which has 3 parameters, but whose constructor
refl only has two.
2015-09-29 16:58:40 -04:00
William J. Bowman
cf6f81fbd4
Added single step evaluation abilities. Closes #27
* Added single step meta-function to core
* Expose step/syn in redex-lang
* Added macro to sugar for convenience use
* Updated relevant docs (also fixed bug in reflection docs)
2015-09-29 15:41:21 -04:00
William J. Bowman
0f25b53d75
Slew of fixes to reflection interfaces
Previously, reflection procedures did not properly reify/reflect syntax
after evaluating in Redex. This limited compositionality of reflection
features.

No longer. Now all reflection procedures should reify their results back
into Cur syntax, and only top-level evaluation should result in Redex
datums (or explicit calls to cur->datum).
2015-09-29 15:17:21 -04:00
William J. Bowman
1221fb5e41
(x v) etc should be a value form
When x is a inductive constructor, (x v), and ((x v) v), and so on
should be considered values.
2015-09-27 13:33:48 -04:00
William J. Bowman
8aabbc219b
disabled test that cause setup errors 2015-09-25 20:10:32 -04:00
William J. Bowman
e54c7e5bb5
Added query-type command to sugar 2015-09-25 20:08:07 -04:00
William J. Bowman
ff2f052a21
More unicode in stdlib/sugar
closes #21
2015-09-25 19:44:37 -04:00
William J. Bowman
84359fc2fd
This is related to previous commit 2015-09-25 19:33:12 -04:00
William J. Bowman
f05be17fdf
Added Or, but can't seem to use it 2015-09-25 19:32:18 -04:00
William J. Bowman
4c9c6b4e60
Analyzed and documented eliminator reduction 2015-09-25 18:48:07 -04:00
William J. Bowman
aaaab38729
even? odd? and lots of tests
These tests reveal issue #20, and it seems some other bug that causes an
infinite loop.
2015-09-25 18:36:27 -04:00
William J. Bowman
59226538d5
Expanded elim docs 2015-09-25 18:24:39 -04:00
William J. Bowman
f353ad8991
Fixed coq generator for elim 2015-09-25 18:08:20 -04:00
William J. Bowman
f4d38dec51
Recovered better elim syntax in sugar.rkt 2015-09-25 17:55:25 -04:00
William J. Bowman
9681fbd9e0
Restricted elim curnel syntax
The curnel was documented as having a restricted syntax, but this was
not actually enforced. Now it is.
2015-09-25 17:50:27 -04:00
William J. Bowman
b64d20319f
Updated documentation and examples to new elim 2015-09-25 17:50:03 -04:00
William J. Bowman
de3a4d9cf3
Merge branch 'typing-elim'
Closes #6
2015-09-25 17:25:12 -04:00
William J. Bowman
8ba4ed17d9
Fixed bug in reduction of elim
elim was not checking that the arguments to be used for the parameters
of the inductive matched the actual parameters expected, resulting in
incorrect and non-deterministic unification, and thus incorrect
reduction when the parameters were unified incorrectly.
2015-09-25 16:52:49 -04:00
William J. Bowman
2666080278
Removed dead code 2015-09-25 15:16:44 -04:00
William J. Bowman
bd795ba0ea
Tests reveal type-safety is broken for elim 2015-09-25 14:49:47 -04:00
William J. Bowman
1fd96f0140
Proof read sartactics. closes #17 2015-09-25 13:54:42 -04:00
William J. Bowman
1261ef2b73
Fixed some bugs introduced by changes to sugar
Yesterday's changes to sugar broke some things:

* case isn't smart enough to infer the right things in all cases yet, so
  added previously existing case* for when it is necessary.
* reexport define-theorem and qed from sugar, since still used in prop.
2015-09-25 13:37:51 -04:00
William J. Bowman
bf867bca7f
Moved some features out of curnel
* run is user-definable through the existing reflection features; moved
  to sugar.
* define need not have special function support in curnel; moved to
  sugar.
* fixed relevant documentation
2015-09-25 13:36:44 -04:00
William J. Bowman
2477fe9f4b
Made case macro do more work
Now the case macro is closer to a pattern-matcher.
2015-09-24 18:01:42 -04:00
William J. Bowman
52ec79f61b
Documented sugar 2015-09-24 17:51:38 -04:00
William J. Bowman
d82727a3fb
Starting fixing uses of elim, but there is a bug 2015-09-24 13:51:29 -04:00
William J. Bowman
4bb6dc3c71
Tweaks to README 2015-09-23 21:41:04 -04:00
William J. Bowman
fa9389ee7f
Hacks to make cur work in the REPL
Look I don't want to talk about it, but now you can use Cur in DrRacket.
Closes #18
2015-09-23 21:35:27 -04:00
William J. Bowman
ac081577a0
Fixed scribbled inline TODOs 2015-09-23 18:11:08 -04:00
William J. Bowman
d2642b1c38
Fixed typo 2015-09-23 18:08:15 -04:00
William J. Bowman
edea1909ec
Documented the OLL 2015-09-23 17:58:54 -04:00