lin
Classes | Functions
substitutions.hpp File Reference
#include "core.hpp"
#include "references.hpp"
#include <type_traits>

Go to the source code of this file.

Classes

struct  lin::internal::can_backward_sub< C, D, E >
 
struct  lin::internal::can_forward_sub< C, D, E >
 

Functions

template<class C , class D , class E , typename = std::enable_if_t<internal::can_backward_sub<C, D, E>::value>>
constexpr size_t lin::backward_sub (internal::Mapping< C > const &U, internal::Mapping< D > &X, internal::Mapping< E > const &Y)
 Solves a linear system using backward substitution. More...
 
template<class C , class D , class E , typename = std::enable_if_t<internal::can_backward_sub<C, D, E>::value>>
constexpr size_t lin::backward_sub (internal::Mapping< C > const &U, internal::Base< D > &X, internal::Mapping< E > const &Y)
 Solves a linear system using backward substitution. More...
 
template<class C , class D , class E , typename = std::enable_if_t<internal::can_forward_sub<C, D, E>::value>>
constexpr size_t lin::forward_sub (internal::Mapping< C > const &L, internal::Mapping< D > &X, internal::Mapping< E > const &Y)
 Solves a linear system using forward substitution. More...
 
template<class C , class D , class E , typename = std::enable_if_t<internal::can_forward_sub<C, D, E>::value>>
constexpr size_t lin::forward_sub (internal::Mapping< C > const &L, internal::Base< D > &X, internal::Mapping< E > const &Y)
 Solves a linear system using forward substitution. More...
 

Detailed Description

Author
Kyle Krol