Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Mining Engineering›Pseudoflow Algorithm
Process / pipelineNetwork Flow and Graph Optimization

Pseudoflow Algorithm

Pseudoflow Algorithm for Maximum Weighted Closure · Also known as: Pseudoflow Algorithm, Hochbaum Algorithm

The Pseudoflow Algorithm, developed by Dorit Hochbaum in 1992, is a polynomial-time algorithm for computing maximum weighted closures in directed acyclic graphs. In mining, it solves the ultimate pit limit problem more efficiently than earlier methods. By maintaining feasible pseudoflows and iteratively eliminating negative-cost nodes, it achieves near-optimal practical performance even on industrial-scale block models.

ScholarGate
  1. Process / pipeline
  2. v1
  3. 2 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

Pseudoflow
Cut-off Grade (Lane)Lerchs-Grossmann Algorit…Stope Layout

When to use it

Use Pseudoflow when solving maximum weighted closure problems at industrial scale, particularly for pit optimization on large block models (millions of blocks). It outperforms the original Lerchs-Grossmann algorithm on dense graphs and provides practical advantages even when asymptotic complexity is similar. Assume the graph is acyclic and weights are well-defined. Prefer alternatives like interior-point methods for very sparse problems or when approximate solutions suffice.

Strengths & limitations

Strengths
  • Empirically faster than push-relabel or other generic max-flow algorithms on typical mining block models
  • Provably polynomial-time with practical near-linear behavior on sparse, structured graphs
  • Handles very large block models (10M+ blocks) efficiently on standard hardware
  • Robust to numerical issues due to discrete weight assignments
  • Readily parallelizable for multi-core or GPU acceleration
Limitations
  • Requires careful implementation of height-label and excess-flow tracking to achieve theoretical speed
  • Less intuitive than simpler graph algorithms; implementation bugs are common and hard to debug
  • Performance depends on graph structure; dense or heavily-connected graphs may approach worst-case complexity
  • Requires acyclic graphs; cycles must be preprocessed or detected separately
  • Limited native support for handling time-dependent or stochastic block values without reformulation

Frequently asked

How does Pseudoflow compare to the original Lerchs-Grossmann algorithm?

Both solve the same maximum closure problem with the same theoretical complexity. Pseudoflow achieves better practical performance on large, sparse graphs typical of mining block models—often 5-50x faster depending on graph structure. Both are optimal; Pseudoflow is simply more efficient in implementation.

Can I parallelize Pseudoflow for faster computation?

Yes. The algorithm has been parallelized on multi-core CPUs and GPUs. The key is parallel push operations on independent high-labeled nodes. Contention on shared labels and excess variables can limit speedup on very large shared-memory systems, but GPUs show promise for specialized designs.

What if my block model is not acyclic (has cycles)?

True cycles in the precedence graph usually indicate modeling errors (e.g., block A must be above B, and B above A simultaneously). Strongly-connected components should be merged or one edge removed. If cycles represent valid but circular dependencies (rare in mining), reformulate as a regular maximum-flow problem instead of closure.

How sensitive is the algorithm to numerical precision?

Pseudoflow uses integer or fixed-point arithmetic for capacities, making it robust to floating-point rounding. If block values are floats, they should be scaled to integers (e.g., multiply by 1000 and round) before running the algorithm to avoid cumulative rounding errors.

How does pseudoflow handle negative weights?

Negative weights (costs) are handled natively. The algorithm finds the maximum sum of weights including profitable ore and necessary costs. Nodes with net-negative value are automatically excluded from the optimal closure.

Sources

  1. Hochbaum, D. S. (1992). A new-old algorithm for minimum-cut and maximum-flow problems. Journal of the ACM, 1(1), 76-109. link ↗
  2. Hochbaum, D. S. (2001). A fast algorithms for mining and metallurgical pits optimization. SIAM Journal on Computing, 30(4), 1096-1117. link ↗

How to cite this page

ScholarGate. (2026, June 3). Pseudoflow Algorithm for Maximum Weighted Closure. ScholarGate. https://scholargate.app/en/mining-engineering/pseudoflow

Related methods

Cut-off Grade (Lane)Lerchs-Grossmann AlgorithmStope Layout

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Cut-off Grade (Lane)Mining Engineering↔ compare
  • Lerchs-Grossmann AlgorithmMining Engineering↔ compare
  • Stope LayoutMining Engineering↔ compare
Compare side by side →

Referenced by

Cut-off Grade (Lane)Lerchs-Grossmann Algorithm

Similar methods

Lerchs-Grossmann AlgorithmPush-Relabel AlgorithmFord-Fulkerson AlgorithmCut-off Grade (Lane)Stope LayoutBellman-Ford AlgorithmDijkstra AlgorithmSimplex Method

Related reference concepts

Network Flow AlgorithmsGraph AlgorithmsShortest Path AlgorithmsLinear ProgrammingGreedy AlgorithmsApproximation Algorithms

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — Pseudoflow (Pseudoflow Algorithm for Maximum Weighted Closure). Retrieved 2026-07-21 from https://scholargate.app/en/mining-engineering/pseudoflow · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Originator
Dorit S. Hochbaum
Subfamily
Network Flow and Graph Optimization
Year
1992
Type
Efficient algorithm for maximum closure problem
Related methods
Cut-off Grade (Lane)Lerchs-Grossmann AlgorithmStope Layout
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account