You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
"""
A module to implement logical predicates and assumption system. """
from .assume import ( AppliedPredicate, Predicate, AssumptionsContext, assuming, global_assumptions ) from .ask import Q, ask, register_handler, remove_handler from .refine import refine from .relation import BinaryRelation, AppliedBinaryRelation
__all__ = [ 'AppliedPredicate', 'Predicate', 'AssumptionsContext', 'assuming', 'global_assumptions', 'Q', 'ask', 'register_handler', 'remove_handler', 'refine', 'BinaryRelation', 'AppliedBinaryRelation' ]
|