-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcecco.hpp
More file actions
35 lines (31 loc) · 1.18 KB
/
cecco.hpp
File metadata and controls
35 lines (31 loc) · 1.18 KB
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
/*
* @copyright
* Copyright (c) 2025, Christian Senger <senger@inue.uni-stuttgart.de>
*
* Licensed for noncommercial use only, including academic teaching, research, and personal non-profit purposes.
* Commercial use is prohibited without a separate commercial license. See the [LICENSE](../../LICENSE) file in the
* repository root for full terms and how to request a commercial license.
*/
#ifndef CECCO_HPP
#define CECCO_HPP
/**
* @namespace CECCO
* @brief Provides a framework for error correcting codes
*/
namespace CECCO {
/**
* @namespace CECCO::details
* @brief Contains implementation details not to be exposed to the user. Functions and classes here may change without
* notice.
*/
namespace details {}
} // namespace CECCO
#include "codes2.hpp"
// #include "field_concepts_traits.hpp" // transitive through codes.hpp
// #include "helpers.hpp" // transitive through codes.hpp
// #include "fields.hpp" // transitive through codes.hpp
// #include "blocks.hpp" // transitive through codes.hpp
// #include "vectors.hpp" // transitive through codes.hpp
// #include "polynomials.hpp" // transitive through codes.hpp
// #include "matrices.hpp" // transitive through codes.hpp
#endif