init algorithms module

This commit is contained in:
2025-03-17 10:38:48 +01:00
parent dcefeaa8c0
commit 5680b67d95

13
src/algorithms.rs Normal file
View File

@@ -0,0 +1,13 @@
// Ford-Fulkerson mit DFS zur Berechnung des flusserhöhenden Pfades,
// Edmonds-Karp (also Ford-Fulkerson mit BFS statt DFS),
// Dinic
// Goldberg-Tarjan (auch Preflow-Push oder Push-Relabel genannt).
use random_generator::MaxflowProblem;
mod random_generator;
impl FordFulkerson {
fn solve(problem: MaxflowProblem) -> ???solution??? {
}
}