• Keine Ergebnisse gefunden

Korrekte Software: Grundlagen und Methoden Vorlesung 9 vom 06.06.19 Vorwärts mit Floyd und Hoare

N/A
N/A
Protected

Academic year: 2022

Aktie "Korrekte Software: Grundlagen und Methoden Vorlesung 9 vom 06.06.19 Vorwärts mit Floyd und Hoare"

Copied!
60
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Korrekte Software: Grundlagen und Methoden Vorlesung 9 vom 06.06.19

Vorwärts mit Floyd und Hoare

Serge Autexier, Christoph Lüth

Universität Bremen

Sommersemester 2019

(2)

Fahrplan

I Einführung

I Operationale Semantik I Denotationale Semantik

I Äquivalenz der Operationalen und Denotationalen Semantik I Der Floyd-Hoare-Kalkül

I Invarianten und die Korrektheit des Floyd-Hoare-Kalküls I Strukturierte Datentypen

I Verifikationsbedingungen I Vorwärts mit Floyd und Hoare I Modellierung

I Spezifikation von Funktionen I Referenzen und Speichermodelle

I Funktionsaufrufe und das Framing-Problem I Ausblick und Rückblick

(3)

Idee

I Hier ist ein einfaches Programm:

// {X =xY =y}

z = y ; //

y = x ; //

x = z ;

//{X =yY =x}

I Wir haben gesehen:

1 Die Verifikation erfolgtrückwärts(von hinten nach vorne).

2 Die Verifikation kannberechnet werden.

I Muss das rückwärts sein? Warum nicht vorwärts? Was ist der Vorteil?

(4)

Idee

I Hier ist ein einfaches Programm:

// {X =xY =y}

z = y ; //

y = x ;

// {X =yY =z} x = z ;

//{X =yY =x}

I Wir haben gesehen:

1 Die Verifikation erfolgtrückwärts(von hinten nach vorne).

2 Die Verifikation kannberechnet werden.

I Muss das rückwärts sein? Warum nicht vorwärts? Was ist der Vorteil?

(5)

Idee

I Hier ist ein einfaches Programm:

// {X =xY =y}

z = y ;

//{X =xY =z} y = x ;

// {X =yY =z} x = z ;

//{X =yY =x}

I Wir haben gesehen:

1 Die Verifikation erfolgtrückwärts(von hinten nach vorne).

2 Die Verifikation kannberechnet werden.

I Muss das rückwärts sein? Warum nicht vorwärts? Was ist der Vorteil?

(6)

Idee

I Hier ist ein einfaches Programm:

// {X =xY =y}

z = y ;

//{X =xY =z} y = x ;

// {X =yY =z} x = z ;

//{X =yY =x}

I Wir haben gesehen:

1 Die Verifikation erfolgtrückwärts (von hinten nach vorne).

2 Die Verifikation kannberechnet werden.

I Muss das rückwärts sein? Warum nicht vorwärts? Was ist der Vorteil?

(7)

Idee

I Hier ist ein einfaches Programm:

// {X =xY =y}

z = y ;

//{X =xY =z} y = x ;

// {X =yY =z} x = z ;

//{X =yY =x}

I Wir haben gesehen:

1 Die Verifikation erfolgtrückwärts (von hinten nach vorne).

2 Die Verifikation kannberechnet werden.

I Muss das rückwärts sein? Warum nicht vorwärts? Was ist der Vorteil?

(8)

Nachteile der Rückwärtsberechnung

// {i6= 3}

.

. // 400 Zeilen, die . // i nicht verändern .

a [ i ]= 5 ; // {a[3] = 7}

Errechnete Vorbedingung (AWP):

(a[3] = 7)[5/a[i]]

I Kann nicht vereinfacht werden, weil wir nicht wissen, ob i6= 3 I AWP wirdsehr groß.

I Das Problem wächst mit der Länge der Programme.

(9)

Der Floyd-Hoare-Kalkül

Vorwärts

(10)

Vorwärtsanwendung der Regeln

I Zuweisungsregel kann nicht vorwärts angewandt werden, weil die Vorbedingung keine offene Variable ist:

` {P[e/x]}x =e{P}

I Die anderen Regeln passen:

` {A} { } {A}

` {A∧b}c0{B} ` {A∧ ¬b}c1{B}

` {A} if(b) c0 else c1{B}

` {A}c1{B} ` {B}c2{C}

` {A}c1;c2{C}

` {A∧b}c{A}

` {A} while(b) c{A∧ ¬b} A0 =⇒A ` {A}c{B} B =⇒B0

` {A0}c{B0}

(11)

Vorwärtsanwendung der Regeln

I Zuweisungsregel kann nicht vorwärts angewandt werden, weil die Vorbedingung keine offene Variable ist:

` {P[e/x]}x =e{P}

I Die anderen Regeln passen:

` {A} { } {A}

` {A∧b}c0{B} ` {A∧ ¬b}c1{B}

` {A} if(b)c0 else c1{B}

` {A}c1{B} ` {B}c2{C}

` {A}c1;c2{C}

` {A∧b}c{A}

` {A} while(b) c{A∧ ¬b}

A0 =⇒A ` {A}c{B} B=⇒B0

` {A0}c{B0}

(12)

Zuweisungregel Vorwärts

I Alternative Zuweisungsregel (nach Floyd):

V 6∈FV(P)

` {P}x=e{∃V.x=e[V/x]∧P[V/x]}

I FV(P) sind diefreienVariablen inP.

I Jetzt ist die Vorbedingung offen — Regel kann vorwärts angewandt werden

I Gilt auch für die anderen Regeln.

(13)

Vorwärtsverkettung

V 6∈FV(P)

` {P}x =e{∃V.x = (e[V/x])∧P[V/x]}

// {0x}

x= 2y ;

// {∃V1.0V1x = 2·y}

x= x +1;

// {∃V2.(∃V1.0V1x = 2·y)[V2/x]x= (x+ 1)[V2/x]}

I Vereinfachungder letzten Nachbedingung:

∃V2.(∃V1.0V1x = 2·y)[V2/x]x = (x+ 1)[V2/x]

⇐⇒ ∃V2.(∃V1.0≤V1V2= 2·y)x =V2+ 1

⇐⇒ ∃V2.∃V1.0≤V1x =V2+ 1∧V2= 2·y

⇐⇒ ∃V1.0≤V1x = 2·y+ 1

(14)

Vorwärtsverkettung

V 6∈FV(P)

` {P}x =e{∃V.x = (e[V/x])∧P[V/x]}

// {0x}

x= 2y ;

// {∃V1.0V1x = 2·y}

x= x +1;

// {∃V2.(∃V1.0V1x = 2·y)[V2/x]x= (x+ 1)[V2/x]}

I Vereinfachungder letzten Nachbedingung:

∃V2.(∃V1.0V1x = 2·y)[V2/x]x = (x+ 1)[V2/x]

⇐⇒ ∃V2.(∃V1.0≤V1V2= 2·y)x =V2+ 1

⇐⇒ ∃V2.∃V1.0≤V1x =V2+ 1∧V2= 2·y

⇐⇒ ∃V1.0≤V1x = 2·y+ 1

(15)

Vorwärtsverkettung

V 6∈FV(P)

` {P}x =e{∃V.x = (e[V/x])∧P[V/x]}

// {0x}

x= 2y ;

// {∃V1.0V1x = 2·y}

x= x +1;

// {∃V2.(∃V1.0V1x = 2·y)[V2/x]x= (x+ 1)[V2/x]}

I Vereinfachungder letzten Nachbedingung:

∃V2.(∃V1.0V1x = 2·y)[V2/x]x = (x+ 1)[V2/x]

⇐⇒ ∃V2.(∃V1.0≤V1V2= 2·y)x =V2+ 1

⇐⇒ ∃V2.∃V1.0≤V1x =V2+ 1∧V2= 2·y

⇐⇒ ∃V1.0≤V1x = 2·y+ 1

(16)

Vorwärtsverkettung

V 6∈FV(P)

` {P}x =e{∃V.x = (e[V/x])∧P[V/x]}

// {0x}

x= 2y ;

// {∃V1.0V1x = 2·y}

x= x +1;

// {∃V2.(∃V1.0V1x = 2·y)[V2/x]x= (x+ 1)[V2/x]}

I Vereinfachungder letzten Nachbedingung:

∃V2.(∃V1.0V1x = 2·y)[V2/x]x = (x+ 1)[V2/x]

⇐⇒ ∃V2.(∃V1.0≤V1V2= 2·y)x =V2+ 1

⇐⇒ ∃V2.∃V1.0≤V1x =V2+ 1∧V2= 2·y

⇐⇒ ∃V1.0≤V1x = 2·y+ 1

(17)

Regeln der Vorwärtsverkettung

1 Wennx nicht in Vorbedingung auftritt, dannP[V/x]P.

2 Wennx nicht in rechter Seitee auftritt, dann e[V/x]≡e.

3 Wenn beides der Fall ist, kann der Existenzquantor wegfallen:

V 6∈FV(P) =⇒ ∃V.PP

4 Wennx vorher zugewiesen wurde, Vereinfachung mit

∃V.P[V]∧V =t =⇒P[t/V]

(18)

Vorwärtsverkettung

I Vorwärtsaxiom äquivalent zum Rückwärtsaxiom.

I Vorteil: Vorbedingung bleibt kleiner

I Nachteil: in der Anwendungumständlicher

I Vereinfachung benötigt Lemma:∃x.P(x)∧x=t⇐⇒P(t) Zwischenfazit: Der Floyd-Hoare-Kalkül istsymmetrisch

Es gibt zwei Zuweisungsregeln, eine für dieRückwärtsanwendung von Regeln, eine für die Vorwärtsanwendung

(19)

Vorwärtsberechnung von

Verifikationsbedingungen

(20)

Stärkste Nachbedingung

I Vorwärtsberechnung von Verifikationsbedingungen: Nachbedingung I Gegeben C0-Programmc, Prädikat P, dann ist

I sp(P,c) diestärkste NachbedingungQ so dass|={P}c{Q}

I PrädikatQ stärkeralsQ0 wennQ=Q0.

I Semantische Charakterisierung:

Stärkste Nachbedingung

Gegeben Zusicherung PAssnund ProgrammcStmt, dann

|={P}c{Q} ⇐⇒sp(P,c) =⇒Q

I Wie können wir sp(P,c) berechnen?

(21)

Berechnung von Nachbedingungen

I Wir berechnen dieapproximativestärkste Nachbedingung.

I Viele Klauseln sind ähnlich der schwächsten Vorbedingung.

I Ausnahmen:

I While-Schleife: andere Verifikationsbedingungen I If-Anweisung: Weakening eingebaut

I Zuweisung: Vorwärtsregel

I Nach jeder Zuweisung Nachbedingungvereinfachen

(22)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/ c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(23)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x])

asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/ c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(24)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/ c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(25)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1)

asp(P,//∗∗{q}∗/) =def q asp(P,while (b) //∗∗ inv i ∗/ c) =def i∧ ¬b

svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(26)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/ c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(27)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b

svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(28)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def

svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(29)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(30)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2)

svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1) svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(31)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(32)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/ c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i} svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(33)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i}

svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(34)

Überblick: Approximative stärkste Nachbedingung

asp(P,{ }) =def P

asp(P,x =e) =def ∃V.P[V/x]∧x = (e[V/x]) asp(P,c1;c2) =def asp(asp(P,c1),c2)

asp(P,if(b) c0 else c1) =def asp(b∧P,c0)∨asp(¬b∧P,c1) asp(P,//∗∗{q}∗/) =def q

asp(P,while (b) //∗∗ inv i ∗/c) =def i∧ ¬b svc(P,{ }) =def ∅ svc(P,x =e) =def

svc(P,c1;c2) =def svc(P,c1)∪svc(asp(P,c1),c2) svc(P,if(b) c0 else c1) =def svc(P∧b,c0)∪svc(P ∧ ¬b,c1)

svc(P,//∗∗{q}∗/) =def {P −→q}

svc(P,while (b) //∗∗ inv i ∗/c) =def svc(i∧b,c)∪ {P −→i}

∪ {asp(i∧b,c)−→i}

svc({P}c{Q}) =def {asp(P,c)−→Q} ∪svc(P,c)

(35)

Beispiel: Fakultät

1 // {0n}

2 p= 1 ; 3 c= 1 ;

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; 6 c = c + 1 ;

7 }

8 // {p=n!}

(36)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ; // asp2= //

3 c= 1 ; // asp3= //

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4= 8 // {p=n!}

(37)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={∃V.0n[V/p]p= (1[V/p])}

//

3 c= 1 ; // asp3= //

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4= 8 // {p=n!}

(38)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={∃V.0n[V/p]p= (1[V/p])}

// asp2={0np= 1}

3 c= 1 ; // asp3= //

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4= 8 // {p=n!}

(39)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={∃V.0n[V/p]p= (1[V/p])}

// asp2={0np= 1}

3 c= 1 ;

// asp3={∃V.(0np= 1)[V/c]c= (1[V/c])}

//

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4= 8 // {p=n!}

(40)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={∃V.0n[V/p]p= (1[V/p])}

// asp2={0np= 1}

3 c= 1 ;

// asp3={∃V.(0np= 1)[V/c]c= (1[V/c])}

// asp3={0np= 1c= 1}

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4= 8 // {p=n!}

(41)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={∃V.0n[V/p]p= (1[V/p])}

// asp2={0np= 1}

3 c= 1 ;

// asp3={∃V.(0np= 1)[V/c]c= (1[V/c])}

// asp3={0np= 1c= 1}

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

6 c = c + 1 ; //

7 }

// asp4={¬(cn)p= (c1)!c1n}

8 // {p=n!}

(42)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

// svc4= 8 // {p=n!}

(43)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

// svc4= 8 // {p=n!}

(44)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

// svc4= 8 // {p=n!}

(45)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

// svc4= 8 // {p=n!}

(46)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

// svc4= 8 // {p=n!}

(47)

Fakultät: Verifikationsbedingungen

Notation:svcx = in Zeilex generierte Verifikationsbedingung 1 // {0n}

2 p= 1 ; // svc2 = c= 1 ; // svc3 =

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; //

7 SVCat5 = 6 c = c + 1 ;

// svc6=

7 }

//svc4={asp3=(p= (c1)!c1n),asp5=(p= (c1)! c1n)}

8 // {p=n!}

(48)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={0np= 1}

3 c= 1 ;

// asp3={0np= 1c= 1}

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ; // asp5= //

//

c = c + 1 ; // asp6= //

//

}

// asp4={¬(cn)p= (c1)!c1n}

8 // {p=n!}

(49)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={0np= 1}

3 c= 1 ;

// asp3={0np= 1c= 1}

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ;

//asp5={∃V1.(p= (c1)!(c1)ncn)[V1/p]p= (p·c)[V1/p]}

//

//

c = c + 1 ; // asp6= //

//

}

// asp4={¬(cn)p= (c1)!c1n}

(50)

Beispiel: Fakultät, stärkste Nachbedingung

Notation:aspx = Stärkste Nachbedingungnach Zeilex. 1 // {0n}

2 p= 1 ;

// asp2={0np= 1}

3 c= 1 ;

// asp3={0np= 1c= 1}

4 w h i l e ( c <= n ) //** inv{p= (c1)!c1n}; */

5 p = p c ;

//asp5={∃V1.(p= (c1)!(c1)ncn)[V1/p]p= (p·c)[V1/p]}

// asp5={∃V1.(V1= (c1)!(c1)ncn)p= (V1·c)}

//

c = c + 1 ; // asp6= //

//

}

// asp4={¬(cn)p= (c1)!c1n}

8 // {p=n!}

Referenzen

ÄHNLICHE DOKUMENTE

I Für Iterationen wird eine Invariante benötigt (die nicht hergeleitet

I Wenn wir eine gültige Zusicherung nicht herleiten können, liegt das nur daran, dass wir eine Beweisverpflichtung nicht beweisen können.. I Logik erster Stufe ist unvollständig,

I Die Regeln des Floyd-Hoare-Kalküls lassen sich, weitgehend schematisch, rückwärts (vom Ende her) anwenden — nur Schleifen machen Probleme?. I Wir annotieren daher die Invarianten

Korrekte Software: Grundlagen und Methoden Vorlesung 10 vom 12.06.18: Vorwärts mit Floyd und Hoare.. Serge Autexier,

I Rückwärtsberechnung ist einfacher zu handhaben, erzeugt aber (tendenziell sehr) große Terme.. Korrekte Software

I Axiomatische Semantik beschreibt die Bedeutung eines Programmes durch Beweisregeln, mit welchem sich gültige Eigenschaften herleiten lassen.. Das prominenteste Beispiel hierzu ist

I Wenn wir eine gültige Zusicherung nicht herleiten können, liegt das nur daran, dass wir eine Beweisverpflichtung nicht beweisen können. I Logik erster Stufe ist unvollständig,

I Wir annotieren daher die Invarianten an Schleifen, und können dann die schwächste Vorbedingung und Verifikationsbedingungen.