Agda-2.4.2.3: A dependently typed functional programming language and proof assistant

Safe HaskellNone
LanguageHaskell98

Agda.TypeChecking.SizedTypes

Contents

Synopsis

SIZELT stuff

isBounded :: MonadTCM tcm => Nat -> tcm BoundedSize Source

Check whether a variable in the context is bounded by a size expression. If x : Size< a, then a is returned.

boundedSizeMetaHook :: Term -> Telescope -> Type -> TCM () Source

Whenever we create a bounded size meta, add a constraint expressing the bound. In boundedSizeMetaHook v tel a, tel includes the current context.

trySizeUniv :: Comparison -> Type -> Term -> Term -> QName -> Elims -> QName -> Elims -> TCM () Source

trySizeUniv cmp t m n x els1 y els2 is called as a last resort when conversion checking m cmp n : t failed for definitions m = x els1 and n = y els2, where the heads x and y are not equal.

trySizeUniv accounts for subtyping between SIZELT and SIZE, like Size< i =< Size.

If it does not succeed it reports failure of conversion check.

Size views that reduce.

deepSizeView :: Term -> TCM DeepSizeView Source

Compute the deep size view of a term. Precondition: sized types are enabled.

Size comparison that might add constraints.

compareSizes :: Comparison -> Term -> Term -> TCM () Source

Compare two sizes.

compareMaxViews :: Comparison -> SizeMaxView -> SizeMaxView -> TCM () Source

Compare two sizes in max view.

compareBelowMax :: DeepSizeView -> SizeMaxView -> TCM () Source

compareBelowMax u vs checks u <= max vs. Precondition: size vs >= 2

trivial :: Term -> Term -> TCM Bool Source

Checked whether a size constraint is trivial (like X <= X+1).

Size constraints.

isSizeProblem :: ProblemId -> TCM Bool Source

Test whether a problem consists only of size constraints.

isSizeConstraint :: Closure Constraint -> TCM Bool Source

Test is a constraint speaks about sizes.

getSizeConstraints :: TCM [Closure Constraint] Source

Find the size constraints.

getSizeMetas :: Bool -> TCM [(MetaId, Type, Telescope)] Source

Return a list of size metas and their context.

Size constraint solving.

data SizeExpr Source

Atomic size expressions.

Constructors

SizeMeta MetaId [Int]

A size meta applied to de Bruijn levels.

Rigid Int

A de Bruijn level.

data SizeConstraint Source

Size constraints we can solve.

Constructors

Leq SizeExpr Int SizeExpr

Leq a +n b represents a =< b + n. Leq a -n b represents a + n =< b.

computeSizeConstraints :: [Closure Constraint] -> TCM [SizeConstraint] Source

Compute a set of size constraints that all live in the same context from constraints over terms of type size that may live in different contexts.

cf. simplifyLevelConstraint

computeSizeConstraint :: Constraint -> TCM (Maybe SizeConstraint) Source

Turn a constraint over de Bruijn levels into a size constraint.

sizeExpr :: Term -> TCM (SizeExpr, Int) Source

Turn a term with de Bruijn levels into a size expression with offset.

Throws a patternViolation if the term isn't a proper size expression.

flexibleVariables :: SizeConstraint -> [(MetaId, [Int])] Source

Compute list of size metavariables with their arguments appearing in a constraint.

canonicalizeSizeConstraint :: SizeConstraint -> Maybe SizeConstraint Source

Convert size constraint into form where each meta is applied to levels 0,1,..,n-1 where n is the arity of that meta.

X[σ] <= t beomes X[id] <= t[σ^-1]

X[σ] ≤ Y[τ] becomes X[id] ≤ Y[τ[σ^-1]] or X[σ[τ^1]] ≤ Y[id] whichever is defined. If none is defined, we give up.

solveSizeConstraints :: TCM () Source

Main function.

oldSolver Source

Arguments

:: [(MetaId, Int)]

Size metas and their arity.

-> [SizeConstraint]

Size constraints (in preprocessed form).

-> TCM Bool

Returns False if solver fails.

Old solver for size constraints using Agda.Utils.Warshall.