コード例 #1
0
ファイル: Exp.cs プロジェクト: hanyeah/SimpleCircuit
 public RowEquation(IRowEquation a, ISparseSolver <double> solver, int row)
 {
     _a   = a;
     _rhs = solver.GetElement(row);
 }
コード例 #2
0
 public RowEquation(IRowEquation x, IRowEquation y, ISparseSolver <double> solver, int row)
 {
     _x   = x;
     _y   = y;
     _rhs = solver.GetElement(row);
 }
コード例 #3
0
ファイル: Addition.cs プロジェクト: hanyeah/SimpleCircuit
 public RowEquation(IRowEquation a, IRowEquation b)
 {
     _a = a;
     _b = b;
 }
コード例 #4
0
ファイル: Negative.cs プロジェクト: hanyeah/SimpleCircuit
 public RowEquation(IRowEquation a)
 {
     _a = a;
 }