Documentation

Acmoi.Exercise1_19

structure digraph (σ : Type) :
  • edge : σσProp
Instances For
    inductive walk_digraph {σ : Type} (M : digraph σ) :
    σσType
    Instances For
      def digraph_of_seq4 {σ : Type} (s0 : σ) (s1 : σ) (s2 : σ) (s3 : σ) :
      Equations
      • digraph_of_seq4 s0 s1 s2 s3 = { edge := fun (q0 q1 : σ) => (q0, q1) = (s0, s1) (q0, q1) = (s1, s2) (q0, q1) = (s2, s3) }
      Instances For
        def walk_of_digraph_of_seq4 {σ : Type} (s0 : σ) (s1 : σ) (s2 : σ) (s3 : σ) :
        walk_digraph (digraph_of_seq4 s0 s1 s2 s3) s0 s3
        Equations
        Instances For