Skip to content

Instantly share code, notes, and snippets.

@amirouche
Created March 17, 2017 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amirouche/21ae3a1ffb4a60393d1fe05e3c19f9c9 to your computer and use it in GitHub Desktop.
Save amirouche/21ae3a1ffb4a60393d1fe05e3c19f9c9 to your computer and use it in GitHub Desktop.
# N[2..3]
## N[2..3] -> ferme[2..3]
# GN[3..5]
## GN[3..5] -> D[3..4] N[4..5]
# D[3..4]
## D[3..4] -> le[3..4]
# V[2..3]
## V[2..3] -> ferme[2..3]
# D[0..1]
## D[0..1] -> la[0..1]
# GN[0..2]
## GN[0..2] -> D[0..1] N[1..2]
# N[1..2]
## N[1..2] -> petite[1..2]
# PRO[3..4]
## PRO[3..4] -> le[3..4]
# N[4..5]
## N[4..5] -> voile[4..5]
# V[4..5]
## V[4..5] -> voile[4..5]
# GN[0..3]
## GN[0..3] -> D[0..1] ADJ[1..2] N[2..3]
# GV[2..5]
## GV[2..5] -> V[2..3] GN[3..5]
# GV[3..5]
## GV[3..5] -> PRO[3..4] V[4..5]
# H[0..5]
## H[0..5] -> GN[0..3] GV[3..5]
## H[0..5] -> GN[0..2] GV[2..5]
# S[0..5]
## S[0..5] -> H[0..5]
# ADJ[1..2]
## ADJ[1..2] -> petite[1..2]
root node : S[0..5]
D[0..1] -> la[0..1]
N[1..2] -> petite[1..2]
ADJ[1..2] -> petite[1..2]
GN[0..2] -> D[0..1] N[1..2]
N[2..3] -> ferme[2..3]
V[2..3] -> ferme[2..3]
GN[0..3] -> D[0..1] ADJ[1..2] N[2..3]
D[3..4] -> le[3..4]
PRO[3..4] -> le[3..4]
N[4..5] -> voile[4..5]
V[4..5] -> voile[4..5]
GN[3..5] -> D[3..4] N[4..5]
GV[3..5] -> PRO[3..4] V[4..5]
GV[2..5] -> V[2..3] GN[3..5]
H[0..5] -> GN[0..3] GV[3..5]
H[0..5] -> GN[0..2] GV[2..5]
S[0..5] -> H[0..5]
>>>>>>>> <<<<<<<<
>>> be hold ! <<<
>>>>>>>> <<<<<<<<
>>>>>>>> <<<<<<<<
S[0..5] -> H[0..5]
H[0..5] -> GN[0..3] GV[3..5]
GN[0..3] -> D[0..1] ADJ[1..2] N[2..3]
D[0..1] -> la[0..1]
ADJ[1..2] -> petite[1..2]
N[2..3] -> ferme[2..3]
GV[3..5] -> PRO[3..4] V[4..5]
PRO[3..4] -> le[3..4]
V[4..5] -> voile[4..5]
>>>>>>>> <<<<<<<<
S[0..5] -> H[0..5]
H[0..5] -> GN[0..2] GV[2..5]
GN[0..2] -> D[0..1] N[1..2]
D[0..1] -> la[0..1]
N[1..2] -> petite[1..2]
GV[2..5] -> V[2..3] GN[3..5]
V[2..3] -> ferme[2..3]
GN[3..5] -> D[3..4] N[4..5]
D[3..4] -> le[3..4]
N[4..5] -> voile[4..5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment