package inferno
Install
Dune Dependency
Authors
Maintainers
Sources
md5=cf37ba58410ca1e5e5462d51e4c4fb46
sha512=f96ad6bbf99482455afd8e8a9503357f21798698e6a2a4a8d385877db844ffebcef24f8cf82622c931831896088a9b98e37f4230839a3d03ec1c64fae2a39920
CHANGES.md.html
Changes
2022/06/03
Support for rigid variables, that is, variables that cannot be unified with other rigid variables or with older flexible variables. These variables are introduced by the new combinators
letr1
andletrn
. The exceptionVariableScopeEscape
, which is raised when a rigid variable escapes its scope, is also new.Incompatible changes to the solver's high-level API. The module
Inferno.SolverHi
has been renamed toInferno.Solver
. The combinators(^&)
,map
,($$)
, and(^^)
have been removed. The combinatorconstruct
has been renamedshallow
. The combinatorbuild
has been renameddeep
. The combinatorwitness
has been renameddecode
. The combinatorinstance_
has been removed.New functions
pprint
andprint
. These functions allow printing a constraint. They can be useful for debugging purposes.Performance improvements.
Improved documentation.
2021/12/22
Incompatible changes to the solver's high-level API. The concept of a
binder
has been introduced, and OCaml's binding operatorslet@
,let+
,and+
are now used, so as to make it easier to build constraints. (Contributed by Olivier Martinot and Gabriel Scherer.) The types of the combinatorsexist
andconstruct
have been simplified. The new combinatorwitness
can be used to get access to the witness (that is, the final decoded type) for a type variable.
2020/11/04
In the solver's high-level API, introduce a new combinator
range
, which allows annotating a constraint with a range of source code positions. Incompatible change: the exceptionsUnbound
,Unify
, andCycle
now carry a range.In the solver's high-level API, define the type
deep_ty
of deep types, and introduce a new functionbuild
, which converts a deep type into a type variable, allowing it to appear in a constraint.In the solver's high-level API, introduce a new function
instance_
. This is a variant ofinstance
. This function is more convenient (and more efficient) thaninstance
when one does not need to know how a type scheme was instantiated.
2020/10/01
Change the signature
SolverSig.OUTPUT
so as to maketyvar
an abstract type. An injection functionsolver_tyvar : int -> tyvar
is introduced.Add n-ary products to the System F demo. (Contributed by Gabriel Scherer and Olivier Martinot.)
Some cleanup in the directory structure.
2019/09/24
Use
dune
instead ofocamlbuild
. All necessary library files should now be properly installed (which was not the case in the previous version).
2018/04/05
First release of Inferno as an
opam
package.