Beispiel #1
0
 public RowEquation(IRowEquation a, ISparseSolver <double> solver, int row)
 {
     _a   = a;
     _rhs = solver.GetElement(row);
 }
Beispiel #2
0
 public RowEquation(IRowEquation x, IRowEquation y, ISparseSolver <double> solver, int row)
 {
     _x   = x;
     _y   = y;
     _rhs = solver.GetElement(row);
 }
Beispiel #3
0
 public RowEquation(IRowEquation a, IRowEquation b)
 {
     _a = a;
     _b = b;
 }
Beispiel #4
0
 public RowEquation(IRowEquation a)
 {
     _a = a;
 }