Papers
Topics
Authors
Recent
Search
2000 character limit reached

Local Topology Slicing (LTS) Overview

Updated 11 January 2026
  • Local Topology Slicing (LTS) is a class of algorithms that isolates and manipulates local substructures in graphs and scalar fields to enable robust and scalable learning.
  • Techniques include generating subgraphs for power systems and localized flattening in scalar field analysis to improve model generalization and computational efficiency.
  • LTS significantly enhances performance, with error reductions up to 50% in power systems and speedups of up to 36× in parallel topological data analysis.

Local Topology Slicing (LTS) encompasses a class of algorithmic techniques that perform localized operations on graphs or scalar fields to facilitate robust learning or simplification under varying topological scenarios. Prominent implementations span data-augmentation for power system analysis and topological simplification in data analysis pipelines. The common thread is the isolation and manipulation of local substructures within a global system to enhance scalability, adaptability, or computational efficiency.

1. Formal Definitions and Problem Setting

The methodology of LTS is instantiated in at least two major contexts:

  • In power systems, given a complete power-system graph G=(B,E)G = (B, E) (nodes BB representing buses and edges EE representing branches), LTS generates a family of connected subgraphs Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk}) for k=1Mk = 1 \ldots M, where BskBB_{sk} \subset B are chosen to satisfy prescribed size and connectivity constraints. These slices are treated as standalone "mini-systems" for training machine learning models for power flow prediction; boundary effects are controlled by converting external tie flows into equivalent PQ-loads on slice boundaries, with further random perturbations and line outages to enhance diversity (Li et al., 4 Jan 2026).
  • In scalar field analysis, for a piecewise-linear manifold MM and scalar field f:MRf: M \to \mathbb{R}, LTS refers to the Localized Topological Simplification process. Here, the field is simplified locally by flattening sub- or superlevel set components associated with undesired extrema, with the guarantee that only user-selected extrema remain after simplification. This procedure is realized through local orderings, region-wise flattenings, and parallel recombination into a globally consistent field gg (Lukasczyk et al., 2020).

2. Algorithmic Frameworks

2.1 LTS for Power Systems

LTS in the SaMPFA framework follows a reproducible routine:

k=1Mk = 1 \ldots M5

Key constraints include enforcing subgraph connectivity, ensuring at least one generator bus per slice, and carefully handling boundary ties to preserve physical consistency.

2.2 LTS for Scalar Field Simplification

For a field ff on a mesh BB0, LTS operates as follows:

  1. Construct an injective integer "order field" based on BB1.
  2. Identify regions to be simplified via superlevel (for maxima) or sublevel (for minima) set propagations rooted at undesired extrema.
  3. For each region, perform a local reordering (flattening) such that only designated saddles or minima/maxima are preserved, applying min–max flooding adapted for the confined region.
  4. Embed local reorders into a global ordering using composite keys and parallel sorting.
  5. Reconstruct the simplified scalar field BB2 in real space, preserving global order and proximity to BB3.

The process is output-sensitive and highly parallelizable, with critical correctness guarantees for extremum removal (Lukasczyk et al., 2020).

3. Statistical Properties and Hyperparameters

In power systems data augmentation, subgraph size BB4 is sampled from a target distribution, commonly uniform over BB5, e.g., BB6, BB7 for BB8-bus systems. Main hyperparameters include:

  • BB9: limits on slice size—too small erodes physical context, too large reduces topological variability.
  • EE0: number of slices per scenario; linearly increases coverage.
  • EE1: perturbation ratios (e.g., EE2); regulate overfitting vs. instability.
  • EE3: number of random branch outages per slice; injects topological variation.

The dependence of generalization on EE4 is weak for modest variations, provided the training slice scale distribution covers likely test system sizes.

For scalar field simplification, the main controls are the set of extrema to preserve, persistence thresholds in the persistence-driven variant, and implementation choices for region propagation and sorting.

4. Computational Complexity and Parallelism

LTS is computationally efficient in both usage domains:

  • For power system slicing: per-slice cost is EE5 for BFS, boundary handling, and perturbations. In practice, millions of slices on a 39-node, 46-edge graph are generated within tens of seconds on a modern CPU (Li et al., 4 Jan 2026).
  • For scalar field simplification: region-wise propagations and local flattenings run in EE6 per region, with total cost EE7 for EE8 affected vertices and EE9 worst-case (Lukasczyk et al., 2020). The algorithm is output-sensitive, and embarrassingly parallel across regions, achieving up to Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})0 speedups and Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})1 parallel efficiency on 12-core machines.

5. Empirical Results and Practical Impact

Power Systems

  • Exposing GNN-based models to a wide distribution of slice topologies dramatically improves their cross-scale generalization.
  • On the IEEE-39 test case, LTS raises Gen-U (upscaled test set) accuracy from Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})2 to Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})3, reducing maximum prediction errors on system expansions by 40–50%.
  • On a 300–690 bus provincial grid, error reductions of 48.3–71.7% are reported across voltage, angle, branch-power, and unbalanced-power metrics, with overall accuracy elevated from Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})4 to Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})5 (Li et al., 4 Jan 2026).
  • LTS thus acts as a "multi-scale graph generator," mitigating distributional shift as network scale or topology evolves.

Scalar Field Simplification

  • LTS achieves Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})6–Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})7 speedup sequentially and Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})8–Gsk=(Bsk,Esk)G_{sk} = (B_{sk}, E_{sk})9 parallel speedup over global methods in practice.
  • Persistence-driven specialization further accelerates pipelines by k=1Mk = 1 \ldots M0–k=1Mk = 1 \ldots M1.
  • Enables interactive exploration of topological parameters as pre-processing for contour-tree or Morse–Smale complex extraction (Lukasczyk et al., 2020).

6. Illustrative Examples

Power Systems:

In the IEEE-39 application, LTS generates:

  • A 12-bus slice (seeded at bus 17)
  • A 20-bus slice (seeded at bus 22)
  • A 30-bus slice (seeded at a generator bus 5)

Each slice is processed with boundary tie adjustments and two internal branch outages, with k=1Mk = 1 \ldots M2 load perturbations. All produce physically valid AC power flow cases, greatly expanding the diversity of training scenarios and enhancing model robustness (Li et al., 4 Jan 2026).

Scalar Field Simplification:

Example on a 9-vertex chain: removing a spurious bump at 13 via flattening the region to its saddle at 10 yields a field with only the designated maximum retained, with k=1Mk = 1 \ldots M3. On a k=1Mk = 1 \ldots M4 grid, flattening corners yields a single preserved maximum at the center, fully eliminating undesired local extrema (Lukasczyk et al., 2020).

7. Applications and Significance

LTS has demonstrated central utility in:

  • Robust machine learning for power grid analysis, enabling scale-invariant inference and broader operational adaptability. Within SaMPFA, LTS is a core element supporting Reference-free Multi-task Graph Learning (RMGL) and alleviating distributional shift in GNN workflows (Li et al., 4 Jan 2026).
  • High-performance, interactive topological data analysis (TDA) pipelines, where it drastically reduces end-to-end computational cost for scalar field simplification, persistence diagram computation, and subsequent contour or Morse–Smale extraction (Lukasczyk et al., 2020).

A plausible implication is that the general paradigm of local decomposition and targeted modification, as implemented in LTS, is extensible to related combinatorial, physical, or geometric systems desiring localized augmentation, simplification, or adaptation.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Local Topology Slicing (LTS).