Advertisement
logicmoo

Untitled

Jul 30th, 2018
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 1.11 KB | None | 0 0
  1. Every park has an employee.
  2. Paraphrase
  3. If there is a park X1 then the park X1 has an employee.
  4. Syntax Boxes
  5. every   park
  6. has
  7. an  employee
  8. .
  9. Syntax Tree
  10.                   specification
  11.         __________|__________
  12.         s                   |
  13.    _____|______             |
  14.    np         vp            |
  15. ___|___       |             |
  16. det   nbar    vbar          |
  17. |     |       |             |
  18. |     n       vcompl        |
  19. |     |    ___|___          |
  20. |     |    v     np         |
  21. |     |    |   __|__        |
  22. |     |    |   det nbar     |
  23. |     |    |   |   |        |
  24. |     |    |   |   n        |
  25. |     |    |   |   |        |
  26. every park has an  employee .
  27. Internal Representation
  28. []
  29.    [A]
  30.    object(A,park,countable,na,eq,1)-1/2
  31.    =>
  32.    [B,C]
  33.    object(B,employee,countable,na,eq,1)-1/5
  34.    predicate(C,have,A,B)-1/3
  35. OWL
  36. Prefix(:=<http://attempto.ifi.uzh.ch/acewiki/sandbox#>)
  37. Prefix(ace:=<http://attempto.ifi.uzh.ch/ace#>)
  38. Ontology(<http://attempto.ifi.uzh.ch/acewiki/sandbox>
  39.    SubClassOf(
  40.       :park
  41.       ObjectSomeValuesFrom(
  42.          :have
  43.          :employee
  44.       )
  45.    )
  46. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement