Documentation

Cslib.Foundations.Semantics.LTS.Basic

Labelled Transition System (LTS) #

A Labelled Transition System (LTS) models the observable behaviour of the possible states of a system. They are particularly popular in the fields of concurrency theory, logic, and programming languages.

Main definitions #

Main statements #

References #

structure Cslib.LTS (State : Type u) (Label : Type v) :
Type (max u v)

A Labelled Transition System (LTS) for a type of states (State) and a type of transition labels (Label) consists of a labelled transition relation (Tr).

  • Tr : StateLabelStateProp

    The transition relation.

Instances For
    theorem Cslib.LTS.ext_iff {State : Type u} {Label : Type v} {x y : LTS State Label} :
    x = y x.Tr = y.Tr
    theorem Cslib.LTS.ext {State : Type u} {Label : Type v} {x y : LTS State Label} (Tr : x.Tr = y.Tr) :
    x = y
    def Cslib.LTS.UnlabelledTr {State : Type u_1} {Label : Type u_2} (lts : LTS State Label) :
    StateStateProp

    The unlabelled transition relation underlying an LTS.

    Equations
    Instances For

      Multistep transitions and executions with finite traces #

      This section treats executions with a finite number of steps.

      inductive Cslib.LTS.MTr {State : Type u} {Label : Type v} (lts : LTS State Label) :
      StateList LabelStateProp

      Definition of a multistep transition.

      (Implementation note: compared to [Montesi2023], we choose stepL instead of stepR as fundamental rule. This makes working with lists of labels more convenient, because we follow the same construction. It is also similar to what is done in the SimpleGraph library in mathlib.)

      • refl {State : Type u} {Label : Type v} {lts : LTS State Label} {s : State} : lts.MTr s [] s
      • stepL {State : Type u} {Label : Type v} {lts : LTS State Label} {s1 : State} {μ : Label} {s2 : State} {μs : List Label} {s3 : State} : lts.Tr s1 μ s2lts.MTr s2 μs s3lts.MTr s1 (μ :: μs) s3
      Instances For
        theorem Cslib.LTS.mTr_iff {State : Type u} {Label : Type v} (lts : LTS State Label) (a✝ : State) (a✝¹ : List Label) (a✝² : State) :
        lts.MTr a✝ a✝¹ a✝² a✝¹ = [] a✝² = a✝ ∃ (μ : Label) (s2 : State) (μs : List Label), lts.Tr a✝ μ s2 lts.MTr s2 μs a✝² a✝¹ = μ :: μs
        theorem Cslib.LTS.MTr.nil_eq {State : Type u} {Label : Type v} (lts : LTS State Label) {s1 s2 : State} (h : lts.MTr s1 [] s2) :
        s1 = s2

        In any zero-steps multistep transition, the origin and the derivative are the same.

        @[simp]
        theorem Cslib.LTS.MTr.nil_iff {State : Type u} {Label : Type v} (lts : LTS State Label) (s1 s2 : State) :
        lts.MTr s1 [] s2 s1 = s2
        theorem Cslib.LTS.MTr.single {State : Type u} {Label : Type v} (lts : LTS State Label) {s1 : State} {μ : Label} {s2 : State} :
        lts.Tr s1 μ s2lts.MTr s1 [μ] s2

        Any transition is also a multistep transition.

        theorem Cslib.LTS.MTr.cons_iff {State : Type u} {Label : Type v} {s1 : State} {μ : Label} {μs : List Label} {s2 : State} {lts : LTS State Label} :
        lts.MTr s1 (μ :: μs) s2 ∃ (s : State), lts.Tr s1 μ s lts.MTr s μs s2

        A multistep transition along μ :: μs is a transition labelled by μ plus a multistep transition labelled by μs.

        theorem Cslib.LTS.MTr.stepR {State : Type u} {Label : Type v} (lts : LTS State Label) {s1 : State} {μs : List Label} {s2 : State} {μ : Label} {s3 : State} :
        lts.MTr s1 μs s2lts.Tr s2 μ s3lts.MTr s1 (μs ++ [μ]) s3

        Any multistep transition can be extended by adding a transition.

        theorem Cslib.LTS.MTr.comp {State : Type u} {Label : Type v} (lts : LTS State Label) {s1 : State} {μs1 : List Label} {s2 : State} {μs2 : List Label} {s3 : State} :
        lts.MTr s1 μs1 s2lts.MTr s2 μs2 s3lts.MTr s1 (μs1 ++ μs2) s3

        Multistep transitions can be composed.

        theorem Cslib.LTS.MTr.single_invert {State : Type u} {Label : Type v} (lts : LTS State Label) (s1 : State) (μ : Label) (s2 : State) :
        lts.MTr s1 [μ] s2lts.Tr s1 μ s2

        Any 1-sized multistep transition implies a transition with the same states and label.

        @[simp]
        theorem Cslib.LTS.MTr.singleton_iff {State : Type u} {Label : Type v} (lts : LTS State Label) (s1 : State) (μ : Label) (s2 : State) :
        lts.MTr s1 [μ] s2 lts.Tr s1 μ s2

        A 1-sized multistep transition is exactly a single transition with the given label.

        theorem Cslib.LTS.MTr.split {State : Type u} {Label : Type v} {s1 : State} {μs μs' : List Label} {s2 : State} {lts : LTS State Label} (h : lts.MTr s1 (μs ++ μs') s2) :
        ∃ (s : State), lts.MTr s1 μs s lts.MTr s μs' s2

        A multistep transition over a concatenation can be split into two multistep transitions.

        theorem Cslib.LTS.MTr.append_iff {State : Type u} {Label : Type v} (lts : LTS State Label) {s1 : State} {μs μs' : List Label} {s2 : State} :
        lts.MTr s1 (μs ++ μs') s2 ∃ (s : State), lts.MTr s1 μs s lts.MTr s μs' s2

        Multistep-transitions over μs ++ μs' are exactly multistep transitions over μs and μs' with a common end & start state (respectively).

        def Cslib.LTS.TrInv {State : Type u} {Label : Type v} (lts : LTS State Label) (p : StateProp) :

        Single-step invariant.

        Equations
        • lts.TrInv p = ∀ (s1 : State) (μ : Label) (s2 : State), lts.Tr s1 μ s2p s1p s2
        Instances For
          def Cslib.LTS.MTrInv {State : Type u} {Label : Type v} (lts : LTS State Label) (p : StateProp) :

          Multistep invariant.

          Equations
          • lts.MTrInv p = ∀ (s1 : State) (μs : List Label) (s2 : State), lts.MTr s1 μs s2p s1p s2
          Instances For
            theorem Cslib.LTS.mtrInv_of_trInv {State : Type u} {Label : Type v} {lts : LTS State Label} {p : StateProp} (htr : lts.TrInv p) :
            lts.MTrInv p

            Any single-step invariant is also a multistep invariant.

            def Cslib.LTS.CanReach {State : Type u} {Label : Type v} (lts : LTS State Label) (s1 s2 : State) :

            A state s1 can reach a state s2 if there exists a multistep transition from s1 to s2.

            Equations
            Instances For
              theorem Cslib.LTS.CanReach.refl {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) :
              lts.CanReach s s

              Any state can reach itself.

              def Cslib.LTS.generatedBy {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) :
              LTS { s' : State // lts.CanReach s s' } Label

              The LTS generated by a state s is the LTS given by all the states reachable from s.

              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                Classes of LTSs #

                class Cslib.LTS.Deterministic {State : Type u} {Label : Type v} (lts : LTS State Label) :

                An lts is deterministic if a state cannot reach different states with the same transition label.

                • deterministic (s1 : State) (μ : Label) (s2 s3 : State) : lts.Tr s1 μ s2lts.Tr s1 μ s3s2 = s3
                Instances
                  theorem Cslib.LTS.Deterministic.eq_of_tr {State : Type u} {Label : Type v} {s1 : State} {μ : Label} {s2 s2' : State} {lts : LTS State Label} [lts.Deterministic] (htr : lts.Tr s1 μ s2) (htr' : lts.Tr s1 μ s2') :
                  s2 = s2'
                  theorem Cslib.LTS.Deterministic.eq_of_mTr {State : Type u} {Label : Type v} {s1 : State} {μs : List Label} {s2 s2' : State} {lts : LTS State Label} [lts.Deterministic] (hmtr : lts.MTr s1 μs s2) (hmtr' : lts.MTr s1 μs s2') :
                  s2 = s2'

                  In a deterministic lts, multistep transitions with a given start state and trace reach a unique end state.

                  def Cslib.LTS.image {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) (μ : Label) :
                  Set State

                  The μ-image of a state s is the set of all μ-derivatives of s.

                  Equations
                  Instances For
                    def Cslib.LTS.imageMultistep {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) (μs : List Label) :
                    Set State

                    The μs-image of a state s, where μs is a list of labels, is the set of all μs-derivatives of s.

                    Equations
                    Instances For
                      def Cslib.LTS.setImage {State : Type u} {Label : Type v} (lts : LTS State Label) (S : Set State) (μ : Label) :
                      Set State

                      The μ-image of a set of states S is the union of all μ-images of the states in S.

                      Equations
                      Instances For
                        def Cslib.LTS.setImageMultistep {State : Type u} {Label : Type v} (lts : LTS State Label) (S : Set State) (μs : List Label) :
                        Set State

                        The μs-image of a set of states S, where μs is a list of labels, is the union of all μs-images of the states in S.

                        Equations
                        Instances For
                          theorem Cslib.LTS.mem_setImage {State : Type u} {Label : Type v} {S : Set State} {μ : Label} {s' : State} {lts : LTS State Label} :
                          s' lts.setImage S μ sS, lts.Tr s μ s'

                          Characterisation of setImage wrt Tr.

                          theorem Cslib.LTS.tr_setImage {State : Type u} {Label : Type v} {S : Set State} {s : State} {μ : Label} {s' : State} {lts : LTS State Label} (hs : s S) (htr : lts.Tr s μ s') :
                          s' lts.setImage S μ
                          theorem Cslib.LTS.mem_setImageMultistep {State : Type u} {Label : Type v} {S : Set State} {μs : List Label} {s' : State} {lts : LTS State Label} :
                          s' lts.setImageMultistep S μs sS, lts.MTr s μs s'

                          Characterisation of setImageMultistep with MTr.

                          theorem Cslib.LTS.mTr_setImage {State : Type u} {Label : Type v} {S : Set State} {s : State} {μs : List Label} {s' : State} {lts : LTS State Label} (hs : s S) (htr : lts.MTr s μs s') :
                          s' lts.setImageMultistep S μs
                          theorem Cslib.LTS.setImage_empty {State : Type u} {Label : Type v} {μ : Label} (lts : LTS State Label) :
                          lts.setImage μ =

                          The image of the empty set is always the empty set.

                          theorem Cslib.LTS.setImageMultistep_setImage_head {State : Type u} {Label : Type v} {S : Set State} {μ : Label} {μs : List Label} (lts : LTS State Label) :
                          lts.setImageMultistep S (μ :: μs) = lts.setImageMultistep (lts.setImage S μ) μs
                          theorem Cslib.LTS.setImageMultistep_foldl_setImage {State : Type u} {Label : Type v} (lts : LTS State Label) :

                          Characterisation of setImageMultistep as List.foldl on setImage.

                          theorem Cslib.LTS.mem_foldl_setImage {State : Type u} {Label : Type v} {S : Set State} {μs : List Label} {s' : State} (lts : LTS State Label) :
                          s' List.foldl lts.setImage S μs sS, lts.MTr s μs s'

                          Characterisation of membership in List.foldl lts.setImage with MTr.

                          @[reducible, inline]
                          abbrev Cslib.LTS.ImageFinite {State : Type u} {Label : Type v} (lts : LTS State Label) :

                          An lts is image-finite if all images of its states are finite.

                          Equations
                          Instances For
                            theorem Cslib.LTS.deterministic_not_lto {State : Type u} {Label : Type v} (lts : LTS State Label) [h : lts.Deterministic] (s : State) (μ : Label) (s' s'' : State) :
                            s' s''lts.Tr s μ s'¬lts.Tr s μ s''

                            In a deterministic LTS, if a state has a μ-derivative, then it can have no other μ-derivative.

                            theorem Cslib.LTS.deterministic_tr_image_singleton {State : Type u} {Label : Type v} (lts : LTS State Label) {s : State} {μ : Label} {s' : State} [lts.Deterministic] :
                            lts.image s μ = {s'} lts.Tr s μ s'
                            theorem Cslib.LTS.deterministic_image_char {State : Type u} {Label : Type v} (lts : LTS State Label) [lts.Deterministic] (s : State) (μ : Label) :
                            (∃ (s' : State), lts.image s μ = {s'}) lts.image s μ =

                            In a deterministic LTS, any image is either a singleton or the empty set.

                            instance Cslib.LTS.instFiniteElemImageOfDeterministic {State : Type u} {Label : Type v} (lts : LTS State Label) [lts.Deterministic] (s : State) (μ : Label) :
                            Finite (lts.image s μ)

                            In a deterministic LTS, the image of any state-label combination is finite.

                            instance Cslib.LTS.deterministic_imageFinite {State : Type u} {Label : Type v} (lts : LTS State Label) [lts.Deterministic] :

                            Every deterministic LTS is also image-finite.

                            instance Cslib.LTS.finiteState_imageFinite {State : Type u} {Label : Type v} (lts : LTS State Label) [Finite State] :

                            Every finite-state LTS is also image-finite.

                            def Cslib.LTS.HasOutLabel {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) (μ : Label) :

                            A state has an outgoing label μ if it has a μ-derivative.

                            Equations
                            Instances For
                              def Cslib.LTS.outgoingLabels {State : Type u} {Label : Type v} (lts : LTS State Label) (s : State) :
                              Set Label

                              The set of outgoing labels of a state.

                              Equations
                              Instances For
                                class Cslib.LTS.FinitelyBranching {State : Type u} {Label : Type v} (lts : LTS State Label) :

                                An LTS is finitely branching if it is image-finite and all states have finite sets of outgoing labels.

                                Instances
                                  instance Cslib.LTS.FinitelyBranching.of_finite {State : Type u} {Label : Type v} (lts : LTS State Label) [Finite State] [Finite Label] :

                                  Every LTS with finite types for states and labels is also finitely branching.

                                  def Cslib.LTS.BoundedUpTo {State : Type u} {Label : Type v} (lts : LTS State Label) (n : ) :

                                  An LTS is bounded up to n if every finite execution has length strictly less than n.

                                  Equations
                                  Instances For
                                    class Cslib.LTS.Bounded {State : Type u} {Label : Type v} (lts : LTS State Label) :

                                    An LTS is bounded if there is a global bound on the length of all of its finite executions.

                                    Instances
                                      class Cslib.LTS.Terminating {State : Type u} {Label : Type v} (lts : LTS State Label) :

                                      An LTS is terminating if its underlying unlabelled transition relation is terminating, equivalently if it admits no infinite execution.

                                      Instances
                                        class Cslib.LTS.Acyclic {State : Type u} {Label : Type v} (lts : LTS State Label) :

                                        An LTS is acyclic if its underlying unlabelled transition relation contains no nonempty cycle.

                                        Instances