Documentation

EqCheckingAbstractInterpretation.CCS.Basic

inductive EqCheckingAbstractInterpretation.CCS.CCS (Action : Type u) (Name : Type v) :
Type (max u v)

CCS processes: action prefix, nondeterministic choice, deadlock 0, and recursive variables.

  • prefix {Action : Type u} {Name : Type v} : ActionCCS Action NameCCS Action Name
  • choice {Action : Type u} {Name : Type v} : CCS Action NameCCS Action NameCCS Action Name
  • zero {Action : Type u} {Name : Type v} : CCS Action Name
  • var {Action : Type u} {Name : Type v} : NameCCS Action Name
Instances For
    @[reducible, inline]
    abbrev EqCheckingAbstractInterpretation.CCS.Env (Action : Type u) (Name : Type v) :
    Type (max v u)

    A recursive process environment maps each name to its defining CCS term.

    Equations
    Instances For
      @[reducible, inline]
      abbrev EqCheckingAbstractInterpretation.CCS.ProcSet (Action : Type u) (Name : Type v) :
      Type (max v u)
      Equations
      Instances For
        @[implicit_reducible]
        instance EqCheckingAbstractInterpretation.CCS.instSingletonCCSProcSet {Action : Type u} {Name : Type v} :
        Singleton (CCS Action Name) (ProcSet Action Name)
        Equations
        @[implicit_reducible]
        instance EqCheckingAbstractInterpretation.CCS.instSingletonCCSForallProp {Action : Type u} {Name : Type v} :
        Singleton (CCS Action Name) (CCS Action NameProp)
        Equations
        inductive EqCheckingAbstractInterpretation.CCS.Deriv {Action : Type u} {Name : Type v} (ρ : Env Action Name) :
        CCS Action NameActionCCS Action NameProp

        One-step labeled transition relation derived from the CCS structural rules and the recursive environment.

        • prefix {Action : Type u} {Name : Type v} {ρ : Env Action Name} {a : Action} {p : CCS Action Name} : Deriv ρ (CCS.prefix a p) a p
        • choice_left {Action : Type u} {Name : Type v} {ρ : Env Action Name} {p q : CCS Action Name} {a : Action} {p' : CCS Action Name} : Deriv ρ p a p'Deriv ρ (p.choice q) a p'
        • choice_right {Action : Type u} {Name : Type v} {ρ : Env Action Name} {p q : CCS Action Name} {a : Action} {q' : CCS Action Name} : Deriv ρ q a q'Deriv ρ (p.choice q) a q'
        • var {Action : Type u} {Name : Type v} {ρ : Env Action Name} {X : Name} {a : Action} {p' : CCS Action Name} : Deriv ρ (ρ X) a p'Deriv ρ (CCS.var X) a p'
        Instances For
          def EqCheckingAbstractInterpretation.CCS.DerivSet {Action : Type u} {Name : Type v} (ρ : Env Action Name) (p : CCS Action Name) (a : Action) :
          CCS Action NameProp

          The set of a-successors of a single process p.

          Equations
          Instances For
            def EqCheckingAbstractInterpretation.CCS.DerivSetOf {Action : Type u} {Name : Type v} (ρ : Env Action Name) (P : CCS Action NameProp) (a : Action) :
            CCS Action NameProp

            The lifted derivative: the set of a-successors of any process in P.

            Equations
            Instances For
              def EqCheckingAbstractInterpretation.CCS.Enabled {Action : Type u} {Name : Type v} (ρ : Env Action Name) (p : CCS Action Name) :
              ActionProp

              The set of actions immediately enabled at process p.

              Equations
              Instances For