Source code for geopulse.network.graph

"""Network graph utilities: adjacency, admittance assembly — STUB (WP2)."""

from __future__ import annotations

from geopulse.exceptions import NotImplementedYetError

__all__ = ["build_adjacency"]


[docs] def build_adjacency(*args, **kwargs): """Build the network adjacency structure (WP2).""" raise NotImplementedYetError("build_adjacency", "WP2")