Spaces:
Sleeping
Sleeping
# Natural Language Toolkit: Inference | |
# | |
# Copyright (C) 2001-2023 NLTK Project | |
# Author: Dan Garrette <[email protected]> | |
# Ewan Klein <[email protected]> | |
# | |
# URL: <https://www.nltk.org/> | |
# For license information, see LICENSE.TXT | |
""" | |
Classes and interfaces for theorem proving and model building. | |
""" | |
from nltk.inference.api import ParallelProverBuilder, ParallelProverBuilderCommand | |
from nltk.inference.discourse import ( | |
CfgReadingCommand, | |
DiscourseTester, | |
DrtGlueReadingCommand, | |
ReadingCommand, | |
) | |
from nltk.inference.mace import Mace, MaceCommand | |
from nltk.inference.prover9 import Prover9, Prover9Command | |
from nltk.inference.resolution import ResolutionProver, ResolutionProverCommand | |
from nltk.inference.tableau import TableauProver, TableauProverCommand | |