gpt4 book ai didi

coq - 类型方案的提取

转载 作者:行者123 更新时间:2023-12-04 20:16:53 25 4
gpt4 key购买 nike

我正在尝试提取一些我用 Coq 编写的文件系统代码。我想用 Haskell 的 IO Monad 替换我的 FileIO Monad。我的代码如下所示:

Variable FileIO : Type -> Type.
Variable sync : FileIO unit.

Extract Inlined Constant sync => "synchronize".
Extract Inlined Constant FileIO => "IO".

Recursive Extraction append.

替换 sync 没问题,但是当我尝试用 IO 替换 FileIO 时,出现以下错误:

Error: The type scheme axiom  FileIO needs 1 type variable(s).

这个错误是什么意思,我该如何解决?

最佳答案

这可能是一个限制。您需要为 FileIO 提供一个参数,并且不允许内联它。

Extract Constant FileIO "x" => "IO x".

关于coq - 类型方案的提取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28144162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com