14 lines
394 B
Python
14 lines
394 B
Python
"""
|
|
Algebra system for PySECONDO
|
|
|
|
The algebra system is SECONDO's core extensibility mechanism.
|
|
Each algebra defines operators that can be dynamically loaded.
|
|
"""
|
|
|
|
from .base import Algebra, Operator, AlgebraManager
|
|
from .standard import StandardAlgebra
|
|
from .relation import RelationAlgebra
|
|
|
|
__all__ = ["Algebra", "Operator", "AlgebraManager",
|
|
"StandardAlgebra", "RelationAlgebra"]
|