2019-03-25 18:19:36 +08:00
|
|
|
use alga::general::ComplexField;
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::allocator::Allocator;
|
|
|
|
use crate::base::constraint::{SameNumberOfRows, ShapeConstraint};
|
|
|
|
use crate::base::dimension::{Dim, U1};
|
|
|
|
use crate::base::storage::{Storage, StorageMut};
|
|
|
|
use crate::base::{DefaultAllocator, Matrix, MatrixMN, SquareMatrix, Vector, DVectorSlice};
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-25 18:19:36 +08:00
|
|
|
impl<N: ComplexField, D: Dim, S: Storage<N, D, D>> SquareMatrix<N, D, S> {
|
2017-08-03 01:37:44 +08:00
|
|
|
/// Computes the solution of the linear system `self . x = b` where `x` is the unknown and only
|
2018-09-24 12:48:42 +08:00
|
|
|
/// the lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn solve_lower_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.solve_lower_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the solution of the linear system `self . x = b` where `x` is the unknown and only
|
2018-09-24 12:48:42 +08:00
|
|
|
/// the upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn solve_upper_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.solve_upper_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Solves the linear system `self . x = b` where `x` is the unknown and only the
|
2018-09-24 12:48:42 +08:00
|
|
|
/// lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn solve_lower_triangular_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let cols = b.ncols();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..cols {
|
2017-08-03 01:37:44 +08:00
|
|
|
if !self.solve_lower_triangular_vector_mut(&mut b.column_mut(i)) {
|
2018-02-02 19:26:35 +08:00
|
|
|
return false;
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn solve_lower_triangular_vector_mut<R2: Dim, S2>(&self, b: &mut Vector<N, R2, S2>) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, U1>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let dim = self.nrows();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim {
|
2017-08-03 01:37:44 +08:00
|
|
|
let coeff;
|
|
|
|
|
|
|
|
unsafe {
|
2018-12-03 04:00:08 +08:00
|
|
|
let diag = *self.get_unchecked((i, i));
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
coeff = *b.vget_unchecked(i) / diag;
|
|
|
|
*b.vget_unchecked_mut(i) = coeff;
|
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
b.rows_range_mut(i + 1..)
|
|
|
|
.axpy(-coeff, &self.slice_range(i + 1.., i), N::one());
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: add the same but for solving upper-triangular.
|
|
|
|
/// Solves the linear system `self . x = b` where `x` is the unknown and only the
|
2018-09-24 12:48:42 +08:00
|
|
|
/// lower-triangular part of `self` is considered not-zero. The diagonal is never read as it is
|
2017-08-03 01:37:44 +08:00
|
|
|
/// assumed to be equal to `diag`. Returns `false` and does not modify its inputs if `diag` is zero.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn solve_lower_triangular_with_diag_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
diag: N,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
let dim = self.nrows();
|
2017-08-03 01:37:44 +08:00
|
|
|
let cols = b.ncols();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for k in 0..cols {
|
2017-08-03 01:37:44 +08:00
|
|
|
let mut bcol = b.column_mut(k);
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim - 1 {
|
2017-08-03 01:37:44 +08:00
|
|
|
let coeff = unsafe { *bcol.vget_unchecked(i) } / diag;
|
2018-02-02 19:26:35 +08:00
|
|
|
bcol.rows_range_mut(i + 1..)
|
|
|
|
.axpy(-coeff, &self.slice_range(i + 1.., i), N::one());
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Solves the linear system `self . x = b` where `x` is the unknown and only the
|
2018-09-24 12:48:42 +08:00
|
|
|
/// upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn solve_upper_triangular_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let cols = b.ncols();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..cols {
|
2017-08-03 01:37:44 +08:00
|
|
|
if !self.solve_upper_triangular_vector_mut(&mut b.column_mut(i)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn solve_upper_triangular_vector_mut<R2: Dim, S2>(&self, b: &mut Vector<N, R2, S2>) -> bool
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, U1>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let dim = self.nrows();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in (0..dim).rev() {
|
2017-08-03 01:37:44 +08:00
|
|
|
let coeff;
|
|
|
|
|
|
|
|
unsafe {
|
2018-12-03 04:00:08 +08:00
|
|
|
let diag = *self.get_unchecked((i, i));
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
coeff = *b.vget_unchecked(i) / diag;
|
|
|
|
*b.vget_unchecked_mut(i) = coeff;
|
|
|
|
}
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
b.rows_range_mut(..i)
|
|
|
|
.axpy(-coeff, &self.slice_range(..i, i), N::one());
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
2019-03-23 18:48:12 +08:00
|
|
|
* Transpose and adjoint versions
|
2017-08-03 01:37:44 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
/// Computes the solution of the linear system `self.transpose() . x = b` where `x` is the unknown and only
|
2018-09-24 12:48:42 +08:00
|
|
|
/// the lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn tr_solve_lower_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
2019-03-23 18:48:12 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.tr_solve_lower_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Computes the solution of the linear system `self.transpose() . x = b` where `x` is the unknown and only
|
2018-09-24 12:48:42 +08:00
|
|
|
/// the upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn tr_solve_upper_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
2019-03-23 18:48:12 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.tr_solve_upper_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
2018-02-02 19:26:35 +08:00
|
|
|
} else {
|
2017-08-03 01:37:44 +08:00
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Solves the linear system `self.transpose() . x = b` where `x` is the unknown and only the
|
2018-09-24 12:48:42 +08:00
|
|
|
/// lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn tr_solve_lower_triangular_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
2019-03-23 18:48:12 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let cols = b.ncols();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..cols {
|
2019-03-23 18:48:12 +08:00
|
|
|
if !self.xx_solve_lower_triangular_vector_mut(&mut b.column_mut(i), |e| e, |a, b| a.dot(b)) {
|
2017-08-03 01:37:44 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
/// Solves the linear system `self.transpose() . x = b` where `x` is the unknown and only the
|
|
|
|
/// upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
|
|
|
pub fn tr_solve_upper_triangular_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2019-03-23 18:48:12 +08:00
|
|
|
let cols = b.ncols();
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
for i in 0..cols {
|
|
|
|
if !self.xx_solve_upper_triangular_vector_mut(&mut b.column_mut(i), |e| e, |a, b| a.dot(b)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
true
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
/// Computes the solution of the linear system `self.adjoint() . x = b` where `x` is the unknown and only
|
|
|
|
/// the lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
|
|
|
#[inline]
|
|
|
|
pub fn ad_solve_lower_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.ad_solve_lower_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
/// Computes the solution of the linear system `self.adjoint() . x = b` where `x` is the unknown and only
|
|
|
|
/// the upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
|
|
|
#[inline]
|
|
|
|
pub fn ad_solve_upper_triangular<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &Matrix<N, R2, C2, S2>,
|
|
|
|
) -> Option<MatrixMN<N, R2, C2>>
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
DefaultAllocator: Allocator<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
let mut res = b.clone_owned();
|
|
|
|
if self.ad_solve_upper_triangular_mut(&mut res) {
|
|
|
|
Some(res)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
/// Solves the linear system `self.adjoint() . x = b` where `x` is the unknown and only the
|
|
|
|
/// lower-triangular part of `self` (including the diagonal) is considered not-zero.
|
|
|
|
pub fn ad_solve_lower_triangular_mut<R2: Dim, C2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
let cols = b.ncols();
|
|
|
|
|
|
|
|
for i in 0..cols {
|
|
|
|
if !self.xx_solve_lower_triangular_vector_mut(&mut b.column_mut(i), |e| e.conjugate(), |a, b| a.dotc(b)) {
|
|
|
|
return false;
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
/// Solves the linear system `self.adjoint() . x = b` where `x` is the unknown and only the
|
2018-09-24 12:48:42 +08:00
|
|
|
/// upper-triangular part of `self` (including the diagonal) is considered not-zero.
|
2019-03-23 18:48:12 +08:00
|
|
|
pub fn ad_solve_upper_triangular_mut<R2: Dim, C2: Dim, S2>(
|
2018-02-02 19:26:35 +08:00
|
|
|
&self,
|
|
|
|
b: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
) -> bool
|
2019-03-23 18:48:12 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let cols = b.ncols();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..cols {
|
2019-03-23 18:48:12 +08:00
|
|
|
if !self.xx_solve_upper_triangular_vector_mut(&mut b.column_mut(i), |e| e.conjugate(), |a, b| a.dotc(b)) {
|
2017-08-03 01:37:44 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2019-03-23 18:48:12 +08:00
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn xx_solve_lower_triangular_vector_mut<R2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Vector<N, R2, S2>,
|
|
|
|
conjugate: impl Fn(N) -> N,
|
|
|
|
dot: impl Fn(&DVectorSlice<N, S::RStride, S::CStride>, &DVectorSlice<N, S2::RStride, S2::CStride>) -> N,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, U1>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
let dim = self.nrows();
|
|
|
|
|
|
|
|
for i in (0..dim).rev() {
|
|
|
|
let dot = dot(&self.slice_range(i + 1.., i), &b.slice_range(i + 1.., 0));
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let b_i = b.vget_unchecked_mut(i);
|
|
|
|
|
|
|
|
let diag = conjugate(*self.get_unchecked((i, i)));
|
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*b_i = (*b_i - dot) / diag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn xx_solve_upper_triangular_vector_mut<R2: Dim, S2>(
|
|
|
|
&self,
|
|
|
|
b: &mut Vector<N, R2, S2>,
|
|
|
|
conjugate: impl Fn(N) -> N,
|
|
|
|
dot: impl Fn(&DVectorSlice<N, S::RStride, S::CStride>, &DVectorSlice<N, S2::RStride, S2::CStride>) -> N,
|
|
|
|
) -> bool
|
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, U1>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let dim = self.nrows();
|
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
for i in 0..dim {
|
2019-03-23 18:48:12 +08:00
|
|
|
let dot = dot(&self.slice_range(..i, i), &b.slice_range(..i, 0));
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
unsafe {
|
2018-02-02 19:26:35 +08:00
|
|
|
let b_i = b.vget_unchecked_mut(i);
|
2019-03-23 18:48:12 +08:00
|
|
|
let diag = conjugate(*self.get_unchecked((i, i)));
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
if diag.is_zero() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*b_i = (*b_i - dot) / diag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|