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