38 #ifndef LIN_SUBSTITUTIONS_HPP_ 39 #define LIN_SUBSTITUTIONS_HPP_ 44 #include <type_traits> 60 template <
class C,
class D,
class E>
62 can_multiply<C, D>, have_same_elements<C, D, E>, have_same_dimensions<D, E>,
77 template <
class C,
class D,
class E>
115 template <
class C,
class D,
class E,
typename =
116 std::enable_if_t<internal::can_backward_sub<C, D, E>::value>>
124 size_t m = U.
rows() - 1;
125 row(X, m) =
row(Y, m) / U(m, m);
130 typedef typename C::Traits::elem_t Elem;
134 row(X, n) = (
row(Y, n) - ref<T>(U, n, n + 1, m - n) * ref<V>(X, n + 1, 0, m - n, X.
cols())) / U(n, n);
171 template <
class C,
class D,
class E,
typename =
172 std::enable_if_t<internal::can_backward_sub<C, D, E>::value>>
211 template <
class C,
class D,
class E,
typename =
212 std::enable_if_t<internal::can_forward_sub<C, D, E>::value>>
220 row(X, 0) =
row(Y, 0) / L(0, 0);
223 for (
size_t n = 1; n < X.
rows(); n++) {
224 typedef typename C::Traits::elem_t Elem;
228 row(X, n) = (
row(Y, n) - ref<T>(L, n, 0, n) * ref<V>(X, 0, 0, n, X.
cols())) / L(n, n);
265 template <
class C,
class D,
class E,
typename =
266 std::enable_if_t<internal::can_forward_sub<C, D, E>::value>>
Value backed tensor interface with resizing support.
Definition: base.hpp:40
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
Generic vector.
Definition: vector.hpp:33
Definition: substitutions.hpp:78
constexpr size_t backward_sub(internal::Mapping< C > const &U, internal::Base< D > &X, internal::Mapping< E > const &Y)
Solves a linear system using backward substitution.
Definition: substitutions.hpp:173
Generic matrix.
Definition: matrix.hpp:35
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Generic row vector.
Definition: vector.hpp:131
constexpr size_t rows() const
Definition: stream.hpp:76
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
constexpr size_t cols() const
Definition: stream.hpp:82
Definition: config.hpp:27
constexpr size_t forward_sub(internal::Mapping< C > const &L, internal::Base< D > &X, internal::Mapping< E > const &Y)
Solves a linear system using forward substitution.
Definition: substitutions.hpp:267
Definition: substitutions.hpp:61
constexpr auto row(internal::Mapping< D > &mapping, size_t i)
Creates a mapping reference of a particular row of a given tensor.
Definition: references.hpp:330