mirror of
https://github.com/bbenchoff/OrthoRoute.git
synced 2025-12-26 10:56:47 +00:00
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
"""OrthoRoute - Advanced PCB Autorouter with Manhattan routing and GPU acceleration."""
|
|
|
|
__version__ = "0.2.0"
|
|
__author__ = "OrthoRoute Team"
|
|
__description__ = "Advanced PCB Autorouter with Manhattan routing and GPU acceleration"
|
|
|
|
# Core domain exports
|
|
from .domain.models.board import Board, Component, Net, Layer
|
|
from .domain.models.routing import Route, Segment, Via
|
|
from .domain.models.constraints import DRCConstraints, NetClass
|
|
|
|
# Service exports
|
|
from .domain.services.routing_engine import RoutingEngine
|
|
from .application.services.routing_orchestrator import RoutingOrchestrator
|
|
|
|
# Configuration
|
|
from .shared.configuration.config_manager import ConfigManager, get_config, initialize_config
|
|
from .shared.configuration.settings import ApplicationSettings
|
|
|
|
# Main application classes (GUI - optional for headless mode)
|
|
try:
|
|
from .presentation.plugin.kicad_plugin import KiCadPlugin
|
|
except ImportError:
|
|
# GUI dependencies not available - headless mode only
|
|
KiCadPlugin = None
|
|
|
|
# Algorithm exports
|
|
from .algorithms.manhattan.manhattan_router_rrg import ManhattanRRGRoutingEngine
|
|
|
|
# Infrastructure exports
|
|
from .infrastructure.kicad.ipc_adapter import KiCadIPCAdapter
|
|
from .infrastructure.gpu.cuda_provider import CUDAProvider
|
|
from .infrastructure.gpu.cpu_fallback import CPUProvider
|
|
|
|
__all__ = [
|
|
# Version info
|
|
"__version__", "__author__", "__description__",
|
|
|
|
# Domain models
|
|
"Board", "Component", "Net", "Layer",
|
|
"Route", "Segment", "Via",
|
|
"DRCConstraints", "NetClass",
|
|
|
|
# Services
|
|
"RoutingEngine", "RoutingOrchestrator",
|
|
|
|
# Configuration
|
|
"ConfigManager", "get_config", "initialize_config", "ApplicationSettings",
|
|
|
|
# Applications
|
|
"KiCadPlugin",
|
|
|
|
# Algorithms
|
|
"ManhattanRRGRoutingEngine",
|
|
|
|
# Infrastructure
|
|
"KiCadIPCAdapter", "CUDAProvider", "CPUProvider"
|
|
] |