Package jline.solvers.fj
Interface FJFixedPoint.InnerSolve
- Enclosing class:
- FJFixedPoint
public static interface FJFixedPoint.InnerSolve
The inner solve of one pass of the fixed point.
-
Method Summary
Modifier and TypeMethodDescriptionsolve(Network net, NetworkStruct sn, SolverOptions options) Solves the transformed network.
-
Method Details
-
solve
Solves the transformed network.The transformed MODEL is passed alongside its struct because a state-based inner solve needs it: SolverFluid's initSol keys sn.state by the node objects of the model it was built from, so handing it the original model with the transformed struct would look up stations that are not in it. A struct-only solver (MVA, NC) can ignore the argument.
- Parameters:
net- the transformed network, or the original one when it has no forksn- the struct of the transformed networkoptions- the solver options- Returns:
- the metrics of that solve
-