- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在进行简单的蒙特卡洛模拟时遇到了这个问题。我使用 MonadIO
、MonadState
和 MonadRandom
来简化程序状态的维护。我遇到了 Count not deduce
错误,但是当我删除程序的顶级 monad 的类型时,它突然编译得很好。
我是不是对这种类型做错了什么?我需要指定更严格的类型吗?您能解释一下为什么添加类型信息会导致类型计算更加模糊而不是更加模糊吗?
更新
我尝试在 ghci 中使用 :t 来获取类型,我得到了 (Field1 s s Int Int, Zoom m n Int s, Functor (Zoomed m ()))
。我在我原来的程序中做了同样的事情,得到了 (Zoom m1 m (Map Int Int) ProgramState, Functor (Zoomed m1 ()), MonadRandom m1, MonadIO m)
我很高兴在这里有一些东西,但由于放入类型的主要目的是使代码更具可读性并使错误消息更好,我想了解如何生成和读取这些类型。
我还想更好地理解添加类型约束如何导致类型计算变得不明确。
结束更新
我简化了代码:
{-# LANGUAGE FlexibleContexts #-}
import Control.Monad.State.Strict
import Control.Lens
updateCount :: (MonadState Int a) => a ()
updateCount = modify (+ 1)
run :: MonadState (Int, Int) a => a ()
run = zoom _1 updateCount
main = execStateT run (0, 0) >>= print
如果我删除 run::
行,一切正常,但如果我尝试按原样编译,我会收到以下错误:
[1 of 1] Compiling Main ( bug-report.hs, bug-report.o )
bug-report.hs:9:7: error:
• Could not deduce (Zoom m0 a Int (Int, Int))
arising from a use of ‘zoom’
from the context: MonadState (Int, Int) a
bound by the type signature for:
run :: MonadState (Int, Int) a => a ()
at bug-report.hs:8:1-38
The type variable ‘m0’ is ambiguous
Relevant bindings include run :: a () (bound at bug-report.hs:9:1)
These potential instances exist:
instance Monad z => Zoom (StateT s z) (StateT t z) s t
-- Defined in ‘Control.Lens.Zoom’
...plus 12 instances involving out-of-scope types
(use -fprint-potential-instances to see them all)
• In the expression: zoom _1 updateCount
In an equation for ‘run’: run = zoom _1 updateCount
bug-report.hs:9:12: error:
• Could not deduce (Functor (Zoomed m0 ()))
arising from a use of ‘_1’
from the context: MonadState (Int, Int) a
bound by the type signature for:
run :: MonadState (Int, Int) a => a ()
at bug-report.hs:8:1-38
The type variable ‘m0’ is ambiguous
These potential instances exist:
instance Functor Identity -- Defined in ‘Data.Functor.Identity’
instance Functor IO -- Defined in ‘GHC.Base’
instance [safe] Functor m => Functor (StateT s m)
-- Defined in ‘Control.Monad.Trans.State.Strict’
...plus four others
...plus 41 instances involving out-of-scope types
(use -fprint-potential-instances to see them all)
• In the first argument of ‘zoom’, namely ‘_1’
In the expression: zoom _1 updateCount
In an equation for ‘run’: run = zoom _1 updateCount
bug-report.hs:9:15: error:
• Could not deduce (MonadState Int m0)
arising from a use of ‘updateCount’
from the context: MonadState (Int, Int) a
bound by the type signature for:
run :: MonadState (Int, Int) a => a ()
at bug-report.hs:8:1-38
The type variable ‘m0’ is ambiguous
These potential instances exist:
instance [safe] Monad m => MonadState s (StateT s m)
-- Defined in ‘Control.Monad.State.Class’
...plus 13 instances involving out-of-scope types
(use -fprint-potential-instances to see them all)
• In the second argument of ‘zoom’, namely ‘updateCount’
In the expression: zoom _1 updateCount
In an equation for ‘run’: run = zoom _1 updateCount
最佳答案
Zoom
不允许你在 MonadState
上多态工作一般因为MonadState
单独没有提供一种方法来换出状态的类型。
也就是说,如果你想使用Zoom
,您可能应该使用混凝土 StateT
, 如果你不需要 StateT
的多态性具体而言,只能在底层 monad 上使用多态性(即 m
中的 StateT s m
)。或者,您可以跳过 zoom
并且仍然使用透镜来关注纯函数的状态部分,使用像 modifying
这样的组合器—在这里,modifying _1 (+ 1)
.
当您删除 run
的类型签名时,推断类型(使用 NoMonomorphismRestriction
)是这样的:
run ::
( Zoom m n Int s
, Field1 s s Int Int
, Functor (Zoomed m ())
)
=> n ()
即:
一些外部 monad 中的 Action n
其状态是s
(这里,(Int, Int)
)
在一些内部 monad 中包装一个 Action m
其状态是Int
您可以在哪里查看和更新 Int
在 s
的第一个索引处
和Zoomed m ()
是 Functor
, 其中类型族申请 Zoomed (StateT s u) ()
评估为 Focusing u ()
;这是必需的,因为 Functor
镜头类型的限制,Functor f => (a -> f b) -> (s -> f t)
Functor
约束在这里是必需的,因为直到类型族 Zoomed
编译器才能推断出它。应用于混凝土 m
.请注意,您不需要 MonadState
不过,约束是因为 Zoom
隐含了它.
您可以通过几种不同的方式稍微简化这一过程,具体取决于您的特定用例。例如,使用具体的外部状态:
run ::
( Zoom m n Int (Int, Int)
, Functor (Zoomed m ())
)
=> n ()
或者将责任传递给调用者并采取 Lens
:
runOn
:: (Zoom m n Int s, Functor (Zoomed m ()))
=> LensLike' (Zoomed m ()) s Int
-> n ()
runOn lens = zoom lens updateCount
print =<< execStateT (runOn _1) (0 :: Int, 0 :: Int)
关于haskell - 混合 MonadIO、MonadState 和缩放时出现 "Could not deduce"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65115309/
我知道您不应该将打印与 printf,cout 和 wprintf,wcout 混合使用,但是很难找到一个好的答案,为什么以及是否可以绕过它。问题是我使用了一个用 printf 打印的外部库,而我自己
我有以下问题: class A: animal = 'gerbil' def __init__(self): self.result = self.calculate_
我在屏幕上渲染了一堆形状(多边形),我没有使用深度测试。 我只是希望这些形状在绘制在空白区域时使用自己的颜色,并且在绘制到任何非空区域时使用红色像素,即在我的情况下绘制在另一个多边形上。 这里的问题实
我正在尝试在我的 Groovy/Grails 应用程序中混入一个类,我正在使用 the syntax defined in the docs ,但我不断收到错误消息。 我有一个如下所示的域类: cla
我已经找到了 5349574673 个关于 Alpha 混合的页面,但我仍然无法获得想要的结果。我正在尝试使用 opengl 使 gif/png 文件正确显示(具有透明度/半透明度)。 这是我的初始化
我正在尝试记录以下代码,但我似乎无法让 JSDoc 记录该类,甚至无法引用它的存在。 // SomeMixin.js export default superclass => class SomeMi
我有一个类型家族,我想使用 mixin 以模块化方式“丰富”它们。例如: trait Family { self => trait Dog { def dogname:String
我在 Storyboard中有 Collection View 。我在 Storyboard中有一部分单元格,还有我以编程方式创建的部分单元格。我应该在 sizeForItemAtIndexPath
我有一个字节数组,我想更改它的访问方式。这是数组: char bytes[100]; 我想要另一个数组来改变原始数组的访问方式。如果我们可以将引用放在数组中,它看起来像这样: char& bytes_
我需要从 c 文件调用 cpp 方法。我为此编写了这个界面.. cpp文件 extern "C" void C_Test(int p){ Class::CPP_Test(p); } c文件
我的网站有两份 CSS 表,一份是主 CSS,一份是移动 CSS。问题是在移动设备(iPhone、Android)上查看时,两个样式表会混淆。例如,在 iPhone 上查看网站时,会应用主样式表中的某
维护人员的说明:此问题涉及已过时的 bokeh.charts API,该 API 已于多年前删除。有关使用现代 Bokeh 创建各种条形图的信息,请参阅: https://docs.bokeh.org
在下图中,蓝色圆圈仅用于调试目的。我的目标是蓝色圆圈后面的每一层都应该是透明的。我只想保持蓝色圆圈外面的可见。 这是用 swift 编写的代码: let croissantView = UIV
我不是 SQL 专家。我正在使用 SQL Server 2005,我正在尝试弄清楚如何构造一个查询,以便它可以满足多种要求。我有两个表定义如下: Classroom - ID - Departme
原创: 我之前问过这个问题,但我最初的例子有点不完整,我想我现在可以更具体地说明我的问题。 对于上下文,我在旧的 Apple mac 计算机上使用 openGL 3.3 并尝试渲染四边形的重叠层。每个
是否可以将内联(类似 json)映射与同一对象的常规映射定义混合使用? 考虑以下示例: person: {age: 32, weight: 82} name: foo 生成的人应具有给定的年龄、体
假设我有一个 Parent 类,它有四个字段 A、B、C 和 D,这样 C 和 D 可以选择传递或使用默认实现进行初始化: open class Parent(val a: A, val b: B,
我正在使用 symphony (1.4) 框架在 PHP 中开发一个 Web 应用程序。该代码使用 SVN 进行版本控制。在此网络应用程序中,我们所有客户共享一个共同的基础,以及一些专门为每个客户创建
我想使用两个小部件(一次一个)作为我的应用程序的基础/背景,上面有一个 QML UI 和一个无边框窗口。它应该看起来像这样: 基于 OpenGL 的扫描组件 通过窗口句柄操作的 3D 可视化组件 多个
我们有一个混合的 AngularJS/Angular 8 应用程序,并且我们不断遇到来自不同版本框架的组件之间的变化检测非常慢的问题。到目前为止,我们只在 Angular 组件中使用 AngularJ
我是一名优秀的程序员,十分优秀!