• Keine Ergebnisse gefunden

Logische Methoden des Software Engineering Inhabitation in

N/A
N/A
Protected

Academic year: 2021

Aktie "Logische Methoden des Software Engineering Inhabitation in"

Copied!
45
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Logische Methoden des Software Engineering

Inhabitation in λ

Jakob Rehof

LS XIV – Software Engineering

TU Dortmund Sommersemester 2017

WS 2017/18

(2)

Curry-Howard isomorphism

Γ, x :τ ` x :τ (var)

Γ, x :τ ` M :σ Γ ` λx.M :τ → σ (→I)

Γ ` M :τ → σ Γ ` N :τ Γ ` M N :σ (→E)

J. Rehof (TU Dortmund) LMSE WS 2017/18 2 / 28

(3)

Curry-Howard isomorphism

Γ, τ `τ(hyp)

Γ, τ `σ Γ`τ→σ(DT) Γ`τ→σ Γ`τ

Γ`σ (MP)

Exercise 1

LetΓ ={τ1, . . . , τn}. Prove that, ifΓ`σthenτ1→ · · · →τn→σis boolean tautology, when→is interpreted as implication.

So, inhabitation isprovabilityin intuitionistic propositional logic.

(4)

Alternating Turing machines (ATM)

Analternating Turing machine is a tupleM= (Σ, Q, q0, qa, qr,∆). The set of states Q=Q ] Qis partitioned into a setQ of existential states and a setQof universal states. There is an initial stateq0∈Q, an accepting stateqa∈Q, and a rejecting stateqr∈Q. We takeΣ ={0,1, }, where is the blank symbol (used to initialize the tape but not written by the machine).

The transition relation∆satisfies

∆⊆Σ×Q×Σ×Q× {l,r},

whereh∈ {l,r}are the moves of the machine head (left and right). Forb∈Σand q∈Q, we write∆(b, q) ={(c, p, h)|(b, q, c, p, h)∈∆}. We assume

∆(b, qa) = ∆(b, qr) =∅, for allb∈Σ, and∆(b, q)6=∅forq∈Q\ {qa, qr}.

J. Rehof (TU Dortmund) LMSE WS 2017/18 4 / 28

(5)

Alternating Turing machines (ATM)

AconfigurationC ofMis a wordwqw0withq∈Qandw, w0∈Σ. Thesuccessor relationC ⇒ C0on configurations is defined as usual, according to∆. We classify a configurationwqw0asexistential,universal,acceptingetc., according toq.

The notion ofeventually accepting configuration is defined by induction (i.e., the set of all eventually accepting configurations is the smallest set satisfying the following closure conditions):

An accepting configuration is eventually accepting.

IfCis existential and some successor ofC is eventually accepting then so isC.

IfCis universal and all successors ofC are eventually accepting then so isC.

(6)

Alternating Turing machines (ATM)

We use the notation for instruction sequences starting from existential states choosex∈A

and instruction sequences starting from universal states forall(i= 1. . . k)Si

A command of the formchoosex∈Abranches from an existential state to successor states in whichxgets assigned distinct elements ofA. A command of the form forall(i= 1. . . k)Si branches from a universal state to successor states from which each instruction sequenceSiis executed.

J. Rehof (TU Dortmund) LMSE WS 2017/18 6 / 28

(7)

Alternating complexity

Some alternating complexity classes:

aptime:=S

k>0atime(nk) apspace:=S

k>0aspace(nk) aexptime:=S

k>0atime(kn)

Theorem 1 (Chandra, Kozen, Stockmeyer 1981)

aptime=pspace apspace=exptime aexptime=expspace

(8)

Inhabitation in λ

is Pspace -complete

We will give a detailed proof of Statman’s Theorem: inhabitation in λ

is Pspace -complete. This result was first proven in [Sta79] (using, among other things, results of Ladner [Lad77]).

Our proof follows [Urz97] (see also [SU06]) where a syntactic approach was used, and where alternation is used to simplify the proof.

J. Rehof (TU Dortmund) LMSE WS 2017/18 8 / 28

(9)

Inhabitation in λ

: upper bound

Notice that every typeτ ofλcan be written on the formτ ≡τ1→ · · ·τn→a,n≥0, whereais an atom (either a type variable or a type constant).

Notice that every application context can be written on the formxP1· · ·Pnfor some maximaln≥0.

An explicitly typedλ-termM is inη-long normal formif it is aβ-normal form and every maximal application inM has the formxτ1→···→τn→aP1τ1· · ·Pnτn. In other words, in such terms applications are fully applied according to the type of the operator.

Notice that every typedβ-normal form of typeτ can be converted intoη-long normal form: any subterm occurrence of a maximal applicationQσ→ρcan be converted into λx:σ.Qxwherex6∈FV(Q).

SetΓ(x:τ) = Γ, if there existsy∈Dm(Γ)withΓ(y) =τ, and otherwise Γ(x:τ) = Γ∪ {(x:τ)}.

(10)

Inhabitation in λ

: upper bound

Algorithm INH(λ)

Input: Γ, τ

loop: 1 if(τ ≡a) 2 then

3 choose(x:σ1→ · · · →σn→a)∈Γ;

4 if(n= 0)then accept;

5 else

6 forall(i= 1. . . n)

7 τ :=σi;

8 gotoloop;

9 else if(τ ≡σ→ρ) 10 then

11 Γ := Γ(y:σ)whereyis fresh;

12 τ :=ρ;

13 gotoloop;

J. Rehof (TU Dortmund) LMSE WS 2017/18 10 / 28

(11)

Inhabitation in λ

: upper bound

Proposition 1

Inhabitation inλ is inpspace.

Proof.

By algorithm INH(λ). Clearly, the algorithm performs exhaustive search forη-long normal form inhabitants. The algorithm decides inhabitation inλin polynomial space.

For consider configurations(Γ, τ)arising during an entire run of the algorithm on input (Γ0, τ0). Notice thatΓandτ always only contain types that are subtrees of types present in the previous values ofΓandτ (line7and line11). Since a tree of sizemhas mdistinct subtrees, the set of distinct configurations(Γ, τ)can be bounded byn2, wherenis the size of the input. Hence, the algorithm shows that the problem is in aptime, which ispspaceby Theorem 1.

(12)

Inhabitation in λ

: lower bound

Reduction from provability of quantified boolean fomulaeφ, χ, ψ:

φ::=p| ¬φ|φ∧ψ|φ∨ψ| ∀p.φ| ∃p.φ

We can assume w.l.o.g. that negation is only applied to propositional variablespinφ, that all bound variables are distinct and that no variable occurs both free and bound.

J. Rehof (TU Dortmund) LMSE WS 2017/18 12 / 28

(13)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅. Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}. Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}. Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

(14)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}. Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}. Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

J. Rehof (TU Dortmund) LMSE WS 2017/18 13 / 28

(15)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}. Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}. Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

(16)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}. Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}. Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

J. Rehof (TU Dortmund) LMSE WS 2017/18 13 / 28

(17)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}.

Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}. Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

(18)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}.

Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}.

Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

J. Rehof (TU Dortmund) LMSE WS 2017/18 13 / 28

(19)

Inhabitation in λ

: lower bound

Given formulaφ, construct type environmentΓφby induction onφ:

For each propositional variablepinφ, letαpandα¬pbe fresh type variables. For each subformulaψ, letαψ be fresh type variables.

Ifφ≡p, thenΓφ=∅.

Ifφ≡ ¬p, thenΓφ=∅.

Ifφ≡χ∧ψ, thenΓφ= Γχ∪Γψ∪ {xφχ→αψ →αχ∧ψ}.

Ifφ≡χ∨ψ, thenΓφ= Γχ∪Γψ∪ {xlφχ→αχ∨ψ, xrφψ→αχ∨ψ}.

Ifφ≡ ∀p.ψ, thenΓφ= Γψ∪ {xφ: (αp→αψ)→(α¬p→αψ)→α∀p.ψ}.

Ifφ≡ ∃p.ψ, then

Γφ= Γψ∪ {x0φ: (αp→αψ)→α∃p.ψ, x1φ: (α¬p→αψ)→α∃p.ψ}.

(20)

Inhabitation in λ

: lower bound

A valuationvis a map from propositional variables to truth values in{0,1}.

For a formulaφand a valuationv, letΓvφbe the extension ofΓφ: Γvφ= Γφ∪ [

p∈Dm(v)

{xp:hαipv}

wherehαipvpifv(p) = 1andhαipv¬pifv(p) = 0.

A valuation of a formulaφis a valuation defined on the free variables ofφ. We writev⊕[p:=b]for the extension ofvmappingptob∈ {0,1}. We writeΓ6`τ as abbreviation for¬∃M.Γ`M :τ.

J. Rehof (TU Dortmund) LMSE WS 2017/18 14 / 28

(21)

Inhabitation in λ

: lower bound

A valuationvis a map from propositional variables to truth values in{0,1}.

For a formulaφand a valuationv, letΓvφbe the extension ofΓφ: Γvφ= Γφ∪ [

p∈Dm(v)

{xp:hαipv}

wherehαipvpifv(p) = 1andhαipv¬pifv(p) = 0.

A valuation of a formulaφis a valuation defined on the free variables ofφ. We writev⊕[p:=b]for the extension ofvmappingptob∈ {0,1}. We writeΓ6`τ as abbreviation for¬∃M.Γ`M :τ.

(22)

Inhabitation in λ

: lower bound

A valuationvis a map from propositional variables to truth values in{0,1}.

For a formulaφand a valuationv, letΓvφbe the extension ofΓφ: Γvφ= Γφ∪ [

p∈Dm(v)

{xp:hαipv}

wherehαipvpifv(p) = 1andhαipv¬pifv(p) = 0.

A valuation of a formulaφis a valuation defined on the free variables ofφ.

We writev⊕[p:=b]for the extension ofvmappingptob∈ {0,1}. We writeΓ6`τ as abbreviation for¬∃M.Γ`M :τ.

J. Rehof (TU Dortmund) LMSE WS 2017/18 14 / 28

(23)

Inhabitation in λ

: lower bound

A valuationvis a map from propositional variables to truth values in{0,1}.

For a formulaφand a valuationv, letΓvφbe the extension ofΓφ: Γvφ= Γφ∪ [

p∈Dm(v)

{xp:hαipv}

wherehαipvpifv(p) = 1andhαipv¬pifv(p) = 0.

A valuation of a formulaφis a valuation defined on the free variables ofφ.

We writev⊕[p:=b]for the extension ofvmappingptob∈ {0,1}.

We writeΓ6`τ as abbreviation for¬∃M.Γ`M :τ.

(24)

Inhabitation in λ

: lower bound

A valuationvis a map from propositional variables to truth values in{0,1}.

For a formulaφand a valuationv, letΓvφbe the extension ofΓφ: Γvφ= Γφ∪ [

p∈Dm(v)

{xp:hαipv}

wherehαipvpifv(p) = 1andhαipv¬pifv(p) = 0.

A valuation of a formulaφis a valuation defined on the free variables ofφ.

We writev⊕[p:=b]for the extension ofvmappingptob∈ {0,1}.

We writeΓ6`τ as abbreviation for¬∃M.Γ`M :τ.

J. Rehof (TU Dortmund) LMSE WS 2017/18 14 / 28

(25)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv} Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

(26)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv} Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

J. Rehof (TU Dortmund) LMSE WS 2017/18 15 / 28

(27)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1

Jψ∧χKv = min{JψKv,JχKv} Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

(28)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv}

Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

J. Rehof (TU Dortmund) LMSE WS 2017/18 15 / 28

(29)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv}

Jψ∨χKv = max{JψKv,JχKv

}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

(30)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv}

Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])

} J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

J. Rehof (TU Dortmund) LMSE WS 2017/18 15 / 28

(31)

Inhabitation in λ

: lower bound

Assume w.l.o.g. that formulaeφhave negation signs only applied to propositional variables.

We letJφKvdenote the truth value ofφunder valuationv, defined by induction onφ:

JpKv = v(p)

J¬pKv = 0,ifv(p) = 1,else1 Jψ∧χKv = min{JψKv,JχKv}

Jψ∨χKv = max{JψKv,JχKv}

J∀p.ψKv = min{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

J∃p.ψKv = max{JψK(v⊕[p:= 1]),JψK(v⊕[p:= 0])}

(32)

Inhabitation in λ

: lower bound

Lemma 2

For every formulaφand every valuationvofφ, one has JφKv= 1 ⇔ ∃M.Γvφ`M :αφ

Proof

By induction onφ.

Caseφ≡p. IfJpKv= 1, i.e.,v(p) = 1, thenΓvφ={xvpp}, soΓvφ`xvpp. If Γvφ`M:αp, then, by construction ofΓvφ, it must be the case thatΓvφ={xvpp}, so thatv(p) = 1.

Caseφ≡ ¬p. Similar to previous case.

J. Rehof (TU Dortmund) LMSE WS 2017/18 16 / 28

(33)

Inhabitation in λ

: lower bound

Proof(continued) Caseφ≡χ∧ψ

IfJφKv= 1, thenJχKv=JψKv= 1. By induction hypothesis,Γvχ`M :αχand Γvψ`N:αψ, for someM andN. It follows thatΓvχ∧ψ`xχ∧ψM N:αχ∧ψ. IfJφKv= 0, thenJχKv= 0orJψKv= 0. IfJχKv= 0, then by induction hypothesis, Γvχ6`αχ, hence by construction ofΓvφ, we must haveΓvφ6`αχ. It follows that Γvφ6`αχ∧ψ. The case whereJψKv= 0is analogous.

(34)

Inhabitation in λ

: lower bound

Proof(continued) Caseφ≡ ∀p.ψ

IfJφKv= 1, thenJψKv0=JψKv1= 1, wherev0=v⊕[p:= 0]andv1=v⊕[p:= 1]. By induction hypothesis, we haveΓvψ0`M :αψ andΓvψ1 `N:αψ, for someM andN, which (by definitions) can also be written asΓvφ∪ {xp¬p} `M:αψ and Γvφ∪ {xpp} `N:αψ. Hence,Γvφ`λxp¬p.M:α¬p→αψ and Γvφ`λxpp.N:αp→αψ. It follows that we have

Γvφ`xφ(λxpp.N)(λxp¬p.M) :αφ

J. Rehof (TU Dortmund) LMSE WS 2017/18 18 / 28

(35)

Inhabitation in λ

: lower bound

Proof(continued) Caseφ≡ ∀p.ψ

IfJφKv= 0, then either we haveJψK(v⊕[p:= 0]) = 0orJψK(v⊕[p:= 1]) = 0.

Suppose that the former is the case. Then, by induction hypothesis, we haveΓvψ06`αψ, wherev0=v⊕[p:= 0]. Hence, by definitions, we haveΓψ∪ {xp¬p} 6`αψ. By construction ofΓvφ, it follows that we haveΓvφ6`αφ. The case where

JψK(v⊕[p:= 1]) = 0is analogous.

(36)

Inhabitation in λ

: lower bound

Proof(continued)

Remaining cases are left as an exercise :)

Proposition 2

Inhabitation inλ ispspace-hard.

Proof.

In order to decide provability of QBF formulaφ, it suffices to ask whetherΓφ`? :αφ, by Lemma 2. Since the construction ofΓφcan be carried out in logarithmic space, the proposition follows frompspace-hardness of QBF.

J. Rehof (TU Dortmund) LMSE WS 2017/18 20 / 28

(37)

Inhabitation in λ

Theorem 3 (Statman 1979)

Inhabitation inλ ispspace-complete.

Proof.

By Proposition 1 and Proposition 2.

(38)

Inhabitation

J. Rehof (TU Dortmund) LMSE WS 2017/18 22 / 28

(39)

Inhabitation

(40)

Inhabitation

J. Rehof (TU Dortmund) LMSE WS 2017/18 24 / 28

(41)

Inhabitation

(42)

Inhabitation

J. Rehof (TU Dortmund) LMSE WS 2017/18 26 / 28

(43)

Inhabitation

(44)

Inhabitation

J. Rehof (TU Dortmund) LMSE WS 2017/18 28 / 28

(45)

R.E. Ladner.

The Computational Complexity of Provability in Systems of Modal Propositional Logic.

SIAM J. Comput., 6(3):467 – 480, 1977.

Richard Statman.

Intuitionistic Propositional Logic is Polynomial-space Complete.

Theoretical Computer Science, 9:67–72, 1979.

M.H. Sørensen and P. Urzyczyn.

Lectures on the Curry-Howard Isomorphism, volume 149 of Studies in Logic and the Foundations of Mathematics.

Elsevier, 2006.

P. Urzyczyn.

Inhabitation in Typed Lambda-Calculi (A Syntactic Approach).

In TLCA’97, Typed Lambda Calculi and Applications, Proceedings,

volume 1210 of LNCS, pages 373–389. Springer, 1997.

Referenzen

ÄHNLICHE DOKUMENTE

balancing the number of years of survival against the constant level of utility flow that the total resource stock makes. possible

To tackle this issue, the SCOT (Smart Cyber Operating Theater) project started in 2014, and its state-of- the-art flagship model OR Hyper SCOT was introduced to Tokyo Women’s

Del resto come evidenziato in altri scritti (Schilirò, 1998, 1998a , 2000) l’Europa è sì un tr aguardo importante ma implica diversi problemi da affrontare, fra cui

Our thesis is that, while a full formalization requires a distinct and clear presentation of a proof at least to a certain degree, which means that there’s nothing left to do for

Although most states have typical responses to oil-price shocks — they are affected by positive shocks only — the rest experience either negative shocks only (5 states), both

The dead children of Syria command global, not just American, condemnation and action.. For America’s allies and partners in Asia,

In the history of political and economic culture of the world, facts have suggested that, while considering the relevant issues, intellectual effect can very well prevent the

The figure of 2.5 per cent suggests that, with no change in aggregate supply policy the actual rate of unemployment could be reduced to 2.5 per cent by an increase in