mirror of
https://github.com/deepmodeling/Uni-Lab-OS
synced 2026-05-23 17:42:40 +00:00
10 lines
310 B
Python
10 lines
310 B
Python
"""Layout Optimizer — AI 实验室布局自动排布。
|
|
|
|
独立开发包,无 ROS 依赖。集成阶段合并到 Uni-Lab-OS。
|
|
"""
|
|
|
|
from .models import Constraint, Device, Lab, Opening, Placement
|
|
from .optimizer import optimize
|
|
|
|
__all__ = ["Device", "Lab", "Opening", "Placement", "Constraint", "optimize"]
|