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; }
public RotationData(GMRESSolver enclosingInstance) { InitBlock(enclosingInstance); this.dx = 0.0; this.dy = 0.0; this.cs = 0.0; this.sn = 0.0; }
private void InitBlock(GMRESSolver gmresSolver) { this.gmresSolver = gmresSolver; }