Files
INTUIA/Programa final/_internal/nltk_data/grammars/sample_grammars/background0.fol
T
2026-03-15 13:27:50 +00:00

20 lines
409 B
Plaintext

## Natural Language Toolkit: background0.fol
##
## Illustration of simple knowledge base for use with inference tools.
## To accompany sem4.fcfg
##
## Author: Ewan Klein <ewan@inf.ed.ac.uk>
## URL: <http://nltk.sourceforge.net>
## For license information, see LICENSE.TXT
all x. (boxerdog(x) -> dog(x))
all x. (boxer(x) -> person(x))
all x. (-(dog(x) & person(x)))
some x. boxer(x)
some x. boxerdog(x)