refactor(backend)!: separate algorithm and data layers
Reorganize algorithm packages by business responsibility, move orchestration into services, and keep database access behind pooled repositories. Harden analysis API validation, remove unsafe legacy simulation endpoints, and add regression and architecture boundary coverage. BREAKING CHANGE: legacy algorithm module paths and obsolete simulation endpoints are removed.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
"""Demand allocation calculations."""
|
||||
|
||||
from .pipe_length_weighted import allocate_demand_by_pipe_length
|
||||
|
||||
__all__ = ["allocate_demand_by_pipe_length"]
|
||||
Reference in New Issue
Block a user