|
"""
|
|
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
|