summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/example/cppcon_2014/det.cpp
blob: 8597e70fc827da768f9b62f48197bd5eb0df63fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/assert.hpp>

#include "matrix/det.hpp"
namespace hana = boost::hana;
using namespace cppcon;


int main() {
    // det
    {
        BOOST_HANA_CONSTEXPR_CHECK(det(matrix(row(1))) == 1);
        BOOST_HANA_CONSTEXPR_CHECK(det(matrix(row(2))) == 2);

        BOOST_HANA_CONSTEXPR_CHECK(det(matrix(row(1, 2), row(3, 4))) == -2);

        BOOST_HANA_CONSTEXPR_CHECK(
            det(matrix(
                row(1, 5, 6),
                row(3, 2, 4),
                row(7, 8, 9)
            ))
            == 51
        );

        BOOST_HANA_CONSTEXPR_CHECK(
            det(matrix(
                row(1, 5, 6, -3),
                row(3, 2, 4, -5),
                row(7, 8, 9, -1),
                row(8, 2, 1, 10)
            )) == 214
        );

        BOOST_HANA_CONSTEXPR_CHECK(
            det(matrix(
                row(1,  5,  6, -3, 92),
                row(3,  2,  4, -5, 13),
                row(7,  8,  9, -1, 0),
                row(8,  2,  1, 10, 41),
                row(3, 12, 92, -7, -4)
            )) == -3115014
        );
    }
}