示例#1
0
 public RotationData(GMRESSolver enclosingInstance, double dx, double dy, double cs, double sn)
 {
     InitBlock(enclosingInstance);
     this.dx = dx;
     this.dy = dy;
     this.cs = cs;
     this.sn = sn;
 }
示例#2
0
 public RotationData(GMRESSolver enclosingInstance)
 {
     InitBlock(enclosingInstance);
     this.dx = 0.0;
     this.dy = 0.0;
     this.cs = 0.0;
     this.sn = 0.0;
 }
示例#3
0
 private void InitBlock(GMRESSolver gmresSolver)
 {
     this.gmresSolver = gmresSolver;
 }