On the Expressiveness and Complexity of ATL Fran cois Laroussinie, - - PowerPoint PPT Presentation

on the expressiveness and complexity of atl
SMART_READER_LITE
LIVE PREVIEW

On the Expressiveness and Complexity of ATL Fran cois Laroussinie, - - PowerPoint PPT Presentation

On the Expressiveness and Complexity of ATL Fran cois Laroussinie, Nicolas Markey, Ghassan Oreiby LSV, CNRS & ENS-Cachan Recherches en v erification automatique March 14, 2006 Overview of CTL out of gate out of gate request q 0 q 1


slide-1
SLIDE 1

On the Expressiveness and Complexity of ATL

Fran¸ cois Laroussinie, Nicolas Markey, Ghassan Oreiby

LSV, CNRS & ENS-Cachan

Recherches en v´ erification automatique March 14, 2006

slide-2
SLIDE 2

Overview of CTL

CTL

A Kripke structure Quantification over paths (E/ A)

q0

  • ut of gate

q1

  • ut of gate

request

q2

  • ut of gate

grant

q3

in gate

Example

There exists a run such that the train is always out of gate. EG out of gate

slide-3
SLIDE 3

Overview of CTL

CTL

A Kripke structure Quantification over paths (E/ A)

q0

  • ut of gate

q1

  • ut of gate

request

q2

  • ut of gate

grant

q3

in gate

Example

There exists a run such that the train is always out of gate. EG out of gate

slide-4
SLIDE 4

Overview of ATL

ATL

A multi-agent system. Quantification over strategies of agents

q0

  • ut of gate

train

q1

  • ut of gate

request ctr

q2

  • ut of gate

grant train

q3

in gate ctr

Example

Whenever the train is out of gate, the controller cannot force it to enter the gate. AG (out of gate = ⇒ ¬ ctr F in gate)

slide-5
SLIDE 5

Overview of ATL

ATL

A multi-agent system. Quantification over strategies of agents

q0

  • ut of gate

train

q1

  • ut of gate

request ctr

q2

  • ut of gate

grant train

q3

in gate ctr

Example

Whenever the train is out of gate, the controller cannot force it to enter the gate. AG (out of gate = ⇒ ¬ ctr F in gate)

slide-6
SLIDE 6

Outline of the talk

1

Introduction Overview of CTL and ATL

2

Definitions Multi-agent models Strategy and outcomes ATL (Alternating-time Temporal Logic)

3

Expressiveness Weak Until

4

Complexity Model checking ATL on CGSs Model checking ATL on ATSs

5

Conclusion

slide-7
SLIDE 7

Outline of the talk

1

Introduction Overview of CTL and ATL

2

Definitions Multi-agent models Strategy and outcomes ATL (Alternating-time Temporal Logic)

3

Expressiveness Weak Until

4

Complexity Model checking ATL on CGSs Model checking ATL on ATSs

5

Conclusion

slide-8
SLIDE 8

CGS definition

Definition

A CGS C is a 5-tuple (Loc, Lab, Agt, Chc, Edg) s.t: Loc: a finite set of locations; Lab: Loc → 2AP: a labeling function; Agt = {A1, ..., Ak}: a set of agents (or players); Chc: Loc × Agt → N≥1 the choice function. Chc(ℓ, Ai) = number of possible moves for Ai from ℓ. Edg: Loc × Nk → Loc: the transition table.

slide-9
SLIDE 9

Example of a CGS

Example

q0

Start

q1

1−Win

q2

2−Win p|p,r|r,s|s r|s,s|p,p|r s|r,p|s,r|p

Player 2

q0 p r s p q0 q1 q2 r q2 q0 q1

Player 1

s q1 q2 q0

Figure: Paper, rock and scissors

slide-10
SLIDE 10

Semantics of CGSs

From a location ℓ, each agent Ai chooses some mAi with mAi < Chc(ℓ, Ai). Edg(ℓ, mA1, · · · , mAk) gives the new location. Notations: Next(ℓ) = {Edg(ℓ, · · · mAi · · · ) | ∀mAi · 1 ≤ i ≤ k} Next(ℓ, Aj, m) =

  • Edg(ℓ, · · · , mAj−1, m, mAj+1 · · · )
slide-11
SLIDE 11

CGS example

Example

q0

Start

q1

1−Win

q2

2−Win p|p,r|r,s|s r|s,s|p,p|r s|r,p|s,r|p

Player 2

q0 p r s p q0 q1 q2 r q2 q0 q1

Player 1

s q1 q2 q0

Figure: Paper, rock and scissors

slide-12
SLIDE 12

CGS example

Example

q0

Start

q1

1−Win

q2

2−Win p|p,r|r,s|s r|s,s|p,p|r s|r,p|s,r|p

Player 2

q0 p r s p q0 q1 q2 r q2 q0 q1

Player 1

s q1 q2 q0

Figure: Paper, rock and scissors

slide-13
SLIDE 13

CGS example

Example

q0

Start

q1

1−Win

q2

2−Win p|p,r|r,s|s r|s,s|p,p|r s|r,p|s,r|p

Player 2

q0 p r s p q0 q1 q2 r q2 q0 q1

Player 1

s q1 q2 q0

Figure: Paper, rock and scissors

slide-14
SLIDE 14

ATS definition

Definition

An ATS A is a 4-tuple (Loc, Lab, Agt, Chc) where: Loc, Lab and Agt are the same as in CGSs; a move is a set of locations: Chc: Loc × Agt → P(P(Loc)) with the following requirement: for any location ℓ and for moves Qi ∈ Chc(ℓ, Ai),

  • i≤k

Qi must be a singleton. The next location is precisely the location that belongs to all the choices of the agents. Next(ℓ) and Next(ℓ, Ai, m) are defined in the obvious way.

slide-15
SLIDE 15

ATS example

Example

q0

  • ut of gate

train

q1

  • ut of gate

request ctr

q2

  • ut of gate

grant train

q3

in gate ctr

δ(q0, train) = {{q0} , {q1}}. δ(q1, ctr) = {{q0} , {q1} , {q2}}. δ(q2, train) = {{q0} , {q3}}. δ(q3, ctr) = {{q0} , {q3}}. δ(q0, ctr) = δ(q1, train) = δ(q2, ctr) = δ(q3, train) = {Loc}.

Figure: Train controller

slide-16
SLIDE 16

Translation CGS ↔ ATS

B A D C

3.1 2.2,2.3 1.1 1.2 1.3 2.1 3.2 3.3

Naive approach

Move Player 1 Player 2 1 {B , D } {A , B , D } 2 {C , D } {C , D } 3 {A , D } {C , D }

Figure: Converting an CGS into an ATS

Cost of the translation:

CGS ATS polynomial exponential

slide-17
SLIDE 17

Translation CGS ↔ ATS

B A D C

3.1 2.2,2.3 1.1 1.2 1.3 2.1 3.2 3.3

Correct approach

Move Player 1 Player 2 1 {B1.1, D1.2, D1.3} {A3.1, B1.1, D2.1} 2 {C 2.2, C2.3, D2.1} {C 2.2, D1.2, D3.2} 3 {A3.1, D3.2, D3.3} {C 2.3, D1.3, D3.3}

Figure: Converting an CGS into an ATS

Cost of the translation:

CGS ATS polynomial exponential

slide-18
SLIDE 18

Translation CGS ↔ ATS

B A D C

3.1 2.2,2.3 1.1 1.2 1.3 2.1 3.2 3.3

Correct approach

Move Player 1 Player 2 1 {B1.1, D1.2, D1.3} {A3.1, B1.1, D2.1} 2 {C 2.2, C2.3, D2.1} {C 2.2, D1.2, D3.2} 3 {A3.1, D3.2, D3.3} {C 2.3, D1.3, D3.3}

Figure: Converting an CGS into an ATS

Cost of the translation:

CGS ATS polynomial exponential

slide-19
SLIDE 19

Strategies and outcomes

Definition

A computation is an infinite sequence ρ = ℓ0ℓ1 · · · such that ∀i, ℓi+1 ∈ Next(ℓi). A strategy is a function fAi s.t. fAi(ℓ0, · · · , ℓm) = a possible move for Ai from ℓm. The outcomes Out(ℓ, fAi) are the set of computations from ℓ that agree with the strategy fAi of Ai. Notations: given A ⊆ Agt, we note:

FA = {fAi|Ai ∈ A} Out(ℓ, FA)

slide-20
SLIDE 20

Syntax of ATL

Definition ([AHK97])

The syntax of ATL is defined by the following grammar: ATL ∋ ϕs, ψs ::= p | ¬ϕs | ϕs ∨ ψs | A ϕp ϕp ::= X ϕs | G ϕs | ϕs U ψs. where p ranges over the set AP and A over the subsets of Agt. ATL subsumes CTL, since we have: Eϕp ≡ Agt ϕp, Aϕp ≡ ∅ ϕp.

slide-21
SLIDE 21

Semantics

Definition

Semantics ℓ | = A ϕp iff ∃FA ∈ Strat(A). ∀ρ ∈ Out(ℓ, FA). ρ | = ϕp ρ | = ϕs U ψs iff ∃i.ρ[i] | = ψs and ∀0 ≤ j < i.ρ[j] | = ϕs We have

  • A

ϕ ⇒ ¬ Agt A ¬ϕ, but ¬ A ϕ

  • Agt A

¬ϕ. We denote A ϕ for ¬ A ¬ϕ

slide-22
SLIDE 22

Outline of the talk

1

Introduction Overview of CTL and ATL

2

Definitions Multi-agent models Strategy and outcomes ATL (Alternating-time Temporal Logic)

3

Expressiveness Weak Until

4

Complexity Model checking ATL on CGSs Model checking ATL on ATSs

5

Conclusion

slide-23
SLIDE 23

Can ATL express weak until?

Definition

ϕ W ψ ≡ ϕ U ψ ∨ G ϕ

CTL

Eϕ W ψ ≡ EG ϕ ∨ Eϕ U ψ Aϕ W ψ ≡ ¬ E(¬ψ) U (¬ϕ ∧ ¬ψ)

Question

Can we express A a W b in ATL?

  • A

(G ϕ ∨ ϕ U ψ) is not an ATL formula,

  • A

ϕ W ψ ≡ A G ϕ ∨ A ϕ U ψ.

slide-24
SLIDE 24

Can ATL express weak until?

Definition

ϕ W ψ ≡ ϕ U ψ ∨ G ϕ

CTL

Eϕ W ψ ≡ EG ϕ ∨ Eϕ U ψ Aϕ W ψ ≡ ¬ E(¬ψ) U (¬ϕ ∧ ¬ψ)

Question

Can we express A a W b in ATL?

  • A

(G ϕ ∨ ϕ U ψ) is not an ATL formula,

  • A

ϕ W ψ ≡ A G ϕ ∨ A ϕ U ψ.

slide-25
SLIDE 25

Can ATL express weak until?

Question

Can we express A a W b in ATL? Answer: No

Theorem

Formula ϕ = A a W b cannot be expressed in ATL. Idea: We present two families of models that cannot be distinguished by ATL formulae of any given size. One model satisfies A a W b while the other does not.

slide-26
SLIDE 26

Can ATL express weak until?

Question

Can we express A a W b in ATL? Answer: No

Theorem

Formula ϕ = A a W b cannot be expressed in ATL. Idea: We present two families of models that cannot be distinguished by ATL formulae of any given size. One model satisfies A a W b while the other does not.

slide-27
SLIDE 27

Can ATL express weak until?

Question

Can we express A a W b in ATL? Answer: No

Theorem

Formula ϕ = A a W b cannot be expressed in ATL. Idea: We present two families of models that cannot be distinguished by ATL formulae of any given size. One model satisfies A a W b while the other does not.

slide-28
SLIDE 28

Can ATL express weak until?

a

ai

a

ai−1

a

a1

a

si−1

a

s1

b

bi

b

b1

a

si

a

s′

i

a

s′

i−1

a

s′

1

¬a, ¬b

s0

3.1 3.1 3.1 3.1,4.2 3.1,4.2 3.1,4.2 2.2 2.3 2.2 2.3 2.2 2.3 2.2 2.3 4.3 2.2 2.3 4.3 2.2 2.3 4.3 1.1 1.1 1.1 4.1 1.1 4.1 1.2,1.3 2.1,3.2,3.3 1.2,1.3 2.1,3.2,3.3 1.2,1.3,2.1,3.2,3.3 1.2,1.3,2.1,3.2,3.3

Lemma

∀i > 0, ∀ψ ∈ ATL with |ψ| ≤ i we have: si | = ψ iff s′

i |

= ψ.

slide-29
SLIDE 29

Outline of the talk

1

Introduction Overview of CTL and ATL

2

Definitions Multi-agent models Strategy and outcomes ATL (Alternating-time Temporal Logic)

3

Expressiveness Weak Until

4

Complexity Model checking ATL on CGSs Model checking ATL on ATSs

5

Conclusion

slide-30
SLIDE 30

ATL model checking over CGSs

Theorem ([AHK02])

Model checking ATL over CGSs is PTIME-complete. Pre (A, L) = {ℓ | ∃mA · Next(ℓ, A, mA) ⊆ L}

ϕ = A θ1 U θ2

L := [false]; T := [θ2]; while T ⊆ L do L := L ∪ T; T := Pre(A, L) ∩ [θ1]

  • d;

[ϕ] := T Overall complexity: O(|Edg| · |ϕ|), thus PTIME.

slide-31
SLIDE 31

Implicit CGS

Definition

An implicit CGS is a CGS where: The transition function: in each ℓ it’s given ((ϕ0, ℓ0) , · · · , (ϕn, ℓn)) where ℓi ∈ Loc, ϕi is a boolean combination of propositions Aj = c. Edg (ℓ, mA1, · · · , mAk) = ℓj s.t. j = min (i | ϕi (ℓ, mA1, · · · , mAk) = ⊤) . It is required that the last formula, ϕn, be ⊤.

ATS explicit CGS implicit CGS exponential polynomial polynomial exponential p

  • l

y n

  • m

i a l e x p

  • n

e n t i a l

slide-32
SLIDE 32

Implicit CGS

Definition

An implicit CGS is a CGS where: The transition function: in each ℓ it’s given ((ϕ0, ℓ0) , · · · , (ϕn, ℓn)) where ℓi ∈ Loc, ϕi is a boolean combination of propositions Aj = c. Edg (ℓ, mA1, · · · , mAk) = ℓj s.t. j = min (i | ϕi (ℓ, mA1, · · · , mAk) = ⊤) . It is required that the last formula, ϕn, be ⊤.

ATS explicit CGS implicit CGS exponential polynomial polynomial exponential p

  • l

y n

  • m

i a l e x p

  • n

e n t i a l

slide-33
SLIDE 33

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete.

slide-34
SLIDE 34

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. PTIME NP co-NP ∆2 = PTIMENP Σ2 = NPNP Π2 = co-NPNP ∆3 = PTIMEΣ2 ... co-... PSPACE

Polynomial-time hierarchy PH

slide-35
SLIDE 35

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Membership in ∆3. Σ2 algorithm proposed in [JD05]: correctly handles positive formulas (i.e. of the form A ϕ). That algorithm is used as an oracle, called a polynomial number of times.

slide-36
SLIDE 36

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in Σ2. [JD05] EQSAT2: Input: a boolean formula ϕ over variables in X ∪ Y . Output: true iff ∃X. ∀Y . ϕ(X, Y )

slide-37
SLIDE 37

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in Σ2. [JD05] EQSAT2: Input: a boolean formula ϕ over variables in X ∪ Y . Output: true iff ∃X. ∀Y . ϕ(X, Y ) 1 player Ai per variable in X, 1 player Bj per variable in Y .

slide-38
SLIDE 38

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in Σ2. [JD05] EQSAT2: Input: a boolean formula ϕ over variables in X ∪ Y . Output: true iff ∃X. ∀Y . ϕ(X, Y ) 1 player Ai per variable in X, 1 player Bj per variable in Y .

Lemma

The instance of EQSAT2 is positive iff q0 | = A1, ..., An X q⊤.

q0 q⊤ q⊥

ϕ(A,B) ¬ϕ(A,B)

slide-39
SLIDE 39

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in Π2. AQSAT2: Input: a boolean formula ϕ over variables in X ∪ Y . Output: true iff ∀X. ∃Y . ϕ(X, Y ) 1 player Ai per variable in X, 1 player Bj per variable in Y .

Lemma

The instance of AQSAT2 is positive iff q0 | = ¬ A1, ..., An X q⊥.

q0 q⊤ q⊥

ϕ(A,B) ¬ϕ(A,B)

slide-40
SLIDE 40

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in ∆3 (sketch). SNSAT2: Input: formulas ϕi over variables in Xi ∪ Yi ∪ {z1, ..., zi−1}. Output: the value of zm defined by:                z1

def

= ∃X1. ∀Y1. ϕ1(X1, Y1) z2

def

= ∃X2. ∀Y2. ϕ2(z1, X2, Y2) z3

def

= ∃X3. ∀Y3. ϕ3(z1, z2, X3, Y3) . . . zm

def

= ∃Xm. ∀Ym. ϕm(z1, ..., zm−1, Xm, Ym)

slide-41
SLIDE 41

ATL model checking over implicit CGSs

Theorem

Model checking ATL over implicit CGSs in ∆3-complete. Hardness in ∆3 (sketch).

zm q⊤ q⊥ zm−1 zm−2 zm−1 zm−2 s s q⊤ q⊥ q⊤ q⊥ ϕm(Cm−1,Am,Bm) ¬ϕm(Cm−1,Am,Bm)

ψm = AC (¬s) U (q⊤ ∧ EX (s ∧ EX ¬ψm−1)).

slide-42
SLIDE 42

ATL model checking over ATSs

Theorem ([AHK97])

Model checking ATL over ATSs is PTIME-complete.

  • Proof. Similar to the case of CGSs.
  • But... Transitions of an ATS are not given explicitely.

The algorithm is polynomial in the size of the underlying CGS (which might be exponential).

Theorem ([JD05])

Model checking ATL over ATSs is PTIME-complete if the number

  • f agents is fixed.
slide-43
SLIDE 43

ATL model checking over ATSs

Theorem ([AHK97])

Model checking ATL over ATSs is PTIME-complete.

  • Proof. Similar to the case of CGSs.
  • But... Transitions of an ATS are not given explicitely.

The algorithm is polynomial in the size of the underlying CGS (which might be exponential).

Theorem ([JD05])

Model checking ATL over ATSs is PTIME-complete if the number

  • f agents is fixed.
slide-44
SLIDE 44

ATL model checking over ATSs

Theorem ([AHK97])

Model checking ATL over ATSs is PTIME-complete.

  • Proof. Similar to the case of CGSs.
  • But... Transitions of an ATS are not given explicitely.

The algorithm is polynomial in the size of the underlying CGS (which might be exponential).

Theorem ([JD05])

Model checking ATL over ATSs is PTIME-complete if the number

  • f agents is fixed.
slide-45
SLIDE 45

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete.

slide-46
SLIDE 46

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. NP-hardness: Reduction from 3-SAT.

slide-47
SLIDE 47

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. NP-hardness: Reduction from 3-SAT. C = p ∨ ¬q ∨ r

                      c0 = ¬p ∨ ¬q ∨ ¬r c1 = ¬p ∨ ¬q ∨ r c2 = ¬p ∨ q ∨ ¬r c3 = ¬p ∨ q ∨ r c4 = p ∨ ¬q ∨ ¬r c5 = p ∨ ¬q ∨ r c6 = p ∨ q ∨ ¬r c7 = p ∨ q ∨ r

slide-48
SLIDE 48

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete.

q0 C 1 C 2 C n

c1 c1 1 c1 2 c1 3 c1 4 c1 5 c1 6 c1 7 c2 c2 1 c2 2 c2 3 c2 4 c2 5 c2 6 c2 7 cn cn 1 cn 2 cn 3 cn 4 cn 5 cn 6 cn 7

... ... ... ... ... ... ... ...

slide-49
SLIDE 49

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. 1 player (P1 to Pk) per atomic proposition: p

  • ci

j | ci j not made true by p

  • ¬p
  • ci

j | ci j not made true by ¬p

  • q0

C 1 C 2 C n

c1 c1 1 c1 2 c1 3 c1 4 c1 5 c1 6 c1 7 c2 c2 1 c2 2 c2 3 c2 4 c2 5 c2 6 c2 7 cn cn 1 cn 2 cn 3 cn 4 cn 5 cn 6 cn 7

... ... ... ... ... ... ... ...

slide-50
SLIDE 50

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. 1 player (P1 to Pk) per atomic proposition: p

  • ci

j | ci j not made true by p

  • ¬p
  • ci

j | ci j not made true by ¬p

  • Once those players have chosen their

moves, exactly one clause ci

j per original

clause C i belongs to the intersection of the chosen sets. E.g. p = ⊤ q = ⊤ r = ⊥    ⇒ ¬p ∧ ¬q ∧ r

q0 C 1 C 2 C n

c1 c1 1 c1 2 c1 3 c1 4 c1 5 c1 6 c1 7 c2 c2 1 c2 2 c2 3 c2 4 c2 5 c2 6 c2 7 cn cn 1 cn 2 cn 3 cn 4 cn 5 cn 6 cn 7

... ... ... ... ... ... ... ...

slide-51
SLIDE 51

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. 1 player (P1 to Pk) per atomic proposition: p

  • ci

j | ci j not made true by p

  • ¬p
  • ci

j | ci j not made true by ¬p

  • 1 extra player chooses one set among

{c1

0, ..., c1 7} to {cn 0 , ..., cn 7 } q0 C 1 C 2 C n

c1 c1 1 c1 2 c1 3 c1 4 c1 5 c1 6 c1 7 c2 c2 1 c2 2 c2 3 c2 4 c2 5 c2 6 c2 7 cn cn 1 cn 2 cn 3 cn 4 cn 5 cn 6 cn 7

... ... ... ... ... ... ... ...

slide-52
SLIDE 52

ATL model checking over ATSs

Theorem

Model checking ATL over ATSs is ∆2-complete. 1 player (P1 to Pk) per atomic proposition: p

  • ci

j | ci j not made true by p

  • ¬p
  • ci

j | ci j not made true by ¬p

  • 1 extra player chooses one set among

{c1

0, ..., c1 7} to {cn 0 , ..., cn 7 }

Lemma

The 3-SAT instance is true iff q0 | = P1, ..., Pk X ¬

q0 C 1 C 2 C n

c1 c1 1 c1 2 c1 3 c1 4 c1 5 c1 6 c1 7 c2 c2 1 c2 2 c2 3 c2 4 c2 5 c2 6 c2 7 cn cn 1 cn 2 cn 3 cn 4 cn 5 cn 6 cn 7

... ... ... ... ... ... ... ...

slide-53
SLIDE 53

Conclusion

Expressiveness

ATLW > ATL

Complexity results

CGSfixed CGS ATS ATL PTIME ∆3 ∆2 ATL+ ∆3 ∆3 ∆3

Future Work

Fairness constraints Timed models