"""Water-demand distribution algorithms.""" from .service import ( calculate_demand_to_network, calculate_demand_to_nodes, calculate_demand_to_region, distribute_demand_to_nodes, distribute_demand_to_region, get_total_base_demand, ) __all__ = [ "calculate_demand_to_network", "calculate_demand_to_nodes", "calculate_demand_to_region", "distribute_demand_to_nodes", "distribute_demand_to_region", "get_total_base_demand", ]