14 lines
261 B
Python
14 lines
261 B
Python
|
"""
|
||
|
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
|