From e96832a60cf713295cfe516eb8bb28f047279410 Mon Sep 17 00:00:00 2001 From: david-ajax Date: Thu, 2 Oct 2025 14:40:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8B=A5=E5=B9=B2=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.toml | 2 +- estimator.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.toml b/config.toml index f3ce71f..8d67796 100644 --- a/config.toml +++ b/config.toml @@ -5,6 +5,6 @@ time_override = -1 # [调试] 一键通过 quick_pass = 0 # 对于每个项目的新记忆核子数量 -tasked_number = 6 +tasked_number = 8 # UTC 时间戳修正 用于 UNIX 日时间戳的生成修正, 单位为秒 timezone_offset = +28800 # 中国标准时间 (UTC+8) \ No newline at end of file diff --git a/estimator.py b/estimator.py index 1db5899..4f03174 100644 --- a/estimator.py +++ b/estimator.py @@ -9,7 +9,7 @@ import math MINIMAL_REPEATATION = 2 FILTER = "ALL" WORST_EF = 5 -PAYLOAD = 8 +PAYLOAD = 16 print("SM-2 任务预规划实用程序") print(f"运行时刻: {datetime.datetime.now()}") @@ -59,4 +59,4 @@ for i in filelist: print("--------") for i in range(MINIMAL_REPEATATION): print(f"若按计划进行, 最长需要 {time_counter + (i + 1) * 6} 天完成全部内容的第 {i + 1} 次记忆") -print(f"规划包含 {content_counter} 字, 附加了 {text_counter - content_counter} 字的元数据内容, 共计 {text_counter} 字") \ No newline at end of file +print(f"规划包含 {content_counter} 字, 附加了 {text_counter - content_counter} 字的元数据内容, 共计 {text_counter} 字")