10 lines
326 B
Python
10 lines
326 B
Python
"""
|
|
FILE: app/core/graph_adapter.py
|
|
DESCRIPTION: Facade für das neue graph Package (Adapter-Teil).
|
|
WP-14: Modularisierung abgeschlossen.
|
|
VERSION: 0.5.0
|
|
"""
|
|
from .graph.graph_subgraph import Subgraph, expand
|
|
from .graph.graph_weights import EDGE_BASE_WEIGHTS
|
|
|
|
__all__ = ["Subgraph", "expand", "EDGE_BASE_WEIGHTS"] |