Agda supports GHC versions 8.0.2 to 9.2.2.
-
The new option
--erased-cubicalturns on a variant of Cubical Agda (see #4701).When this variant of Cubical Agda is used glue (and some related builtins) may only be used in erased settings. One can import regular Cubical Agda code from this variant of Cubical Agda, but names defined using Cubical Agda are (mostly) treated as if they had been marked as erased. See the reference manual for more details.
The GHC and JS backends can compile code that uses
--erased-cubicalif the top-level module uses this flag.This feature is experimental.
-
The parameter arguments of constructors and record fields are now marked as erased (#4786).
For instance, the type of the constructor
cbelow is now{@0 A : Set} → D A, and the type of the record fieldR.fis {@0 A : Set} → R A → A`:data D (A : Set) : Set where c : D A record R (A : Set) : Set where field f : A
-
The options
--subtypingand--no-subtypinghave been removed (see #5427). -
The cubical interval
Inow belongs to its own sort,IUniv, rather thanSSet. ForJ : ISetandA : J → Set l, we have(j : J) → A : Set l, that is, the type of functions from a type inISetto a fibrant type is fibrant. -
A new reflection primitive
getInstances : Meta → TC (List Term)was added toAgda.Builtin.Reflection. This operation returns the list of all possibly valid instance candidates for a given metavariable. For example, the following macro instantiates the goal with the first instance candidate, even if there are several:macro pickWhatever : Term → TC ⊤ pickWhatever hole@(meta m _) = do (cand ∷ _) ← getInstances m where [] -> typeError (strErr "No candidates!" ∷ []) unify hole cand pickWhatever _ = typeError (strErr "Already solved!" ∷ [])
-
The reflection primitives
getContextandinContextuse a nominal contextList (Σ String λ _ → Arg Type)instead ofList (Arg Type)for printing type information better. Similarly,extendContexttakes an extra argument of typeString. -
macrodefinitions can now be used even when they are declared as erased. For example, this is now accepted:macro @0 trivial : Term → TC ⊤ trivial = unify (con (quote refl) []) test : 42 ≡ 42 test = trivial
-
A new reflection primitive
formatErrorParts : List ErrorPart → TC Stringis added. It takes a list ofErrorPartand return its formatted string. -
A new constructor
pattErr : Pattern → ErrorPartofErrorPartfor reflection is added.
-
It is now OK to put lambda-bound variables anywhere in the right-hand side of a syntax declaration. However, there must always be at least one "identifier" between any two regular "holes". For instance, the following syntax declaration is accepted because
-is between the holesBandD.postulate F : (Set → Set) → (Set → Set) → Set syntax F (λ A → B) (λ C → D) = B A C - D
-
Syntax can now use lambdas with multiple arguments (#394).
Example:
postulate Σ₂ : (A : Set) → (A → A → Set) → Set syntax Σ₂ A (λ x₁ x₂ → P) = [ x₁ x₂ ⦂ A ] × P
-
Library files below the "project root" are now ignored (see #5644).
For instance, if you have a module called
A.B.Cin the directoryRoot/A/B, then.agda-libfiles inRoot/AorRoot/A/Bdo not affect what options are used to type-checkA.B.C:.agda-libfiles forA.B.Chave to reside inRoot, or further up the directory hierarchy.
-
Profiling options are now turned on with a new
--profileflag instead of abusing the debug verbosity option. (See #5781.) -
The option
--without-Khas been renamed--cubical-compatible(See #5843.)The old name is retained for backwards compatibility.
-
Meta-variables can now be saved in
.agdaifiles, instead of being expanded. This can affect performance. (See #5731.)Meta-variables are saved if the pragma option
--save-metasis used. This option can be overridden by--no-save-metas. -
The new option
--syntactic-equality[=FUEL]can be used to limit how many times the syntactic equality shortcut is allowed to fail (see #5801).If
FUELis omitted, then the syntactic equality shortcut is enabled without any restrictions.If
FUELis given, then the syntactic equality shortcut is givenFUELunits of fuel. The exact meaning of this is implementation-dependent, but successful uses of the shortcut do not affect the amount of fuel. Currently the fuel is decreased in the failure continuations of the implementation of the syntactic equality shortcut. When a failure continuation completes the fuel is restored to its previous amount.The idea for this option comes from András Kovács' smalltt.
-
Both the GHC and JS backends now refuse to compile code that uses
--cubical.Note that support for compiling code that uses
--erased-cubicalhas been added to both backends (see above).
-
The new option
--dependency-graph-include=LIBRARYcan be used to restrict the dependency graph to modules from one or more libraries (see #5634).Note that the module given on the command line might not be included.
-
The generated graphs no longer contain "redundant" edges: if a module is imported both directly and indirectly, then the edge corresponding to the direct import is omitted.
- The JSON API now represents meta-variables differently, using
objects containing two keys,
idandmodule, both with values that are (natural) numbers. See #5731.