TODO Ntriple dans une affectation
This commit is contained in:
31
README.md
31
README.md
@@ -4,17 +4,19 @@ Réalisé par Thibaut ROCHAS et Tuan Minh VU
|
|||||||
|
|
||||||
## Implémentation du ASD
|
## Implémentation du ASD
|
||||||
```
|
```
|
||||||
|
|
||||||
turtle ::= Turtle(phrase*)
|
turtle ::= Turtle(phrase*)
|
||||||
|
|
||||||
phrase ::= Phrase(entity, aff*)
|
phrase ::= Phrase(entity, aff*)
|
||||||
phrase.ent = entity.val
|
//pour chaque aff.comp
|
||||||
phrase.aff = union(phrase.aff,aff.comp)
|
phrase.s = entity.val
|
||||||
|
phrase.v = aff.ent
|
||||||
aff ::= Aff(ntity, complement*)
|
phrase.c = aff.comp.ent
|
||||||
|
aff ::= Aff(ntity, complement*) //TODO générer les Ntiple
|
||||||
aff.ent = enity.val
|
aff.ent = enity.val
|
||||||
aff.comp = union(aff.comp,complement.ent)
|
aff.comp = union(aff.comp,complement.ent)
|
||||||
|
|
||||||
complement ::= Complement(entity)
|
complement ::= Complement(entity)
|
||||||
complement.ent = entity.val
|
complement.ent = entity.val
|
||||||
| Complement_Text(String)
|
| Complement_Text(String)
|
||||||
complement.ent = String.self
|
complement.ent = String.self
|
||||||
@@ -23,15 +25,16 @@ entity ::= Entity(String)
|
|||||||
entity.val=String.self
|
entity.val=String.self
|
||||||
```
|
```
|
||||||
|
|
||||||
TAD Nom Type Polarité Descp
|
TAD Nom Type Polarité Descp
|
||||||
turtel val list(phrase) H
|
turtel val list(phrase) H
|
||||||
phrase ent String H
|
phrase s String H
|
||||||
aff list(String,list(String)) H
|
v String H
|
||||||
aff ent String H
|
c String H
|
||||||
comp list(String) H
|
aff ent String H
|
||||||
complement ent String H
|
comp list(String) H
|
||||||
txt String S
|
complement ent String H
|
||||||
entity val String S
|
txt String S
|
||||||
|
entity val String S
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user