zoukankan      html  css  js  c++  java
  • Introduction to Discrete event system学习笔记4.9

    1.A Deterministic Automaton,defined by G,is a six-tuple

      G=(X,E,f,Γ,x0,Xm)

    where:

      X is the set of states

      E the finite set of events associated with G

      f:X×E→X is the transition function:f(x,e)=y means that there is a transition labeled by event e from state x to state y;in general,f is a partial function on its domain

      Γ:X→2is the active event function(or feasible event functiion);Γ(x) is the set of all events e for which f(x,e) is defined and it is called the active event set(or feasible event set)of G at x.

      x0 is the initial state

      Xm ⊆X is the set of marked states.

    2.The language generated by G=(X,E,f,Γ,x0,Xm) is

      L(G):={s∈ E*:f(x0,s) is defined}

      The language marked by G is

      Lm(G):={s∈ L(G):f(x0,s)∈ Xm}

      The above definitions assume that we are working with the extended transition function f:X×E*→X. An immendiate consequece is that for any G with non-empty X.ε∈L(G).

      

    next:P86

     

  • 相关阅读:
    flutter-常见的基础组件(一)
    flutter-dart语言初识
    从零开始配置安装Flutter开发环境
    vue路由vue-router
    css秘密花园一
    mvvm实现一个简单的vue
    js常见的设计模式一
    es6 generator函数的异步编程
    es6 async和await
    模块--random
  • 原文地址:https://www.cnblogs.com/snailjn/p/3009448.html
Copyright © 2011-2022 走看看