The M construction as a multivariate polynomial functor. #
M types are potentially infinite tree-like structures. They are defined as the greatest fixpoint of a polynomial functor.
Main definitions #
M.mk
- constructorM.dest
- destructorM.corec
- corecursor: useful for formulating infinite, productive computationsM.bisim
- bisimulation: proof technique to show the equality of infinite objects
Implementation notes #
Dual view of M-types:
Specifically, we define the polynomial functor mp
as:
- A := a possibly infinite tree-like structure without information in the nodes
- B := given the tree-like structure
t
,B t
is a valid path from the root oft
to any given node.
As a result mp α
is made of a dataless tree and a function from
its valid paths to values of α
The difference with the polynomial functor of an initial algebra is
that A
is a possibly infinite tree.
Reference #
- Jeremy Avigad, Mario M. Carneiro and Simon Hudon. [Data Types as Quotients of Polynomial Functors][avigad-carneiro-hudon2019]
A path from the root of a tree to one of its node
- root {n : ℕ} {P : MvPFunctor.{u} (n + 1)} (x : P.last.M) (a : P.A) (f : P.last.B a → P.last.M) (h : x.dest = ⟨a, f⟩) (i : Fin2 n) (c : P.drop.B a i) : Path P x i
- child {n : ℕ} {P : MvPFunctor.{u} (n + 1)} (x : P.last.M) (a : P.A) (f : P.last.B a → P.last.M) (h : x.dest = ⟨a, f⟩) (j : P.last.B a) (i : Fin2 n) (c : Path P (f j) i) : Path P x i
Instances For
Polynomial functor of the M-type of P
. A
is a data-less
possibly infinite tree whereas, for a given a : A
, B a
is a valid
path in tree a
so that mp α
is made of a tree and a function
from its valid paths to the values it contains
Instances For
n
-ary M-type for P
Instances For
construct through corecursion the shape of an M-type without its contents
Instances For
Using corecursion, construct the contents of an M-type
Equations
Instances For
Corecursor for M-type of P
Equations
Instances For
Corecursor for M-type of P
Equations
- MvPFunctor.M.corec P g = MvPFunctor.M.corec' P (fun (b : β) => (g b).fst) (fun (b : β) => TypeVec.dropFun (g b).snd) fun (b : β) => TypeVec.lastFun (g b).snd
Instances For
Implementation of destructor for M-type of P
Instances For
Implementation of destructor for M-type of P
Instances For
Destructor for M-type of P
Equations
- MvPFunctor.M.dest' P h f' = ⟨a, TypeVec.splitFun (MvPFunctor.M.pathDestLeft P h f') fun (x_1 : (P.B a).last) => ⟨f x_1, MvPFunctor.M.pathDestRight P h f' x_1⟩⟩
Instances For
Destructor for M-types
Instances For
Constructor for M-types