fix: 变更哈希注册表以修复重复键造成的崩溃

This commit is contained in:
2026-04-19 12:08:58 +08:00
parent 053c4660d0
commit 5c43059518
9 changed files with 25 additions and 20 deletions

View File

@@ -8,7 +8,7 @@ logger = get_logger(__name__)
class BaseAlgorithm:
algo_name = "BaseAlgorithm"
desc = '算法基类'
class AlgodataDict(TypedDict):
real_rept: int
rept: int

View File

@@ -10,7 +10,7 @@ logger = get_logger(__name__)
class FAST0Algorithm(BaseAlgorithm):
algo_name = "FAST-0"
desc = '快速筛选用特殊调度器'
class AlgodataDict(TypedDict):
real_rept: int
rept: int

View File

@@ -10,7 +10,7 @@ logger = get_logger(__name__)
class SM2Algorithm(BaseAlgorithm):
algo_name = "SM-2"
desc = '经典间隔重复算法'
class AlgodataDict(TypedDict):
efactor: float
real_rept: int