You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add PartialTyTerm in the xtt package, with Term lhs, Term rhs, Term ty as data. It can be type-checked as a prim, making it easier to write. The type is Partial : (r s : I) -> Type -> Set.
Implement the conversion of PartialTyTerm: if the logical formula rhs = lhs is mutually implied by lhs' = rhs' and A unifies with A', then Partial lhs rhs A unifies with Partial lhs' rhs' A'.
Add PartialTerm in the xtt package, with its syntax, parsing, producing, etc.. This is going to be a bit more laborious.
Implement the conversion of PartialTerm.
The text was updated successfully, but these errors were encountered:
Re #446. Needed for
hcom
.Plan:
PartialTyTerm
in thextt
package, withTerm lhs, Term rhs, Term ty
as data. It can be type-checked as a prim, making it easier to write. The type isPartial : (r s : I) -> Type -> Set
.PartialTyTerm
: if the logical formularhs = lhs
is mutually implied bylhs' = rhs'
andA
unifies withA'
, thenPartial lhs rhs A
unifies withPartial lhs' rhs' A'
.PartialTerm
in thextt
package, with its syntax, parsing, producing, etc.. This is going to be a bit more laborious.PartialTerm
.The text was updated successfully, but these errors were encountered: