🤖 自动格式化代码 [skip ci]

This commit is contained in:
github-actions[bot]
2025-06-12 15:49:37 +00:00
parent 9673a8ad4d
commit 18e354c82d
2 changed files with 3 additions and 3 deletions

View File

@@ -410,7 +410,7 @@ class Hippocampus:
visited_nodes.add(neighbor) visited_nodes.add(neighbor)
nodes_to_process.append((neighbor, new_activation, current_depth + 1)) nodes_to_process.append((neighbor, new_activation, current_depth + 1))
# logger.debug( # logger.debug(
# f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})"
# ) # noqa: E501 # ) # noqa: E501
# 更新激活映射 # 更新激活映射
@@ -581,7 +581,7 @@ class Hippocampus:
visited_nodes.add(neighbor) visited_nodes.add(neighbor)
nodes_to_process.append((neighbor, new_activation, current_depth + 1)) nodes_to_process.append((neighbor, new_activation, current_depth + 1))
# logger.debug( # logger.debug(
# f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})" # f"节点 '{neighbor}' 被激活,激活值: {new_activation:.2f} (通过 '{current_node}' 连接,强度: {strength}, 深度: {current_depth + 1})"
# ) # noqa: E501 # ) # noqa: E501
# 更新激活映射 # 更新激活映射

View File

@@ -154,7 +154,7 @@ MODULE_COLORS = {
"memory": "\033[34m", "memory": "\033[34m",
"hfc": "\033[96m", "hfc": "\033[96m",
"base_action": "\033[96m", "base_action": "\033[96m",
"action_manager": "\033[34m]" "action_manager": "\033[34m]",
} }
RESET_COLOR = "\033[0m" RESET_COLOR = "\033[0m"