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.
13 lines
261 B
13 lines
261 B
"""
|
|
A module to implement finitary relations [1] as predicate.
|
|
|
|
References
|
|
==========
|
|
|
|
.. [1] https://en.wikipedia.org/wiki/Finitary_relation
|
|
|
|
"""
|
|
|
|
__all__ = ['BinaryRelation', 'AppliedBinaryRelation']
|
|
|
|
from .binrel import BinaryRelation, AppliedBinaryRelation
|