Package com.jgalgo.bench.impls
Class MaximumFlowBench.Gnp
- java.lang.Object
-
- com.jgalgo.bench.impls.MaximumFlowBench
-
- com.jgalgo.bench.impls.MaximumFlowBench.Gnp
-
- Enclosing class:
- MaximumFlowBench
public static class MaximumFlowBench.Gnp extends MaximumFlowBench
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.jgalgo.bench.impls.MaximumFlowBench
MaximumFlowBench.BarabasiAlbert, MaximumFlowBench.Gnp, MaximumFlowBench.RecursiveMatrix
-
-
Constructor Summary
Constructors Constructor Description Gnp()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
Dinic(org.openjdk.jmh.infra.Blackhole blackhole)
void
EdmondsKarp(org.openjdk.jmh.infra.Blackhole blackhole)
void
PushRelabelFifo(org.openjdk.jmh.infra.Blackhole blackhole)
void
PushRelabelHighestFirst(org.openjdk.jmh.infra.Blackhole blackhole)
void
PushRelabelLowestFirst(org.openjdk.jmh.infra.Blackhole blackhole)
void
PushRelabelPartialAugment(org.openjdk.jmh.infra.Blackhole blackhole)
void
PushRelabelToFront(org.openjdk.jmh.infra.Blackhole blackhole)
void
resetFlow()
void
setup()
-
-
-
Method Detail
-
resetFlow
public void resetFlow()
- Overrides:
resetFlow
in classMaximumFlowBench
-
setup
public void setup()
-
EdmondsKarp
public void EdmondsKarp(org.openjdk.jmh.infra.Blackhole blackhole)
-
Dinic
public void Dinic(org.openjdk.jmh.infra.Blackhole blackhole)
-
PushRelabelFifo
public void PushRelabelFifo(org.openjdk.jmh.infra.Blackhole blackhole)
-
PushRelabelToFront
public void PushRelabelToFront(org.openjdk.jmh.infra.Blackhole blackhole)
-
PushRelabelHighestFirst
public void PushRelabelHighestFirst(org.openjdk.jmh.infra.Blackhole blackhole)
-
PushRelabelPartialAugment
public void PushRelabelPartialAugment(org.openjdk.jmh.infra.Blackhole blackhole)
-
PushRelabelLowestFirst
public void PushRelabelLowestFirst(org.openjdk.jmh.infra.Blackhole blackhole)
-
-