InizioSpecificaAttivitaAtomica

Verifica(tab: Insieme<Casella>):(ok:bool)
	
Pre: nessuna

Post:   Definiamo:
           OK1 = EXISTS c in tab. c in Casella AND NOT (c in CasellaSalto);
           OK2 = FORALL c in tab. FORALL s. ((c,s) \in successiva IMPLIES s in tab);
           OK3 = FORALL c in tab. FORALL s. (c in CasellaSalto AND (c,s) \in salta IMPLIES s in tab);
        Allora:
	ok = OK1 AND OK2 AND OK3
  
FineSpecifica


