non-ZenoAndAcceptingLocation
PATTERN系列的番外篇
对non-Zeno的概念进行了明晰
accepting:if infinitely often the same state
non-Zeno:if time diverges,which means \(\sum_{i\geq20}\)\(\delta_{i}\) \(\rightarrow \infin\)
Abstract zone graphs again:
Extra\(^{+}_{LU}\)
\(\nearrow\) \(\nwarrow\)
Extra\(^{+}_{M}\) Extra\(_{LU}\)
\(\nwarrow\) \(\nearrow\)
Extra\(_{M}\)
ZG^a^\(( \mathcal{A} )\) :(\(q_0\)\(,\) \(Z_0\))\(\rightarrow\)(\(q_1\)\(,\) \(Z_1\))\(\rightarrow\) (\(q_2\)\(,\) \(Z_2\))\(\rightarrow\)\(\cdots\)
\(\mathcal{A}\):(\(q_0\)\(,\) \(v_0\))\(\rightarrow\) (\(q_1\)\(,\) \(v_1\))\(\rightarrow\) (\(q_2\)\(,\) \(v_2\))\(\rightarrow\)\(\cdots\)
(All the above abstractions preserve repeated state reachability)
其中\(\mathcal{A}\)中的每一个状态都是ZG^a^\(( \mathcal{A} )\) 中相应状态的元素,即 \(\forall i\geq0\) 有\(v_i\) \(\in\) \(Z_i\)
Time progress criterion: \(\bigwedge_{x \in X}\)unbounded\((x)\)\(\vee\)fluctuating\((x)\)
non-Zenoness: the time progress criterion is not sound on zones
note: Adding one clock leads to an exponential blowup in the zone graph!
exponential blowup:指数爆炸
随机推荐
- vue文件中引入外部js
1.在项目的入口文件中(app.js)定义remoteScript标签 Vue.component('remote-script', { render: function (createElement ...
- Linux命令更新系统时间,更新所有文件的时间(转)
https://blog.csdn.net/ccj2020/article/details/76026606
- css学习_css文字阴影、盒子阴影
文字阴影和盒子阴影的用法: 多阴影
- Codeforces 1136 - A/B/C/D/E - (Done)
链接:https://codeforces.com/contest/1136/ A - Nastya Is Reading a Book - [二分] #include<bits/stdc++. ...
- CentOS 7.6 安装Oracle 12c
下载地址: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html https://www ...
- [dpdk][sysfs][pci] 在dpdk程序中操纵PCI设备
〇 需求 在DPDK程序运行时,希望能够实时的操纵PCI 网卡设备的驱动绑定与解绑. 本文的目的是为了调查满足以上需求的,kernel提供的,标准的API都有几种,分别是什么.以确定实施方案. 一 ...
- c++代码检测工具
cppcheck是一款静态代码检查工具,可以检查如内存泄漏等代码错误,使用起来比较简单,即提供GUI界面操作,也可以与VS开发工具结合使用. 1.安装 一般会提供免安装版,安装完成后将cppcheck ...
- Windows 10 更改系统文字大小
一. Win + R 进入Regedit: 二. 定位到下图的位置: 三. 选中一个项目,右键,选中修改二进制,打开后如下图: 四. 1.这里,0000一行中的第一位,对应了图形界面设置中的字体大小. ...
- CF280D k-Maximum Subsequence Sum
题目链接:洛谷 题目大意:[题意翻译已经够直白了] 首先,相信大家一开始都是想去直接dp,但是发现复杂度不对. 于是我们考虑一个黑科技:模拟费用流(相信大部分人看见数据范围就绝对不会想到费用流) 我们 ...
- 解决端口耗尽问题: tcp_tw_reuse、tcp_timestamps
一.本地端口有哪些可用 首先,需要了解到TCP协议中确定一条TCP连接有4要素:local IP, local PORT, remote IP, remote PORT.这个四元组应该是唯一的. 在我 ...