- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,假设你有类型
newtype Dual f a = Dual {dual :: forall r. f(a -> r)->r}
f
是 Comonad,
Dual f
是一个单子(monad)(有趣的练习)。它是否可以反过来工作?
fmap ab (Dual da) = Dual $ \fb -> da $ fmap (. ab) fb
和
extract (Dual da) = da $ return id
,但我不知道如何定义
duplicate
或
extend
.
m
可以证明
Dual m
不是共单胞)?
Dual IO a
本质上是
Void
(并且
Const Void
是有效的
Comonad
)。
Dual m a
对于
MonadPlus m
是
Void
(只需使用
dual mzero
)。
Dual Reader
是
Env
.
Dual Writer
是
Traced
.
Dual State
是
Store
, 我认为。
最佳答案
是的,事实上任何仿函数都会以这种方式产生一个独特的共单子(monad),除非 f==0。
设 F 为 Hask 上的内仿函数。让
W(a) = ∀r.F(a->r)->r
W(f) = F(f∗)∗
where g∗(h) = h∘g
class Functor f => Fibration f where
projection :: ∀r. f(r)->r
some_section :: ∀r. r->f(r) -- _any_ section will work
to :: forall f a. Fibration f
=> (∀r.f(a->r) -> r)
-> (∀r.f(r)->r, a)
to(f) = ( f . fmap const
, f(some_section(id)))
from :: forall f a. Fibration f
=> (∀r.f(r)->r, a)
-> (∀r.f(a->r) -> r)
from (π,η) = ev(η) . π
ev :: a -> (a->b) -> b
ev x f = f x
W(a) ≃ ∐a
π::∀f.F(r)->r
a
^
| ε
|
a+a+a
^ | ^
Wε | |δ | εW
| v |
(a+a+a)+(a+a+a)+(a+a+a)
Writer
.自然投影是唯一的,因此由定理 W(a)≃a,并且没有办法尊重原始代数。
Void
,这就是为什么您从 Comonad 获得 Monad 的原因(但这不一定是唯一的!)。
Dual IO a
本质上是无效的 -- ghc/libraries/ghc-prim/GHC/Types.hs
newtype IO a = IO (State# RealWorld -> (# State# RealWorld, a #))
State# RealWorld
索引的唯一规范覆盖空间。 s。您是否可以(或应该)拒绝这可能是一个哲学问题,而不是一个技术问题。 MonadPlus m => Dual m a
是无效的Dual Reader
是..{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ScopedTypeVariables #-}
import Control.Comonad
class Functor f => Fibration f where
x0 :: f ()
x0 = some_section ()
some_section :: forall r. r -> f(r)
some_section x = fmap (const x) x0
projection :: forall r. f(r) -> r
newtype W f a = W { un_w :: forall r. f(a->r)->r }
instance Functor f => Functor (W f) where
fmap f (W c) = W $ c . fmap (. f)
instance Fibration f => Comonad (W f) where
extract = ε
duplicate = δ
-- The counit is determined uniquely, independently of the choice of a particular section.
ε :: forall f a. Fibration f => W f a -> a
ε (W f) = f (some_section id)
-- The comultiplication is unique too.
δ :: forall f a. Fibration f => W f a -> W f (W f a)
δ f = W $ ev(f) . un_w f . fmap const
ev :: forall a b. a -> (a->b)->b
ev x f = f x
-- An Example
data Pair a = P {p1 ::a
,p2 :: a
}
deriving (Eq,Show)
instance Functor Pair where
fmap f (P x y) = P (f x) (f y)
instance Fibration Pair where
x0 = P () ()
projection = p1
type PairCover a = W Pair a
-- How to construct a cover (you will need unsafePerformIO if you want W IO.)
cover :: a -> W Pair a
cover x = W $ ev(x) . p1
关于haskell - 你能根据 `Comonads` 定义 `Monads` 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34302616/
Representable Store Comonad 和 Store Comonad 提供了类似的功能......我们什么时候应该使用一种而不是另一种,有什么好处? 最佳答案 作为引用,以下是它们是
为什么定义函数时重复 duplicate :: w a -> w (w a) 对于 Comonad 类型类 ( link ),您必须修改“上下文中”的所有元素(即更改除上下文的当前值之外
我们可以将 monad 描述为计算上下文,并且 monad 实现准确地保留了该上下文的含义。例如选项 - 上下文含义是值可能存在。给定 Option 数据类型,唯一有意义的实现是 pure = som
在我的应用程序中,我正在尝试实现一个动画系统。在这个系统中,动画被表示为帧的循环列表: data CyclicList a = CL a [a] 我们可以(效率低下)按如下方式推进动画: advanc
鉴于 fp-course 中的以下内容: class Functor f where () :: (a -> b) -> f a -> f b class Functor
我试图找出 unfold/coiter 之间的区别来自Control.Comonad.Cofree和unfold/ana来自Data.Control.Fixedpoint 。 Hackage 库分别是
Haskell 中的 Comonad 类型类是什么?正如 Comonad 中的 Control.Comonad in the comonad package (也欢迎提供 Comonad 类型类的任何
这是 answer 的后续内容我之前的问题。 假设我需要使用函数 def f 将 List[A] 的每个项目 a:A 映射到 b:B (a:A, leftNeighbors:List[A]): B 并
Comonad 是什么,如果可以用 Scala 语法描述的话。我发现scalaz库实现,但尚不清楚它在哪里有用。 最佳答案 嗯,monad 允许您向它们添加值,并根据从非 monad 到 monad
这是这个问题的更具体的变体:Mutate only focus of Store Comonad? ,这样做的好处是不要一次提出多个问题。 是否有兼容 Control.Lens 的镜头它允许我与 co
过去几周我一直在为一个将 monad(主要来自 mtl)移植到 arrows 的库做出贡献。 这是一个来自 mtl 的 StateT monad 的简单示例: newtype StateT s m a
我正在尝试寻找 comonad 的一些实际应用,并且我想尝试看看是否可以将经典的 Wumpus 世界表示为 comonad。 我想使用此代码让 Wumpus 在世界中左右移动并清理脏瓷砖并避免坑。似乎
所以我最近一直在尝试固定点,但最终还是遇到了困难通过定期定点足以发现一些用途;现在我要继续comonadic 固定点,恐怕我被卡住了; 以下是我尝试过的以及有效/无效的一些示例: {-# langua
我已经编写了 Conway's Game of Life 的简单实现使用 Store comonad(见下面的代码)。我的问题是网格生成从第五次迭代开始明显变慢。我的问题是否与我正在使用 Store
好的,假设你有类型 newtype Dual f a = Dual {dual :: forall r. f(a -> r)->r} 事实证明,当 f是 Comonad,Dual f是一个单子(mon
我一直在玩Cofree ,并不能完全理解它。 比如我想玩Cofree [] Num在 ghci 中,并不能得到任何有趣的例子。 例如,如果我构造一个 Cofree 类型: let a = 1 : a
在 Twitter 上,Chris Penner 提出了一个有趣的 comonad instance用于“使用默认值增强的 map ”。相关类型构造函数和实例在此处转录(有外观差异): data Ma
在 this presentation [2005] 我们在幻灯片 32 中读到: The zipper datatype hides a comonad. This is exactly the c
如何组合状态单子(monad)S -> (A, S)与 comonad (E->A, E) ? 我尝试了两种明显的组合S -> ((E->A, E), S)和 (E->S->(A, S), E)但是在
我们可以为 X 解这个方程吗? Applicative is to monad what X is to comonad 最佳答案 经过一番思考,我认为这实际上是一个落后的问题。有人可能会认为 Com
我是一名优秀的程序员,十分优秀!