Streaming Tree Transducers

19
Streaming Tree Transducers Loris D'Antoni University of Pennsylvania Joint work with Rajeev Alur 1

description

Streaming Tree Transducers. Loris D'Antoni University of Pennsylvania Joint work with Rajeev Alur. Outline. Deterministic bottom-up MSO equivalent model for ranked tree transformations Deterministic left-to-right MSO equivalent model for tree transformations. Motivations. - PowerPoint PPT Presentation

Transcript of Streaming Tree Transducers

Page 1: Streaming Tree Transducers

1

Streaming Tree TransducersLoris D'Antoni

University of Pennsylvania

Joint work with Rajeev Alur

Page 2: Streaming Tree Transducers

2

Outline

1. Deterministic bottom-up MSO equivalent model for ranked tree transformations

2. Deterministic left-to-right MSO equivalent model for tree transformations

Page 3: Streaming Tree Transducers

3

Motivations• A tree transducer maps a tree over an input alphabet to a tree

over an output alphabet• Desirable properties of a class of transducers C

– Closure properties:• Composition: given T1, T2 in C, their composition T1oT2 belongs to C (for

free if MSO equivalence);

• Regular look-ahead: ability to ask question about the remaining input, without needing to read it.

– Fast Execution: • single pass over the input tree

• deterministic

– Expressiveness: possibly MSO equivalent

– Fast algorithms: equivalence, type checking…

Page 4: Streaming Tree Transducers

4

Example of Transformations

• Insert/delete nodes• Copy a sub-tree K times• Swap sub-trees based on some regular pattern

– Given an address book, where each entry has a tag that denotes whether the entry is “private” or “public”, sort the address book based on this tag: all private entries should appear before public entries

• NO actual sorting: – we want to be MSO equivalent

Page 5: Streaming Tree Transducers

5

Bottom-up Ranked Tree Transducers

• When processing a tree a(x1,x2) the transducer– reads the state qi reached by each child xi (while going

bottom-up)– reads the symbol a of the current node– Uses the transformations t1, t2 computed by the x1, x2 to

produce a new output– Updates the state to q

a

t1 t2

q1 q2

c

t1t2

q

Page 6: Streaming Tree Transducers

6

Multiple Variables Needed• If the root is labeled with a

– compute the identity function,

– otherwise replace each a with b and each b with an a

a

IL

qL qR

a

qa

SL IR SRIL IR

b

SL SR

Each tree must be able to compute more than one possible transformation

VARIABLES

Page 7: Streaming Tree Transducers

7

Holes in Variables Needed 1/3• Tree Swap: swap the first two sub-trees

with root labeled with a b (in-order traversal)

ba

c

a

b

t1

t2

ba

c

a

b

t2

t1

Page 8: Streaming Tree Transducers

8

Holes in Variables Needed 2/3

• qi means that so far we saw i top level b

• yi contains the i-th b-rooted sub-tree

• x contains the tree processed so far but has i holes in place of the top-level b-rooted sub-trees

aq1 q1 a

q2

y2Ly1

LxL y2

Ry1R

xR xL xR

y1L y1

R

Page 9: Streaming Tree Transducers

9

Holes in Variables Needed 2/3

• qi means that so far we saw i top level b

• yi contains the i-th b-rooted sub-tree

• x contains the tree processed so far but has i holes in place of the top-level b-rooted sub-trees

bq1 q1

b

y2L

y1LxL y2

Ry1

RxR xL xR ε?y1

L y1R

HoleEmpty

tree

b

q1

Page 10: Streaming Tree Transducers

10

Conflict Relation 1/3

• Recursive swap:– f(a(x,y)) = a(f(y),f(x))

– f(b(x,y)) = b(x,y)

• Easy to compute top-down• Bottom-up it needs two variables

Page 11: Streaming Tree Transducers

11

Conflict Relation 2/3

a

IL

q qa

qa

SL IR SR

a

IL IRSLSR

• Two variables– I computes the identity: case in which we have not

hit the last b yet– S computes the swap: case in which we have hit

the last b

f(a(x,y)) = a(f(y),f(x))f(b(x,y)) = b(x,y)

Page 12: Streaming Tree Transducers

12

Conflict Relation 3/3

• The variable I is used twice– This could cause the output tree to be of exponential size

in the size of the input tree (NO MSO)– We need the ability of copying but we need to limit it– INTUITION: only one of the two trees we are computing

will appear in the final output (will explain later)

b

IL

q qb

qa

SL IR SR

b

IL IRIL IR

f(a(x,y)) = a(f(y),f(x))f(b(x,y)) = b(x,y)

Page 13: Streaming Tree Transducers

13

Streaming Tree Transducers: Design Principles

• Execution: single left-to-right pass in linear time

• Key to expressiveness: – multiple variables

– variables can be stored on stack

– explicit way of combining sub-trees in the assignments of variables (hole substitution)

• Key to analyzability: – single-use restricted updates

– write-only output

– Can compute multiple possible partial outputs

Page 14: Streaming Tree Transducers

14

Streaming Tree Transducers 1/3• The input and output trees are represented as nested

words

• Each node is represented by an open tag <a and a close tag a>

• This requires a stack to model the current depth in the input tree (pushdown machine)

• Enables uniform representation of string, ranked trees, unranked trees, and forests

cb

a<a <b b> <c c> a>

Page 15: Streaming Tree Transducers

15

Streaming Tree Transducers 2/3• STT from Σ to Γ:

• Q : set of states• P : set of stack states• X : set of variables• ~ : conflict relation over X• Variables can contain a hole ?• δ : transition function. Updates state when reading input

symbol in a given state• U : variable update function. Updates variable values

when reading an input symbol in a given state.• O : output function for combining variables and

producing final output

The limitedform of coyping

Page 16: Streaming Tree Transducers

16

Streaming Tree transducers 3/3Transition function δ:• Open Tags:

– δ(q,<a) → (q',p) (push state p on the stack)– x := ?– xp := <b x b> (x stored on the stack as xp)

• Close tags:– δ(q,a>,p) → q’– x := <b x xp b> (xp popped from the stack)

• Internal:– δ(q,a) → q’– x := <b x b>

Page 17: Streaming Tree Transducers

17

The Conflict Relation• We want to be able to express the assignment

• However x and y must not be combined later• we can create an output of size exponential in the input

• SOLUTION: Conflict relation: x ~ y• x and y can never appear on the RHS of the same variable

assignment• Example: z:=a(x,y) is not allowed

X:=XY:=X

Page 18: Streaming Tree Transducers

18

STT Properties• MSO equivalent (closure under composition and

regular lookahead)• Output computed in single left-to-right linear time

pass over the input• Functional equivalence decidable in NExpTime:

– compute a exponential size PDA over {0,1} that accepts a string with same number of 0s and 1s iff two STTs are not equivalent. Use Parikh Image

• Type checking decidable in ExpTime: – given two tree language I and O and an STT S check

whether S(I) is included in O

Page 19: Streaming Tree Transducers

19

Loris D’AntoniUniversity of [email protected]

Thank you!Questions?