- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试建模一个状态机,其节点可以是具有 Haskell 中的调用堆栈的其他机器。
例如 Bar
是一个相当简单的机器,由
module Bar (BarState(..), run) where
import Cont
data BarState = BInit | BMid | BEnd deriving Show
run BInit = Cont BMid
run BMid = End BEnd
Cont
类型描述状态转换:
module Cont (Cont(..)) where
data Cont where
-- continue in the same machine
Cont :: Show s => s -> Cont
-- fork a new machine
Start :: (Show s, Show s') => s -> s' -> Cont
-- final state
End :: Show s => s -> Cont
我们可以
继续
在同一台机器上继续Start s s'
End s
在状态 s
结束机器Bar
不会调用任何其他流程,因此它只使用 Cont
和 End
,但 Foo
是调用 Bar
的机器:
module Foo (FooState(..), run) where
import qualified Bar as Bar
import Cont
data FooState = FInit | FBar | FEnd deriving Show
run FInit = Start FBar Bar.BInit
run FBar = End FEnd
一台机器有时可以处于一种状态,并且任何机器都可以调用另一台机器(通过Start s s'
)。我用一堆状态来描述我的整个用户状态:
import qualified Bar as Bar
import qualified Foo as Foo
import Cont
data Stack s = Empty | s ::: Stack s ; infixr 5 :::
data States = FooState Foo.FooState | BarState Bar.BarState
run :: Stack States -> Stack States
run Empty = error "Empty stack"
run (s ::: rest) = proceed (run' s) rest
run' :: States -> Cont
run' (FooState s) = Foo.run s
run' (BarState s) = Bar.run s
proceed :: Cont -> Stack States -> Stack States
proceed (Cont s) rest = undefined ::: rest
proceed (Start s s') rest = undefined ::: undefined ::: rest
proceed (End s) rest = rest
问题是我无法在 Cont
构造函数中的 s
上进行模式匹配。
我的最终目标是拥有一个可序列化的堆栈,使我能够从任何有效状态继续流程。例如:
run [FInit] -> [BInit, FInit]
run [BInit, FInit] -> [BEnd, FInit]
run [BMid, FInit] -> [BEnd, FInit]
run [BEnd, FInit] -> [FEnd]
本例模块源码可获取here .
可能有更好的方法来编码这个模型,但我不限于我的。
最佳答案
您不需要模式匹配。据我了解,您所需要做的就是执行步骤并序列化/反序列化。这可以在不知道确切类型的情况下完成。
{-# LANGUAGE UnicodeSyntax #-}
{-# OPTIONS_GHC -fno-warn-tabs #-}
module States (
) where
import Prelude.Unicode
import Control.Arrow
import Text.Read (Read(readsPrec), readMaybe)
-- | State is something, which have next action and string representation
data State = State {
next ∷ Cont,
save ∷ String }
instance Show State where
show = save
-- | Stack is list of states
type Stack = [State]
-- | Action operates on 'State'
data Cont = Cont State | Start State State | End State deriving (Show)
-- | Converts actual data to 'State'
cont ∷ IsState s ⇒ s → Cont
cont = Cont ∘ state
start ∷ (IsState s, IsState s') ⇒ s → s' → Cont
start x x' = Start (state x) (state x')
end ∷ IsState s ⇒ s → Cont
end = End ∘ state
run ∷ Stack → Stack
run [] = error "empty stack"
run (s : ss) = proceed (next s) ss
proceed ∷ Cont → Stack → Stack
proceed (Cont s) rest = s : rest
proceed (Start s s') rest = s' : s : rest
proceed (End s) rest = rest
serialize ∷ Stack → [String]
serialize = map save
-- | Here we have to provide some type in order to know, which
-- read functions to use
deserialize ∷ IsState s ⇒ [String] → Maybe [s]
deserialize = mapM readMaybe
class (Read s, Show s) ⇒ IsState s where
step ∷ s → Cont
-- | No need of implementation, just to allow using when implementing step
state ∷ s → State
state x = State (step x) (show x)
-- | Convert actual data to stack
stack ∷ IsState s ⇒ [s] → Stack
stack = map state
-- | Union of states, to specify type of 'deserialize'
data BiState l r = LState l | RState r
instance (Read l, Read r) ⇒ Read (BiState l r) where
readsPrec p s = map (first LState) (readsPrec p s) ++ map (first RState) (readsPrec p s)
instance (Show l, Show r) ⇒ Show (BiState l r) where
show (LState x) = show x
show (RState y) = show y
instance (IsState l, IsState r) ⇒ IsState (BiState l r) where
step (LState x) = step x
step (RState y) = step y
-- Test data
data BarState = BInit | BMid | BEnd deriving (Read, Show)
data FooState = FInit | FBar | FEnd deriving (Read, Show)
instance IsState BarState where
step BInit = cont BMid
step BMid = end BEnd
instance IsState FooState where
step FInit = start FBar BInit
step FBar = end FEnd
-- Usage
test' ∷ IO ()
test' = do
let
start' = [state FInit]
next' = run start'
print next' -- [BInit,FBar]
let
saved' = serialize next'
Just loaded' = deserialize saved' ∷ Maybe [BiState FooState BarState]
next'' = run next'
print next'' -- [BMid,FBar]
print $ run $ stack loaded' -- [BMid,FBar] too
let
go [] = putStrLn "done!"
go st = print st' >> go st' where
st' = run st
go next''
-- output:
-- [BInit,FBar]
-- [BMid,FBar]
-- [BMid,FBar]
-- [FBar]
-- []
-- done!
关于haskell - 编码一个状态机,其节点可以是其他嵌套机器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39931452/
我被难住了。如果我对文件路径进行硬编码,则此脚本在我的 Windows 机器上的 Eclipse 中运行良好。如果我尝试接受参数并在我的边缘节点(一个 linux 机器)上运行它,它不会抛出任何特定的
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 关闭 8 年前。 这个问题似乎不是关于 a specific programming problem,
我们最近将我们的基础架构从 Solaris(Oracle/Sun Java) 迁移到 AIX(IBM Java)。 我们的客户将使用我们共享的算法(AES)和 key 上传加密文件,一旦加密文件放置在
我想编写一个程序(java),它接受一个文件作为输入,对其进行加密(使用aes128)并通过ftp发送该加密文件,接收者接收它并使用 key 进行解密。我是初学者,有什么帮助可以做到这一点吗?非常感谢
我正在尝试将一些为 1c2 机器 (thumb) 编译的 DLL 导入 WinMobile 6.1 C# 智能设备项目。 然而,当我尝试将它们导入我的 C# 项目时,我得到“无法添加对...的引用”,
我正在寻找 FPGA + 机器。 它应该是入门级定价(例如不超过 200 美元)。 编辑:我想制作一个 ASM 图表并将 FPGA 编程为我在图表中指定的行为 最佳答案 你看过Arduino ? 关于
这是我想完成的: Write a program that stimulates a bean machine Your program should prompt the user to enter
我尝试使用以下命令在 Windows 10 上使用 hyperv 创建一台机器: docker-machine create --driver hyperv default 但它给了我: This m
我有个问题 我的问题是我有一个将 mapred.map.tasks 配置为10的作业(抓取工具),这意味着我的工作将一次创建10个映射器。但是我的集群将 mapred.tasktracker.map.
我正在尝试使用命令重新启动 Docker sudo docker restart a7f8ce75f51f 但我收到以下错误 Error response from daemon: Cannot re
在新机器上引导 Eclipse 是一个非常耗时的过程,您最终会问自己是否真的需要每个插件。但这些都很方便,并且有助于养成一致的习惯。 Eclipse 引导问题包括: 解释/记录需要发生的事情 粘贴正确
我们希望建立一个 Docker 开发节点,我们团队中的任何人都可以将东西部署到其中。 我使用 SSH 创建了一个新的 Docker 机器,如下所示: docker-machine create \
如果可能的话,我想使用 java.util.logging 来做到这一点,有什么想法吗?谢谢。 最佳答案 您可以尝试一下SLF4J . Simple Logging Facade for Java (
当 vagrant up 时,我们的 vagrant box 需要大约 1 小时才能提供第一次运行,在配置过程的最后,我想将盒子打包到本地文件夹中的图像,以便下次需要重建时将其用作基础盒子。我正在使用
我正在为我的图像处理项目构建一个 SVM 线性机,在其中提取正样本和负样本的特征并将其保存到目录中。然后,我使用这些功能训练 SVM,但收到一个无法调试的错误。下面是我用于训练分类器的 train-c
问题描述: 我要将MySQL server 5.7.11 (win32) 安装到Windows server 2012 中。服务器中安装了多个网络接口(interface)卡,我将安装多个绑定(bin
我想安排一台 (AWS) Linux 计算机启动、运行程序,然后自行关闭(以将成本保持在最低水平)。我可以放 mycommand; shutdown 在/etc/rc.local 文件中。但如果我需要
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
如何将此文件的输出发送到另一台 Linux 计算机的主目录。 显然,我想发送此文件的输出: sed '/^\s*#/d;/^$/d' /etc/httpd/conf/httpd.conf 到 nati
我有一个 Linux 机器,我可以使用 SSH 进行 root 访问。 我想使用GDB来调试系统。 这是一个精简的 Debian 软件包;因此,我里面没有任何编译工具。 uname -a 给出: 2.
我是一名优秀的程序员,十分优秀!