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:指数爆炸

随机推荐

  1. linux中几个热键

    重要的几个热键[Tab],[ctrl]-c, [ctrl]-d  [Tab]按键---具有『命令补全』不『档案补齐』的功能 [Ctrl]-c按键---让当前的程序『停掉』 [Ctrl]-d按键---通 ...

  2. Python学习之旅(二十三)

    Python基础知识(22):进程和线程(Ⅰ) 1.多进程 (1)fork Python的os模块封装了常见的系统调用,其中就包括fork,可以在Python程序中轻松创建子进程 fork可以在Mac ...

  3. 微信OAuth授权获取用户OpenId-JAVA(个人经验)【申明:来源于网络】

    微信OAuth授权获取用户OpenId-JAVA(个人经验)[申明:来源于网络] 地址:https://my.oschina.net/xshuai/blog/293458

  4. Vue事件总线(eventBus)$on()会多次触发解决办法

    项目中使用了事件总线eventBus来进行两个组件间的通信, 使用方法是是建立eventBus.js文件,暴露一个空的Vue实例,如下: import Vue from 'vue'export def ...

  5. maven build resources

    1.在我用springboot+mytatis时,生成完mapper后,然后访问网站总是报错 错误信息: Servlet.service() for servlet [dispatcherServle ...

  6. numpy 性能提升

    a = np.array([1,2,3,4,5,1,2,2,2])c = np.unique(a)print(c) 对于很大的稀疏矩阵,我们不能用a[a>0]去取大于0的元素,而应该使用np.w ...

  7. date_default_timezone_set()问题解决方案(PHP5.3以上的)

      date() [<a href='function.date'>function.date</a>]: It is not safe to rely on the syst ...

  8. Python:遍历一个目录下所有的文件及文件夹,然后计算每个文件的字符和line的小程序

    编写了一个遍历一个目录下所有的文件及文件夹,然后计算每个文件的字符和line的小程序,先把程序贴出来. #coding=utf-8 ''' Created on 2014年7月14日 @author: ...

  9. MySQL Backup mydumper

    生产环境中有一实例每天使用mysqldump备份时长达到了2个小时53分钟,接近3个小时,还不算上备份文件归档的时间,这个时间对于逻辑备份来说有点久.为了提高逻辑备份效率,打算替换为使用mydumpe ...

  10. C#设计模式(10)——组合模式(Composite Pattern)(转)

    一.引言 在软件开发过程中,我们经常会遇到处理简单对象和复合对象的情况,例如对操作系统中目录的处理就是这样的一个例子,因为目录可以包括单独的文件,也可以包括文件夹,文件夹又是由文件组成的,由于简单对象 ...