Step * of Lemma consensus-state4-exclusive-cases

[V:Type]
  ∀A:Id List. ∀s:ConsensusState. ∀a:{a:Id| (a ∈ A)} . ∀i:ℤ.
    ((by state s, passed inning without archiving value
     ∧ in state s, has not completed inning i)
     ∧ (∀v:V. by state s, archived in inning i)))
    ∨ (in state s, has not completed inning i
      ∧ by state s, passed inning without archiving value)
      ∧ (∀v:V. by state s, archived in inning i)))
    ∨ (∃v:V
        (by state s, archived in inning i
        ∧ by state s, passed inning without archiving value)
        ∧ in state s, has not completed inning i)
        ∧ (∀v':V. ¬by state s, archived v' in inning supposing ¬(v' v ∈ V)))))
BY
(InstLemma `consensus-state4-cases` []
   THEN RepeatFor (ParallelLast')
   THEN RepeatFor (Try (ParallelLast))
   THEN Auto) }

1
1. [V] Type
2. Id List@i
3. ConsensusState@i
4. {a:Id| (a ∈ A)} @i
5. : ℤ@i
6. by state s, passed inning without archiving value
7. by state s, passed inning without archiving value
⊢ ¬in state s, has not completed inning i

2
1. [V] Type
2. Id List@i
3. ConsensusState@i
4. {a:Id| (a ∈ A)} @i
5. : ℤ@i
6. in state s, has not completed inning i
7. in state s, has not completed inning i
⊢ ¬by state s, passed inning without archiving value


Latex:


Latex:
\mforall{}[V:Type]
    \mforall{}A:Id  List.  \mforall{}s:ConsensusState.  \mforall{}a:\{a:Id|  (a  \mmember{}  A)\}  .  \mforall{}i:\mBbbZ{}.
        ((by  state  s,  a  passed  inning  i  without  archiving  a  value
          \mwedge{}  (\mneg{}in  state  s,  a  has  not  completed  inning  i)
          \mwedge{}  (\mforall{}v:V.  (\mneg{}by  state  s,  a  archived  v  in  inning  i)))
        \mvee{}  (in  state  s,  a  has  not  completed  inning  i
            \mwedge{}  (\mneg{}by  state  s,  a  passed  inning  i  without  archiving  a  value)
            \mwedge{}  (\mforall{}v:V.  (\mneg{}by  state  s,  a  archived  v  in  inning  i)))
        \mvee{}  (\mexists{}v:V
                (by  state  s,  a  archived  v  in  inning  i
                \mwedge{}  (\mneg{}by  state  s,  a  passed  inning  i  without  archiving  a  value)
                \mwedge{}  (\mneg{}in  state  s,  a  has  not  completed  inning  i)
                \mwedge{}  (\mforall{}v':V.  \mneg{}by  state  s,  a  archived  v'  in  inning  i  supposing  \mneg{}(v'  =  v)))))


By


Latex:
(InstLemma  `consensus-state4-cases`  []
  THEN  RepeatFor  6  (ParallelLast')
  THEN  RepeatFor  2  (Try  (ParallelLast))
  THEN  Auto)




Home Index