-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add theoretica_mini.h, Remove THEORETICA_INCLUDE_BASE
- Loading branch information
1 parent
17edd6c
commit ce72c15
Showing
3 changed files
with
45 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
/// | ||
/// @file theoretica_mini.h Include file for fundamental modules, | ||
/// like linear algebra and real functions. | ||
/// | ||
/// Include `theoretica.h` to automatically include all modules instead. | ||
/// | ||
|
||
#ifndef THEORETICA_MINI_H | ||
#define THEORETICA_MINI_H | ||
|
||
|
||
// Core headers | ||
#include "core/constants.h" | ||
#include "core/error.h" | ||
#include "core/core_traits.h" | ||
|
||
// Real functions | ||
#include "core/real_analysis.h" | ||
|
||
// Data manipulation | ||
#include "core/dataset.h" | ||
|
||
// Vector and matrix algebra | ||
#include "algebra/algebra.h" | ||
#include "algebra/algebra_types.h" | ||
#include "algebra/vec.h" | ||
#include "algebra/mat.h" | ||
|
||
// Complex and quaternion classes | ||
#include "complex/complex.h" | ||
#include "complex/quat.h" | ||
|
||
|
||
#endif |