lin
chol.hpp
Go to the documentation of this file.
1 
5 // TODO : Documentation for this entire fil
6 
7 #ifndef LIN_FACTORIZATIONS_CHOL_HPP_
8 #define LIN_FACTORIZATIONS_CHOL_HPP_
9 
10 #include "../core.hpp"
11 #include "../generators/constants.hpp"
12 #include "../references.hpp"
13 
14 #include <cmath>
15 #include <type_traits>
16 
17 namespace lin {
18 namespace internal {
19 
21 template <class C>
22 struct can_chol : conjunction<is_matrix<C>, is_square<C>> { };
23 
24 } // namespace internal
25 
27 template <class C, std::enable_if_t<internal::can_chol<C>::value, size_t> = 0>
28 constexpr int chol(internal::Mapping<C> &L);
29 
30 } // namespace lin
31 
32 #include "inl/chol.inl"
33 
34 #endif
Definition: chol.hpp:22
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Definition: config.hpp:27