Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
"""
|
||||
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'
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue