修改数据格式和双面板优化

This commit is contained in:
2025-12-09 09:29:10 +08:00
parent 96e4b3d856
commit d627cf9f6e
8 changed files with 125 additions and 118 deletions

View File

@@ -28,6 +28,7 @@ class MachineConfig:
class OptResult:
def __init__(self):
self.part = []
self.layer = []
self.cycle = []
self.slot = []
self.point = []
@@ -35,6 +36,7 @@ class OptResult:
def __add__(self, other):
self.part.extend(other.part)
self.layer.extend(other.layer)
self.cycle.extend(other.cycle)
self.slot.extend(other.slot)
self.point.extend(other.point)