美文网首页
5. Nondeterminism

5. Nondeterminism

作者: 何大炮 | 来源:发表于2017-09-26 09:49 被阅读0次

Definitions

Non-determinism in design: a property of a computation which may have more than one result.
Non-determinism in interaction: A property of the operation environment which may lead to different sequences of concurrent stimuli.

Advantage

  1. The compiler can directly translate the source code into a concurrent implementation.
  2. Implementation gains potentially significantly in performance.
  3. The programmer do not need to handle any of the details of a concurrent implementation

Implementation form in Ada

Select_statement: selective_accept, conditional_entry-call, time_entry, asynchronous_select

  1. selective_accept
    First: select-accept
    Second:select-guarded-accept
    Third:select-guarded-accept-delay
    Fourth:select-guard-accept-terminate
    Fifth:select-guard-accept-else

Correctness of non-deterministic program

  1. Correctness predicates needs to hold true irrespective of the actual sequence of interaction point.
  2. Correctness predicates needs to hold true for all possible sequence of interaction point.

相关文章

  • 5. Nondeterminism

    Definitions Non-determinism in design: a property of a co...

  • 5.

    玉楼春 宋 宋祁 东城渐觉风光好,縠皱波纹迎客...

  • 5.

    我妈一米七,以前是个模特儿。我很佩服那些当模特的人,所以小时候我一直都想超越我妈,立志长到一米七。 这个目...

  • 5.

    1.编译器?1.编译器:预处理,把宏替换,删除注释,产生.i文件。2.编译:把i转换成汇编语言,产生.s文件。3....

  • 5.

    尊严,对于男人有时比性命还重要。当一个长辈对你要求过高,我认为是好事,但自身应该是正直的人。一个长辈对晚辈要求一而...

  • 5.

    8-31 刚得到消息,明天休斯顿的航班恢复,虽然延迟出发,我真的该走了,已经在北京待了七天,再改签最早也要9月7号...

  • 5.

    [Day5] 打卡金句: Who are you? I'm Jim. Who is the guy over th...

  • 5.

    如果哪一天,我去听了五月天的演唱会。我想我感动的泪水,那一定是想起你了。 爱过。 其实很舍不得。我放不下他,却又舍...

  • 5.

    很多人都在走着 看似都有要去的地方 实则漫无目的 而我是站在他们中间 看着他们行走的那个

  • 5. this

    执行上下文的生命周期: this的指向,是在函数被调用的时候确定的。即执行上下文被创建时确定的。在函数执行过程中,...

网友评论

      本文标题:5. Nondeterminism

      本文链接:https://www.haomeiwen.com/subject/xhnjextx.html