1
0
Files
HeurAMS-Legacy/src/heurams/kernel/algorithms/__init__.py
2025-12-13 21:47:37 +08:00

11 lines
141 B
Python

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