微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在Dafny中定义这种常规语言?

如何解决如何在Dafny中定义这种常规语言?

自动机理论与应用”一书中有一个关于语言的问题

equation describing a language L that consists of all strings w containing only the characters 'a' and 'b' such that there exists a nonempty string x containing only the characters 'a' and 'b' such that w equals the character 'a' followed by the string x followed by the character 'a'

如何在Dafny中定义这种语言?

解决方法

这是L的定义到达夫尼的直接表达。

predicate ContainsOnlyAsAndBs(s: string)
{
  forall c | c in s :: c == 'a' || c == 'b'
}

predicate L(w: string)
  requires ContainsOnlyAsAndBs(w)
{
  exists x | ContainsOnlyAsAndBs(x) && x != [] :: w == ['a'] + x + ['a']
}

请注意,在Dafny中,类型string被定义为seq<char>。因此,我们可以使用通常的内置方法来处理字符串上的序列。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。