Releases: rzk-lang/rzk
v0.5.1
What's Changed
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 by @aabounegm (see #58);
- Switch to Material theme for MkDocs (see #57);
- Fix links to
*.rzk.md
inmkdocs.yml
(see 8ba1c55b);
Full Changelog: v0.5...v0.5.1
v0.5
Documentation and playground for v0.5: https://fizruk.github.io/rzk/v0.5/
What's Changed
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).
Full Changelog: v0.4.1.1...v0.5
v0.4.1.1
v0.4.1
What's Changed
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);
New Contributors
- @aabounegm made their first contribution in #49
Full Changelog: v0.4.0...v0.4.1
v0.4.0
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:
v0.3.0
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"
):
#set-option "render" = "svg" -- enable rendering in SVG
See documentation at https://fizruk.github.io/rzk/v0.3.0/site/rzk-1/render/ for more details.
Minor changes:
- Exit with non-zero code upon a type error (see b135c4f)
- Fix external links and some typos in the documentation
Fixes:
v0.2.0
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.
Online documentation with a playground: https://fizruk.github.io/rzk/v0.2.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:
#def hom (A : U) (x y : A) : U := (t : Δ¹) -> A [ ∂Δ¹ t |-> recOR(t === 0_2, t === 1_2, x, y) ]
-
Restrictions can now support multiple subshapes, effectively internalising
recOR
:#def hom (A : U) (x y : A) : U := (t : Δ¹) -> A [ t === 0_2 |-> x, t === 1_2 |-> y ]
-
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.
v0.1.0
This is a first release of the prototype, which is usable to some extent.
This version contains a lot of auxiliary and experimental stuff, which will be removed from future versions (in particular, support for STLC, PCF, MLTT languages).
You can access online interpreter and documentation for this version online at http://fizruk.github.io/rzk/v0.1.0/split.html