Package jline.solvers.mam
Class SolverMAMFJKt
-
- All Implemented Interfaces:
public final class SolverMAMFJKt
-
-
Method Summary
Modifier and Type Method Description final static MAMFJResultsolverMAMFJ(NetworkStruct sn, DoubleArray percentiles, Integer C, String tMode)Solve Fork-Join network using FJ_codes algorithmAutomatically detects FJ topology and computes response time percentiles using the algorithm from "Beyond the Mean in Fork-Join Queues" (IFIP Performance 2015). final static DoubleinterpolatePercentile(DoubleArray storedPercentiles, DoubleArray storedValues, Double targetPercentile)Interpolate percentile from stored results -
-
Method Detail
-
solverMAMFJ
final static MAMFJResult solverMAMFJ(NetworkStruct sn, DoubleArray percentiles, Integer C, String tMode)
Solve Fork-Join network using FJ_codes algorithm
Automatically detects FJ topology and computes response time percentiles using the algorithm from "Beyond the Mean in Fork-Join Queues" (IFIP Performance 2015).
- Parameters:
sn- Network structurepercentiles- Percentile levels to compute (0-1 scale, e.g.C- Accuracy parameter (default: 100)tMode- T-matrix method: "NARE" or "Sylvest" (default: "NARE")- Returns:
MAMFJResult with performance metrics and percentiles
-
interpolatePercentile
final static Double interpolatePercentile(DoubleArray storedPercentiles, DoubleArray storedValues, Double targetPercentile)
Interpolate percentile from stored results
- Parameters:
storedPercentiles- Stored percentile levels (0-100 scale)storedValues- Stored percentile valuestargetPercentile- Target percentile to interpolate (0-100 scale)- Returns:
Interpolated value
-
-
-
-