• Non ci sono risultati.

Model Checking Complex Systems against ITL Specifications with Regular Expressions

N/A
N/A
Protected

Academic year: 2021

Condividi "Model Checking Complex Systems against ITL Specifications with Regular Expressions"

Copied!
41
0
0

Testo completo

(1)

Model Checking Complex Systems against ITL Specifications with Regular Expressions

Alberto Molinari

joint work with Laura Bozzelli, Angelo Montanari, and Adriano Peron Jan 20, 2017

University of Udine, Department of Mathematics, Computer Science, and Physics (DIMA)

(2)

HS (state-based) semantics and model checking

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

• K , ρ|= p iff p ∈

w∈states(ρ)µ(w), for any letter p∈ AP (homogeneity assumption) [4];

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(3)

HS (state-based) semantics and model checking

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

• K , ρ|= p iff p ∈

w∈states(ρ)µ(w), for any letter p∈ AP (homogeneity assumption) [4];

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(4)

HS (state-based) semantics and model checking

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

• K , ρ|= p iff p ∈ µ(fst(ρ), lst(ρ)), for any letter p ∈ AP (endpoint-based labeling) [1, 2];

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(5)

HS (state-based) semantics and model checking

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

• K , ρ|= p other definitions?

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(6)

Example—Printer

Adapted from [3].

v0

{p, pst} {p}v1 {p, pv2end}

Imagine we want to label theprocess of printinga single sheet of paper withp.

• Under homogeneity,

v0v1v2labeled by p⇒ v0v1and v1v2labeled by p

(7)

Example—Printer

Adapted from [3].

v0

{p, pst} {p}v1 {p, pv2end}

Imagine we want to label theprocess of printinga single sheet of paper withp.

• Under endpoint-based labeling, assuming p∈ µ(v0,v2), then (v0v1v2)nare all labeled by p

(8)

(Usual) regular expressions

r ::= ε|a| r ∪ r | r · r | r for a∈ A.

Examples:

• r1=a· (b ∪ c)· b

• abb, acb, abccbb, …∈ L(r1)

• r2=

((a· b) ∪ (a · c))

• ε, ab, ac, acabac, …∈ L(r2)

• r3= ε· (a ∪ c)

• ε, a, ca, aac, …∈ L(r3)

(9)

(Usual) regular expressions

r ::= ε|a| r ∪ r | r · r | r for a∈ A.

Examples:

• r1=a· (b ∪ c)· b

• abb, acb, abccbb, …∈ L(r1)

• r2= (

(a· b) ∪ (a · c))

• ε, ab, ac, acabac, …∈ L(r2)

• r3= ε· (a ∪ c)

• ε, a, ca, aac, …∈ L(r3)

(10)

(Usual) regular expressions

r ::= ε|a| r ∪ r | r · r | r for a∈ A.

Examples:

• r1=a· (b ∪ c)· b

• abb, acb, abccbb, …∈ L(r1)

• r2= (

(a· b) ∪ (a · c))

• ε, ab, ac, acabac, …∈ L(r2)

• r3= ε· (a ∪ c)

• ε, a, ca, aac, …∈ L(r3)

(11)

Our regular expressions

r ::= ε|ϕ| r ∪ r | r · r | r where ϕ is a Boolean (propositional) formula over AP.

v0

{p, s} {q, s}v1

• ρ = v0v1v0v1v1

• µ(ρ) ={p, s}{q, s}{p, s}{q, s}{q, s}

• ρ=v0v1v1v1v0

• µ(ρ) ={p, s}{q, s}{q, s}{q, s}{p, s}

Examples:

• r1= (p∧ s) · s· (p ∧ s)

• µ(ρ)̸∈ L(r1), but µ(ρ)∈ L(r1)

• r2= (¬p)

• µ(ρ)̸∈ L(r2), and µ(ρ)̸∈ L(r2)

(12)

Nondeterministic finite automata (NFA)

r1=a· (b ∪ c)· b

q0

start q1 q2

Ar1

a

b, c

b

• abb, acb, abccbb, …∈ L(r1) =L(Ar1)

(13)

Nondeterministic finite automata (NFA)

r1= (p∧ s) · s· (p ∧ s)

q0

start q1 q2

Ar1

(p∧ s) s

(p∧ s)

• µ(ρ) ={p, s}{q, s}{q, s}{q, s}{p, s} ∈ L(r1) =L(Ar1)

(14)

HS semantics with regular expressions

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

K , ρ|= r iff µ(ρ) ∈ L(r);

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(15)

HS semantics with regular expressions

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

K , ρ|= r iff µ(ρ) ∈ L(r);

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ

• To forcehomogeneity, all regular expressions inthe formula:

p· (p)

• forendpoint-basedlabeling, regular expressions in theformula:

(i,j)∈I

(qi· ⊤· qj)

for some I ⊆ {1, . . . , |W|}2, where qi∈ AP labelsonly wi∈ W.

Possibly infinitely many tracks!

(16)

HS semantics with regular expressions

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

K , ρ|= r iff µ(ρ) ∈ L(r);

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possibly infinitely many tracks!

(17)

HS semantics with regular expressions

Truth of a formula ψ over a track ρ of a Kripke structure K = (AP ,W, δ, µ, w0):

K , ρ|= r iff µ(ρ) ∈ L(r);

• negation, disjunction, and conjunction are standard;

• K , ρ|= ⟨A⟩ ψ iff there is a track ρ s.t. lst(ρ) = fst(ρ)and K , ρ |= ψ;

• K , ρ|= ⟨B⟩ ψ iff there is a prefix ρ of ρ s.t. K , ρ|= ψ;

• K , ρ|= ⟨E⟩ ψ iff there is a suffix ρ of ρ s.t. K , ρ|= ψ;

• the semantic clauses for⟨A⟩, ⟨B⟩, and ⟨E⟩ are similar Model Checking

K |= ψ ⇐⇒ for all initial tracks ρ of K , it holds that K , ρ |= ψ Possiblyinfinitely many tracks!

(18)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

Idea: for a regular expression r

v0

{p, s} {q, s}v1

×

q0 q1

q2

Ar1 (p

s)

s (p

s)

(19)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old” final states;

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

(20)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

(21)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

Aψ :

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

(22)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

Aψ :

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

(23)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

(24)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

Aψ :

(25)

Decidability of MC for HS + regular expressions

Given K and an HS formula φ over AP, we build an NFA over K accepting the set of tracks ρ such that K , ρ|= φ.

• for ψ = ψ1∧ ψ2, ψ = ψ1∨ ψ2: we do the usual constructions;

• for ψ =¬ψ: we complement the automaton (only the part for regular expressions);

• for ψ =⟨B⟩ ψ: we add asink final statereachable from the “old”

final states;

• for ψ =⟨B⟩ ψ: we mark as final all statesbackward reachable from the “old” final states.

Aψ:

(26)

The AABB fragment + regular expressions

We want to show that formulas of AABB + regular expressions can be checked by usingpolynomial working space.

To start with, we prove the following theorem, which is a building block of the PSPACE-model checking algorithm for AABB.

Theorem

Let ρ be a track of K and φ be an AABB formula with RE’s r1, . . . ,ru such that

K , ρ|= φ.

Then, there exists a track π of K such that

K , π|= φ and |π| ≤ |W| · (|φ| + 1) · 22uℓ=1|r|.

(27)

Small model for AABB

ρ

π

1 2 3 4 5

1 2 3 4 5 6 7 8 9 10

π = ρ(1)ρ(4)ρ(5)ρ(7)ρ(10)

We want to guarantee that: for all π-positions j, with corresponding ρ-positions ij, and for all s = 1, . . . , u,As(µ(πj)) =As(µ(ρij))

Theorem (Exponential small-model for AABB)

Let ρ be a track of K and φ be an AABB formula with RE’s r1, . . . ,ru

such that K , ρ|= φ.

Then, there exists a track π of K ,induced by ρ, such that

K , π|= φ and |π| ≤ |W| · (|φ| + 1) · 22uℓ=1|r|.

(28)

Small model for AABB

ρ

π

1 2 3 4 5

1 2 3 4 5 6 7 8 9 10

π = ρ(1)ρ(4)ρ(5)ρ(7)ρ(10)

We want to guarantee that: for all π-positions j, with corresponding ρ-positions ij, and for all s = 1, . . . , u,As(µ(πj)) =As(µ(ρij))

Theorem (Exponential small-model for AABB)

Let ρ be a track of K and φ be an AABB formula with RE’s r1, . . . ,ru

such that K , ρ|= φ.

Then, there exists a track π of K ,induced by ρ, such that

K , π|= φ and |π| ≤ |W| · (|φ| + 1) · 22uℓ=1|r|.

(29)

Small model for AABB

Thesmall model is “strict”:

• Let pribe the i-th smallest prime.

It is well-known that pri∈ O(i log i).

• Let K = {p}v0

• Let us fix some n∈ N. Theshortest tracksatisfying ψ =

n i=1

(ppri)

is ρ = vpr01···prn.

• The length of ψ is O(n· prn) =O(n2log n), but the length of ρ is pr1· · · prn≥ 2n.

(30)

Small model for AABB

Thesmall model is “strict”:

• Let pribe the i-th smallest prime.

It is well-known that pri∈ O(i log i).

• Let K = {p}v0

• Let us fix some n∈ N. Theshortest tracksatisfying ψ =

n i=1

(ppri)

is ρ = vpr01···prn.

• The length of ψ is O(n· prn) =O(n2log n), but the length of ρ is pr1· · · prn≥ 2n.

(31)

Small model for AABB

Thesmall model is “strict”:

• Let pribe the i-th smallest prime.

It is well-known that pri∈ O(i log i).

• Let K = {p}v0

• Let us fix some n∈ N. Theshortest tracksatisfying ψ =

n i=1

(ppri)

is ρ = vpr01···prn.

• The length of ψ is O(n· prn) =O(n2log n), but the length of ρ is pr1· · · prn≥ 2n.

(32)

A PSPACE MC algorithm for AABB—Trials

• The algorithm can consider only tracks having length bounded by the exponential small model

• However,

they are stilltoo long!⇒triples (G, D(ψ), w) summarizing tracks, where

• G⊆ Subf⟨B⟩(ψ)contains thesubformulas that hold on some prefix

• D(ψ) is theconfiguration of the DFAsafter reading the track,

• and w is the last state of the track Lemma

For all formulas ψ of BB, and for all tracks ρ, ρof K , if ρ and ρare summarized by the same triple (G, D(ψ), w), then

K , ρ|= ψ ⇐⇒ K , ρ|= ψ.

(33)

A PSPACE MC algorithm for AABB—Trials

• The algorithm can consider only tracks having length bounded by the exponential small model

• However, they are stilltoo long!⇒triples (G, D(ψ), w) summarizing tracks, where

• G⊆ Subf⟨B⟩(ψ)contains thesubformulas that hold on some prefix

• D(ψ) is theconfiguration of the DFAsafter reading the track,

• and w is the last state of the track Lemma

For all formulas ψ of BB, and for all tracks ρ, ρof K , if ρ and ρare summarized by the same triple (G, D(ψ), w), then

K , ρ|= ψ ⇐⇒ K , ρ|= ψ.

(34)

A PSPACE MC algorithm for AABB—Trials

• The algorithm cannot explicitly store the DFAs for the regular expressions occurring in ψ ⇒ just store thecurrent statesof the computations of the DFAs and calculates on-the-fly the

successor states

(35)

A PSPACE MC algorithm for AABB

Algorithm 1 Check(K , ψ, w, G, D(ψ))

1: if ψ = r then r is a regular expression

2: if the current state of the DFA for r in advance(D(ψ), µ(w)) is final then 3: return

4: else

5: return

6: else if ψ =¬ψor ψ = ψ1∧ ψ2then 7: Recursively

8: else if ψ =⟨B⟩ ψthen 9: return ψ∈ G 10: else if ψ =⟨B⟩ ψthen

11: for all b∈ {1, . . . , |W| · (2|ψ| + 1) · 22uℓ=1|r|− 1}, all (G,D(ψ),w)do 12: if Reach(K , ψ, (G, D(ψ), w), (G,D(ψ),w),b) and Check(K , ψ,w,G,D(ψ)) then 13: return

14: return

(36)

A PSPACE MC algorithm for AABB

Algorithm 2 Check(K , ψ, w, G, D(ψ))

1: if ψ = r then r is a regular expression

2: if the current state of the DFA for r in advance(D(ψ), µ(w)) is final then 3: return

4: else

5: return

6: else if ψ =¬ψor ψ = ψ1∧ ψ2then 7: Recursively

8: else if ψ =⟨B⟩ ψthen 9: return ψ∈ G 10: else if ψ =⟨B⟩ ψthen

11: for all b∈ {1, . . . , |W| · (2|ψ| + 1) · 22uℓ=1|r|− 1}, all (G,D(ψ),w)do 12: ifReach(K , ψ, (G, D(ψ), w), (G,D(ψ),w),b)and Check(K , ψ,w,G,D(ψ)) then 13: return

14: return

(37)

AABB is PSPACE-complete

• We replace the sub-formulas⟨A⟩ ψ and ⟨A⟩ ψ with the regular expressions r⟨A⟩ ψand r⟨A⟩ ψ:

r⟨A⟩ ψ:=·( ∪

w∈W⟨A⟩ ψ

qw)

; r⟨A⟩ ψ:=( ∪

w∈W⟨A⟩ ψ

qw)

· ⊤.

• To determine W⟨A⟩ ψand W⟨A⟩ ψ, we iterate the previous algorithm Theorem

The MC problem for formulas of AABB over finite Kripke structures is PSPACE-complete.

Proof.

The purely propositional fragment of HS is hard for PSPACE: we prove this fact by a reduction from the PSPACE-complete universality problem for regular expressions.

(38)

AABB is PSPACE-complete

• We replace the sub-formulas⟨A⟩ ψ and ⟨A⟩ ψ with the regular expressions r⟨A⟩ ψand r⟨A⟩ ψ:

r⟨A⟩ ψ:=·( ∪

w∈W⟨A⟩ ψ

qw)

; r⟨A⟩ ψ:=( ∪

w∈W⟨A⟩ ψ

qw)

· ⊤.

• To determine W⟨A⟩ ψand W⟨A⟩ ψ, we iterate the previous algorithm Theorem

The MC problem for formulas of AABB over finite Kripke structures is PSPACE-complete.

Proof.

The purely propositional fragment of HS is hard for PSPACE: we prove this fact by a reduction from the PSPACE-complete universality problem for regular expressions.

(39)

Complexity results

Homogeneity Regular expressions

Full HS, BE non-elementary non-elementary EXPSPACE-hard EXPSPACE-hard

AABBE, AAEBE EXPSPACE non-elementary PSPACE-hard PSPACE-hard

AABE PSPACE-complete non-elementary PSPACE-hard AABB, BB, B,

PSPACE-complete PSPACE-complete AAEE, EE, E

AAB, AAE, AB, AE PNP-complete PSPACE-complete

AA, AB, AE, A, A PNP[O(log2n)]

PSPACE-complete PNP[O(log n)]-hard

Prop, B, E co-NP-complete PSPACE-complete

(40)

Complexity results

Homogeneity Regular expressions

Full HS, BE non-elementary non-elementary EXPSPACE-hard EXPSPACE-hard

AABBE, AAEBE EXPSPACE non-elementary PSPACE-hard PSPACE-hard

AABE PSPACE-complete non-elementary PSPACE-hard AABB, BB, B,

PSPACE-complete PSPACE-complete AAEE, EE, E

AAB, AAE, AB, AE PNP-complete PSPACE-complete

AA, AB, AE, A, A PNP[O(log2n)]

PSPACE-complete PNP[O(log n)]-hard

(41)

References

A. Lomuscio and J. Michaliszyn.

An epistemic Halpern-Shoham logic.

In IJCAI, pages 1010–1016, 2013.

A. Lomuscio and J. Michaliszyn.

Decidability of model checking multi-agent systems against a class of EHS specifications.

In ECAI, pages 543–548, 2014.

A. Lomuscio and J. Michaliszyn.

Model checking multi-agent systems against epistemic HS specifications with regular expressions.

In KR, pages 298–308, 2016.

A. Molinari, A. Montanari, A. Murano, G. Perelli, and A. Peron.

Checking interval properties of computations.

Acta Informatica, 2016.

Riferimenti

Documenti correlati

This result strongly suggests that we are observing discrete shifts from part-time to full-time work, as conjectured by Zabalza et al 1980 and Baker and Benjamin 1999, rather

In particular, generational accounting tries to determine the present value of the primary surplus that the future generation must pay to government in order to satisfy the

Here we prove an exponential small-model property for the fragments AABB and AAEE, that is, if a trace ρ of a finite Kripke structure K satisfies a formula ϕ of AABB or AAEE, then

On 19 December 2018 the UN General Assembly approved the Global Compact for Safe, Orderly and Regular Migration (GCM), with 152 votes in favor, five against (Czech

In particular, analysis of NGS data is classified as primary, secondary and tertiary (see Figure 3): primary analysis is essentially responsible of producing raw data;

Results show that WhatsApp is widely used in Hospital setting by nurses and physicians, and that an interplay exists between institutional and individual factors in determining

Photodegradation using semiconductor materials was found to be an effective Advanced Oxidation Process (AOP); the mechanism in water phase is widely studied using different types

Here, to make up for the relative sparseness of weather and hydrological data, or malfunctioning at the highest altitudes, we complemented ground data using series of remote sensing