m2m模型翻译
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

6 months ago
  1. """
  2. A module to implement finitary relations [1] as predicate.
  3. References
  4. ==========
  5. .. [1] https://en.wikipedia.org/wiki/Finitary_relation
  6. """
  7. __all__ = ['BinaryRelation', 'AppliedBinaryRelation']
  8. from .binrel import BinaryRelation, AppliedBinaryRelation