Changelog for rzk
¶
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to the Haskell Package Versioning Policy.
v0.5.3 — 2022-07-12¶
This version contains a few minor improvements:
- Allow patterns in dependent function types (see #67);
- Hint about possible shape coercions (see #67);
- Enable doctests (see #68);
- Improve documentation (add recommended installation instructions via VS Code)
- Migrate from
fizruk
torzk-lang
organisation on GitHub (seeee0d063
); - Speed up GHCJS build with Nix (see #66);
v0.5.2 — 2022-07-05¶
This version introduces support for Unicode syntax, better recognition of Markdown code blocks and improves documentation a bit:
- Support some Unicode syntax (see #61);
- Support curly braces syntax for code blocks (see #64);
- Update documentation a bit (see 07b520a6 and 7cc7f383);
- Factor out Pygments highlighting to https://github.com/rzk-lang/pygments-rzk;
- Use new cache action for Nix (see #60).
v0.5.1 — 2022-06-29¶
This version fixes Unit
type and makes some changes to documentation:
- Fix computation for
Unit
(see 2f7d6295); - Update documentation (see ea2d176b);
- Use mike to deploy versioned docs (see 99cf721a);
- Replace MkDocs hook with the published plugin (see #58);
- Switch to Material theme for MkDocs (see #57);
- Fix links to
*.rzk.md
inmkdocs.yml
(see 8ba1c55b);
v0.5 — 2022-06-20¶
This version contains the following changes:
Unit
type (withunit
value) (see ede02611 and bf9d6cd9;- Add basic tokenizer support via
rzk tokenize
(see #53); - Add location information for shadowing warnings and duplicate definition errors (see bf9d6cd9).
v0.4.1 — 2022-06-16¶
This is version contains minor changes, primarily in tools around rzk:
- Add
rzk version
command (see f1709dc7); - Add action to release binaries (see 9286afae);
- Automate SVG rendering in MkDocs (see #49);
- Read
stdin
when no filepaths are given (see 936c15a3); - Add Pygments highlighting (see 01c2a017, cbd656cc, 5220ddf9, 142ec003, 5c7425f2);
- Update HighlightJS config for rzk v0.4.0 (see 171ee63f);
v0.4.0 — 2022-05-18¶
This version introduces sections and variables. The feature is similar to Variable
command in Coq. An important difference, however, is that rzk
does not allow definitions to use variables implicitly and adds uses (...)
annotations to ensure such dependencies are not accidental.
- Variables and sections (Coq-style) (see #38);
Minor improvements:
- Add flake, set up nix and cabal builds, cache nix store on CI (see #39);
- Apply stylish-haskell (see 7d42ef62);
v0.3.0 — 2022-04-28¶
This version introduces an experimental feature for generating visualisations for simplicial terms in SVG.
To enable rendering, enable option "render" = "svg"
(to disable, "render" = "none"
):
Minor changes:
- Exit with non-zero code upon a type error (see b135c4fb)
- Fix external links and some typos in the documentation
Fixes:
- Fixed an issue with tope solver when context was empty (see 6196af9e);
- Fixed #33 (missing coherence check for restricted types).
v0.2.0 - 2022-04-20¶
This version was a complete rewrite of the proof assistant, using a new parser, a new internal representation, and a rewrite of the typechecking logic. This is still a prototype, but, arguably, significantly more stable and manageable than version 0.1.0.
Language¶
Syntax is almost entirely backwards compatible with version 0.1.0. Typechecking has been fixed and improved.
Breaking Changes¶
The only known breaking changes are:
- Terms like
second x y
which previous have been parsed assecond (x y)
now are properly parsed as(second x) y
. - It is now necessary to have at least a minimal indentation in the definition of a term after a newline.
- Unicode syntax is temporarily disabled, except for dependent sums and arrows in function types.
- The restriction syntax
[ ... ]
now has a slightly different precedence, so some parentheses are required, e.g. in(A -> B) [ phi |-> f]
or(f t = g t) [ phi |-> f]
. - Duplicate top-level definitions are no longer allowed.
Deprecated Syntax¶
The angle brackets for extension types are supported, but deprecated,
as they are completely unnecessary now: <{t : I | psi t} -> A t [ phi t |-> a t ]>
can now be written as {t : I | psi t} -> A t [ phi t |-> a t]
or even (t : psi) -> A t [ phi t |-> a t ]
.
Syntax Relaxation¶
Otherwise, syntax is now made more flexible:
- Function parameters can be unnamed:
A -> B
is the same as(_ : A) -> B
. - Angle brackets are now optional:
{t : I | psi t} -> A t [ phi t |-> a t ]
- Nullary extension types are possible:
A t [ phi t |-> a t ]
- Lambda abstractions can introduce multiple arguments:
#def hom : (A : U) -> A -> A -> U
:= \A x y ->
(t : Δ¹) -> A [ ∂Δ¹ t |-> recOR(t === 0_2, t === 1_2, x, y) ]
- Parameters can be introduced simultaneously for the type and body. Moreover, multiple parameters can be introduced with the same type:
- Restrictions can now support multiple subshapes, effectively internalising
recOR
:
-
There are now 3 syntactic versions of
refl
with different amount of explicit annotations:refl
,refl_{x}
andrefl_{x : A}
-
There are now 2 syntactic versions of identity types (
=
):x = y
andx =_{A} y
. -
recOR
now supports alternative syntax with an arbitrary number of subshapes:recOR( tope1 |-> term1, tope2 |-> term2, ..., topeN |-> termN )
-
Now it is possible to have type ascriptions:
t as T
. This can help with ensuring types of subexpressions in parts of formalisations, or to upcast types. -
New (better) commands are now supported:
#define <name> (<param>)* : <type> := <term>
— same as#def
, but with full spelling of the word#postulate <name> (<param>)* : <type>
— postulate an axiom#check <term> : <type>
— typecheck an expression against a given type#compute-whnf <term>
— compute (WHNF) of a term#compute-nf <term>
— compute normal form of a term#compute <term>
— alias for#compute-whnf
-
#set-option <option> = <value>
— set a (typechecker) option: -
#set-option "verbosity" = "silent"
— no log printing #set-option "verbosity" = "normal"
— log typechecking progress-
#set-option "verbosity" = "debug"
— log every intermediate action (may be useful to debug when some definition does not typecheck) -
#unset-option <option>
— revert option's value to its default
Simple Shape Coercions¶
In some places, shapes (cube indexed tope families) can be used directly:
-
In function parameters:
(Λ -> A) -> (Δ² -> A)
is the same as({(t, s) : 2 * 2 | Λ (t, s)} -> A) -> ({(t, s) : 2 * 2 | Δ²} -> A)
-
In parameter types of lambda abstractions:
\((t, s) : Δ²) -> ...
is the same as\{(t, s) : 2 * 2 | Δ² (t, s)} -> ...
Better Type Inference¶
-
It is now not required to annotate point variables with tope restrictions, the typechecker is finally smart enough to figure them out from the context.
-
It is now possible to simply write
refl
in most situations. -
It is now possible to omit the index type in an identity type:
x = y
Better output and error message¶
The output and error messages have been slightly improved, but not in a major way.
Internal representation¶
A new internal representation (a version of second-order abstract syntax) allows to stop worrying about name captures in substitutions, so the implementation is much more trustworthy. The new representation will also allow to bring in higher-order unification in the future, for better type inference, matching, etc.
New representation also allowed annotating each (sub)term with its type to avoid recomputations and some other minor speedups. There are still some performance issues, which need to be debugged, but overall it is much faster than version 0.1.0 already.