Coverage for /usr/lib/python3/dist-packages/sympy/assumptions/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 15:55 +0200

1""" 

2A module to implement logical predicates and assumption system. 

3""" 

4 

5from .assume import ( 

6 AppliedPredicate, Predicate, AssumptionsContext, assuming, 

7 global_assumptions 

8) 

9from .ask import Q, ask, register_handler, remove_handler 

10from .refine import refine 

11from .relation import BinaryRelation, AppliedBinaryRelation 

12 

13__all__ = [ 

14 'AppliedPredicate', 'Predicate', 'AssumptionsContext', 'assuming', 

15 'global_assumptions', 'Q', 'ask', 'register_handler', 'remove_handler', 

16 'refine', 

17 'BinaryRelation', 'AppliedBinaryRelation' 

18]