2021-11-08 11:26:07 +03:00
|
|
|
# This CITATION.cff file was generated with cffinit.
|
|
|
|
# Visit https://bit.ly/cffinit to generate yours today!
|
|
|
|
|
|
|
|
cff-version: 1.2.0
|
|
|
|
title: Catala
|
|
|
|
message: >-
|
|
|
|
If you want to cite the Catala software in your
|
|
|
|
scholarly work, please use the information in this
|
|
|
|
file.
|
|
|
|
type: software
|
|
|
|
authors:
|
|
|
|
- given-names: Denis
|
|
|
|
family-names: Merigoux
|
|
|
|
email: denis.merigoux@inria.fr
|
|
|
|
affiliation: INRIA
|
2022-08-08 18:26:07 +03:00
|
|
|
orcid: "https://orcid.org/0000-0003-2247-0938"
|
2021-11-08 11:26:07 +03:00
|
|
|
- given-names: Nicolas
|
|
|
|
family-names: Chataing
|
|
|
|
email: nicolas.chataing@ens.fr
|
2022-08-08 18:26:07 +03:00
|
|
|
affiliation: "INRIA, ENS"
|
2021-11-08 11:26:07 +03:00
|
|
|
- given-names: Emile
|
|
|
|
family-names: Rolley
|
2022-07-07 17:14:56 +03:00
|
|
|
email: emile.rolley@tuta.io
|
2022-01-11 18:36:38 +03:00
|
|
|
- given-names: Louis
|
|
|
|
family-names: Gesbert
|
2022-08-08 18:26:07 +03:00
|
|
|
affiliation: "INRIA, OCamlPro"
|
2022-01-11 18:36:38 +03:00
|
|
|
- given-names: Aymeric
|
|
|
|
family-names: Fromherz
|
|
|
|
affiliation: Inria
|
|
|
|
- given-names: Alain
|
|
|
|
family-names: Delaët-Tixeuil
|
2022-08-08 18:26:07 +03:00
|
|
|
affiliation: "INRIA, ENS Lyon"
|
2022-07-07 17:18:08 +03:00
|
|
|
- given-names: Lilya
|
|
|
|
family-names: Slimani
|
2022-08-08 18:26:07 +03:00
|
|
|
repository-code: "https://github.com/CatalaLang/catala"
|
|
|
|
url: "https://catala-lang.org/"
|
2021-11-08 11:26:07 +03:00
|
|
|
abstract: >-
|
|
|
|
Catala is a domain-specific language for deriving
|
|
|
|
faithful-by-construction algorithms from
|
|
|
|
legislative texts.
|
|
|
|
license: Apache-2.0
|
Bump version to 0.8.0
Changelog:
---
A lot has been going on, with more than 530 patches and 70 PRs merged since
0.7.0 last summer. In summary:
- Quite a lot of syntax improvements and changes. Checkout the latest
[cheat-sheet](https://catalalang.github.io/catala/syntax.pdf) for an overview
- Allow local `let ... equals ... in ...` definitions
- Better error messages and positions throughout
- Added the ability to directly call a scope and retrieve its outputs, like a
function
- Added disambiguation, allowing to access structure fields without specifying
the structure type each time
- Added automated resolution of operators, allowing e.g. to write just `+` in
place of all the type-specific operators `+.`, `+$`, `+@`, `+^`, etc.
- More consistent priority for operators. It is no longer allowed to write `a
and b or c` without parenthesis.
- Added and changed some operators (`date + duration` now allowed either way,
`int / int` now returns a decimal, added `duration / duration`)
- Added the ability to have variables and functions defined at
top-level (outside of any scope). See annex A of the tutorial for details.
- Added support for functions with multiple arguments
- Some big refactors in the compiler, allowing much better code sharing between
the different passes, and making it much easier to extend. Also added the
possibility to run the type-checker earlier, etc.
- Countless bug-fixes
- Improvements to our proof backend with Z3
- A tool to automatically synchronise with the upstream French law from
Legifrance
2023-03-08 15:27:16 +03:00
|
|
|
version: 0.8.0
|
2022-08-08 18:26:07 +03:00
|
|
|
date-released: "2022-03-08"
|