1
0
Files
HeurAMS-Legacy/src/heurams/kernel/algorithms/__init__.py
2025-12-15 15:39:05 +08:00

16 lines
311 B
Python

from .sm2 import SM2Algorithm
from heurams.services.logger import get_logger
logger = get_logger(__name__)
__all__ = [
"SM2Algorithm",
]
algorithms = {
"SM-2": SM2Algorithm,
"supermemo2": SM2Algorithm,
}
logger.debug("算法模块初始化完成,注册的算法: %s", list(algorithms.keys()))