Agda
Safe HaskellNone
LanguageHaskell2010

Agda.TypeChecking.Conversion

Synopsis

Documentation

antiUnify :: MonadConversion m => ProblemId -> Type -> Term -> Term -> m Term Source #

When comparing argument spines (in compareElims) where the first arguments don't match, we keep going, substituting the anti-unification of the two terms in the telescope. More precisely:

@ (u = v : A)[pid] w = antiUnify pid A u v us = vs : Δ[w/x] ------------------------------------------------------------- u us = v vs : (x : A) Δ @

The simplest case of anti-unification is to return a fresh metavariable (created by blockTermOnProblem), but if there's shared structure between the two terms we can expose that.

This is really a crutch that lets us get away with things that otherwise would require heterogenous conversion checking. See for instance issue #2384.

assignE :: MonadConversion m => CompareDirection -> MetaId -> Elims -> Term -> CompareAs -> (Term -> Term -> m ()) -> m () Source #

Try to assign meta. If meta is projected, try to eta-expand and run conversion check again.

coerce :: (MonadConversion m, MonadTCM m) => Comparison -> Term -> Type -> Type -> m Term Source #

coerce v a b coerces v : a to type b, returning a v' : b with maybe extra hidden applications or hidden abstractions.

In principle, this function can host coercive subtyping, but currently it only tries to fix problems with hidden function types.

coerceSize :: MonadConversion m => (Type -> Type -> m ()) -> Term -> Type -> Type -> m () Source #

Account for situations like k : (Size< j) <= (Size< k + 1)

Actually, the semantics is (Size<= k) ∩ (Size< j) ⊆ rhs which gives a disjunctive constraint. Mmmh, looks like stuff TODO.

For now, we do a cheap heuristics.

compareArgs :: MonadConversion m => [Polarity] -> [IsForced] -> Type -> Term -> Args -> Args -> m () Source #

Type-directed equality on argument lists

compareAs :: MonadConversion m => Comparison -> CompareAs -> Term -> Term -> m () Source #

Type directed equality on terms or types.

compareAtom :: MonadConversion m => Comparison -> CompareAs -> Term -> Term -> m () Source #

Syntax directed equality on atomic values

compareDom Source #

Arguments

:: MonadConversion m 
=> Comparison

cmp The comparison direction

-> Dom Type

a1 The smaller domain.

-> Dom Type

a2 The other domain.

-> Abs Type

b1 The smaller codomain.

-> Abs Type

b2 The bigger codomain.

-> m ()

Error continuation

-> m ()

Success continuation

-> m () 

Check whether a1 cmp a2 and continue in context extended by a1.

compareElims :: MonadConversion m => [Polarity] -> [IsForced] -> Type -> Term -> [Elim] -> [Elim] -> m () Source #

compareElims pols a v els1 els2 performs type-directed equality on eliminator spines. t is the type of the head v.

compareIrrelevant :: MonadConversion m => Type -> Term -> Term -> m () Source #

Compare two terms in irrelevant position. This always succeeds. However, we can dig for solutions of irrelevant metas in the terms we compare. (Certainly not the systematic solution, that'd be proof search...)

compareMetas :: MonadConversion m => Comparison -> CompareAs -> MetaId -> Elims -> MetaId -> Elims -> m () Source #

Check whether x xArgs cmp y yArgs

compareTerm :: MonadConversion m => Comparison -> Type -> Term -> Term -> m () Source #

Type directed equality on values.

compareType :: MonadConversion m => Comparison -> Type -> Type -> m () Source #

Equality on Types

compareWithPol :: MonadConversion m => Polarity -> (Comparison -> a -> a -> m ()) -> a -> a -> m () Source #

computeElimHeadType :: MonadConversion m => QName -> Elims -> Elims -> m Type Source #

Compute the head type of an elimination. For projection-like functions this requires inferring the type of the principal argument.

convError :: TypeError -> TCM () Source #

Ignore errors in irrelevant context.

equalSort :: MonadConversion m => Sort -> Sort -> m () Source #

Check that the first sort equal to the second.

equalTermOnFace :: MonadConversion m => Term -> Type -> Term -> Term -> m () Source #

equalTermOnFace φ A u v = _ , φ ⊢ u = v : A

forallFaceMaps :: MonadConversion m => Term -> (IntMap Bool -> Blocker -> Term -> m a) -> (IntMap Bool -> Substitution -> m a) -> m [a] Source #

guardPointerEquality :: MonadConversion m => a -> a -> String -> m () -> m () Source #

guardPointerEquality x y s m behaves as m if x and y are equal as pointers, or does nothing otherwise. Use with care, see the documentation for unsafeComparePointers

intersectVars :: Elims -> Elims -> Maybe [Bool] Source #

intersectVars us vs checks whether all relevant elements in us and vs are variables, and if yes, returns a prune list which says True for arguments which are different and can be pruned.

leqConj :: MonadConversion m => Conj -> Conj -> m Bool Source #

leqConj r q = r ≤ q in the I lattice, when r and q are conjuctions. ' (∧ r_i) ≤ (∧ q_j) iff ' (∧ r_i) ∧ (∧ q_j) = (∧ r_i) iff ' {r_i | i} ∪ {q_j | j} = {r_i | i} iff ' {q_j | j} ⊆ {r_i | i}

leqInterval :: MonadConversion m => [Conj] -> [Conj] -> m Bool Source #

leqInterval r q = r ≤ q in the I lattice. (∨ r_i) ≤ (∨ q_j) iff ∀ i. ∃ j. r_i ≤ q_j

leqSort :: MonadConversion m => Sort -> Sort -> m () Source #

Check that the first sort is less or equal to the second.

We can put SizeUniv below Inf, but otherwise, it is unrelated to the other universes.

sameVars :: Elims -> Elims -> Bool Source #

Check if to lists of arguments are the same (and all variables). Precondition: the lists have the same length.

tryConversion :: (MonadConstraint m, MonadWarning m, MonadFresh ProblemId m) => m () -> m Bool Source #

Try whether a computation runs without errors or new constraints (may create new metas, though). Restores state upon failure.

tryConversion' :: (MonadConstraint m, MonadWarning m, MonadFresh ProblemId m) => m a -> m (Maybe a) Source #

Try whether a computation runs without errors or new constraints (may create new metas, though). Return Just the result upon success. Return Nothing and restore state upon failure.

failConversion Source #

Arguments

:: (MonadTCError m, HasBuiltins m) 
=> Comparison

Equality or subtyping?

-> Term

See convErrLhs

-> Term

See convErrRhs

-> CompareAs

Will be converted to a FailedCompareAs.

-> m a 

Throw a floating ConversionError, given the arguments of compareAs.