Files
HeurAMS/src/heurams/kernel/algorithms/__init__.py
2025-11-02 03:15:18 +08:00

10 lines
140 B
Python

from .sm2 import SM2Algorithm
__all__ = [
'SM2Algorithm',
]
algorithms = {
"SM-2": SM2Algorithm,
"supermemo2": SM2Algorithm,
}