libROM  v1.0
Data-driven physical simulation library
 All Classes Functions Variables Enumerations
librom.h
1 /******************************************************************************
2  *
3  * Copyright (c) 2013-2021, Lawrence Livermore National Security, LLC
4  * and other libROM project developers. See the top-level COPYRIGHT
5  * file for details.
6  *
7  * SPDX-License-Identifier: (Apache-2.0 OR MIT)
8  *
9  *****************************************************************************/
10 
11 #ifndef included_librom_h
12 #define included_librom_h
13 
14 #include "linalg/BasisGenerator.h"
15 #include "linalg/BasisReader.h"
16 #include "linalg/Options.h"
17 #include "linalg/Matrix.h"
18 #include "linalg/Vector.h"
19 #include "algo/DMD.h"
20 #include "algo/greedy/GreedyCustomSampler.h"
21 #include "algo/greedy/GreedyRandomSampler.h"
22 #include "algo/manifold_interp/MatrixInterpolator.h"
23 #include "algo/manifold_interp/VectorInterpolator.h"
24 #include "hyperreduction/DEIM.h"
25 #include "hyperreduction/QDEIM.h"
26 #include "hyperreduction/STSampling.h"
27 #ifdef USEMFEM
28 #include "mfem/SampleMesh.hpp"
29 #endif
30 
31 #endif