是的,您可以在Dhall中为类型安全,有向,可能是循环的图形建模,如下所示:
let List/map =
https://prelude.dhall-lang.org/v14.0.0/List/map sha256:dd845ffb4568d40327f2a817eb42d1c6138b929ca758d50bc33112ef3c885680
let Graph
: Type
= forall (Graph : Type)
-> forall ( MakeGraph
: forall (Node : Type)
-> Node
-> (Node -> { id : Text, neighbors : List Node })
-> Graph
)
-> Graph
let MakeGraph
: forall (Node : Type)
-> Node
-> (Node -> { id : Text, neighbors : List Node })
-> Graph
= \(Node : Type)
-> \(current : Node)
-> \(step : Node -> { id : Text, neighbors : List Node })
-> \(Graph : Type)
-> \ ( MakeGraph
: forall (Node : Type)
-> Node
-> (Node -> { id : Text, neighbors : List Node })
-> Graph
)
-> MakeGraph Node current step
let -- Get `Text` label for the current node of a Graph
id
: Graph -> Text
= \(graph : Graph)
-> graph
Text
( \(Node : Type)
-> \(current : Node)
-> \(step : Node -> { id : Text, neighbors : List Node })
-> (step current).id
)
let -- Get all neighbors of the current node
neighbors
: Graph -> List Graph
= \(graph : Graph)
-> graph
(List Graph)
( \(Node : Type)
-> \(current : Node)
-> \(step : Node -> { id : Text, neighbors : List Node })
-> let neighborNodes
: List Node
= (step current).neighbors
let nodeToGraph
: Node -> Graph
= \(node : Node)
-> \(Graph : Type)
-> \ ( MakeGraph
: forall (Node : Type)
-> forall (current : Node)
-> forall ( step
: Node
-> { id : Text
, neighbors : List Node
}
)
-> Graph
)
-> MakeGraph Node node step
in List/map Node Graph nodeToGraph neighborNodes
)
let {- Example node type for a graph with three nodes
For your Wiki, replace this with a type with one alternative per document
-}
Node =
< Node0 | Node1 | Node2 >
let {- Example graph with the following nodes and edges between them:
Node0 ↔ Node1
↓
Node2
↺
The starting node is Node0
-}
example
: Graph
= let step =
\(node : Node)
-> merge
{ Node0 = { id = "0", neighbors = [ Node.Node1, Node.Node2 ] }
, Node1 = { id = "1", neighbors = [ Node.Node0 ] }
, Node2 = { id = "2", neighbors = [ Node.Node2 ] }
}
node
in MakeGraph Node Node.Node0 step
in assert : List/map Graph Text id (neighbors example) === [ "1", "2" ]
这种表示保证了不存在折边。
我还将这个答案变成了可以使用的软件包:
编辑:这是相关的资源和其他说明,可以帮助阐明正在发生的事情:
首先,从树的以下Haskell类型开始:
data Tree a = Node { id :: a, neighbors :: [ Tree a ] }
您可以将这种类型看作是一种惰性的,可能是无限的数据结构,表示如果您只是继续访问邻居,将会得到什么。
现在,让我们假装上述Tree
表示其实是我们Graph
仅通过重命名数据类型为Graph
:
data Graph a = Node { id :: a, neighbors :: [ Graph a ] }
...但是即使我们想使用这种类型,我们也没有办法在Dhall中直接为该类型建模,因为Dhall语言不提供对递归数据结构的内置支持。那么我们该怎么办?
幸运的是,实际上有一种方法可以将递归数据结构和递归函数嵌入到非递归语言(如Dhall)中。其实有两种方法!
- F代数 -用于实现递归
- F- coalgebras-用于实现“ corecursion”
我读到的第一件事向我介绍了这个技巧,是Wadler撰写的以下草稿:
...但是我可以使用以下两种Haskell类型来总结基本思想:
{-# LANGUAGE RankNTypes #-}
-- LFix is short for "Least fixed point"
newtype LFix f = LFix (forall x . (f x -> x) -> x)
...和:
{-# LANGUAGE ExistentialQuantification #-}
-- GFix is short for "Greatest fixed point"
data GFix f = forall x . GFix x (x -> f x)
的方式,LFix
和GFix
工作是,你可以给他们“一层”你想要的递归的或“corecursive”型(即f
),然后他们给你的东西是一样强大的所需的类型,而不需要递归或corecursion语言支持。
让我们以列表为例。我们可以使用以下ListF
类型为列表的“一层”建模:
-- `ListF` is short for "List functor"
data ListF a next = Nil | Cons a next
将该定义与我们通常如何OrdinaryList
使用普通的递归数据类型定义进行比较:
data OrdinaryList a = Nil | Cons a (OrdinaryList a)
主要区别在于,它ListF
需要一个额外的类型参数(next
),我们将其用作该类型的所有递归/合并递归事件的占位符。
现在,有了ListF
,我们可以定义递归和corecursive列表,如下所示:
type List a = LFix (ListF a)
type CoList a = GFix (ListF a)
...其中:
List
是在没有语言支持递归的情况下实现的递归列表
CoList
是在没有语言支持corecursion的情况下实现的corecursive列表
这两种类型都等效于(“ isomorphic to”)[]
,表示:
- 您可以在
List
和之间进行可逆的来回转换[]
- 您可以在
CoList
和之间进行可逆的来回转换[]
让我们通过定义这些转换函数来证明这一点!
fromList :: List a -> [a]
fromList (LFix f) = f adapt
where
adapt (Cons a next) = a : next
adapt Nil = []
toList :: [a] -> List a
toList xs = LFix (\k -> foldr (\a x -> k (Cons a x)) (k Nil) xs)
fromCoList :: CoList a -> [a]
fromCoList (GFix start step) = loop start
where
loop state = case step state of
Nil -> []
Cons a state' -> a : loop state'
toCoList :: [a] -> CoList a
toCoList xs = GFix xs step
where
step [] = Nil
step (y : ys) = Cons y ys
因此,实现Dhall类型的第一步是转换递归Graph
类型:
data Graph a = Node { id :: a, neighbors :: [ Graph a ] }
...到等效的递归表示:
data GraphF a next = Node { id ::: a, neighbors :: [ next ] }
data GFix f = forall x . GFix x (x -> f x)
type Graph a = GFix (GraphF a)
...虽然可以简化类型,但我发现更容易GFix
处理以下情况f = GraphF
:
data GraphF a next = Node { id ::: a, neighbors :: [ next ] }
data Graph a = forall x . Graph x (x -> GraphF a x)
Haskell没有像Dhall这样的匿名记录,但是如果这样做,我们可以通过内联以下定义来进一步简化类型GraphF
:
data Graph a = forall x . MakeGraph x (x -> { id :: a, neighbors :: [ x ] })
现在,它开始看起来像是Dhall类型的Graph
,尤其是如果我们替换x
为node
:
data Graph a = forall node . MakeGraph node (node -> { id :: a, neighbors :: [ node ] })
但是,还有最后一个棘手的部分,即如何将ExistentialQuantification
Haskell 转换为Dhall。事实证明,您始终可以forall
使用以下等效性将存在性量化转换为通用量化(即):
exists y . f y ≅ forall x . (forall y . f y -> x) -> x
我相信这被称为“死刑”
有关更多详细信息,请参见:
...而最后一个技巧就是Dhall类型:
let Graph
: Type
= forall (Graph : Type)
-> forall ( MakeGraph
: forall (Node : Type)
-> Node
-> (Node -> { id : Text, neighbors : List Node })
-> Graph
)
-> Graph
...其中forall (Graph : Type)
扮演着相同的角色forall x
前面的公式中,并forall (Node : Type)
扮演着相同的角色forall y
以前的配方食品中。