feat(fase3): run_portfolio sequential orchestrator + PortfolioResult aggregate
This commit is contained in:
parent
c7c42eeb75
commit
52f6f65b7d
4 changed files with 239 additions and 3 deletions
|
|
@ -1,7 +1,13 @@
|
|||
"""portfolio-optimiser — generic MAF framework for per-project cost-savings optimization."""
|
||||
|
||||
from portfolio_optimiser.run import RunResult, run_project
|
||||
from portfolio_optimiser.run import PortfolioResult, RunResult, run_portfolio, run_project
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
__all__ = ["RunResult", "run_project", "__version__"]
|
||||
__all__ = [
|
||||
"PortfolioResult",
|
||||
"RunResult",
|
||||
"run_portfolio",
|
||||
"run_project",
|
||||
"__version__",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue