public IVector GetOtherRhsComponents(ILinearSystem linearSystem, IVector currentSolution)
 {
     //TODO: use a ZeroVector class that avoid doing useless operations or refactor this method. E.g. let this method
     // alter the child analyzer's rhs vector, instead of the opposite (which is currently done).
     return(linearSystem.CreateZeroVector());
 }
Esempio n. 2
0
 /// <summary>
 /// Calculates other components of the right-hand-side vector
 /// </summary>
 public IVector GetOtherRhsComponents(ILinearSystem linearSystem, IVector currentSolution)
 {
     return(linearSystem.CreateZeroVector());
 }