Skip to content

Commit

Permalink
Expanded allowed heap space
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Jan 22, 2025
1 parent c9e900a commit c580cfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tudatpy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ YACMA_PYTHON_MODULE(kernel

kernel/expose_numerical_simulation/expose_propagation.cpp
kernel/expose_numerical_simulation/expose_environment.cpp
# kernel/expose_numerical_simulation/expose_estimation.cpp
kernel/expose_numerical_simulation/expose_estimation.cpp

kernel/expose_numerical_simulation/expose_environment_setup.cpp
kernel/expose_numerical_simulation/expose_environment_setup/expose_aerodynamic_coefficient_setup.cpp
Expand Down
4 changes: 2 additions & 2 deletions tudatpy/kernel/expose_numerical_simulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "expose_numerical_simulation/expose_propagation_setup.h"

#include "expose_numerical_simulation/expose_environment.h"
//#include "expose_numerical_simulation/expose_estimation.h"
#include "expose_numerical_simulation/expose_estimation.h"
#include "expose_numerical_simulation/expose_propagation.h"

#include "tudat/basics/timeType.h"
Expand Down Expand Up @@ -50,7 +50,7 @@ void expose_numerical_simulation(py::module &m) {
propagation::expose_propagation(propagation_submodule);

auto estimation_submodule = m.def_submodule("estimation");
// estimation::expose_estimation(estimation_submodule);
estimation::expose_estimation(estimation_submodule);

auto environment_setup_submodule = m.def_submodule("environment_setup");
environment_setup::expose_environment_setup(environment_setup_submodule);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* http://tudat.tudelft.nl/LICENSE.
*/

//#include "expose_estimation.h"
#include "expose_estimation.h"

#include "tudat/simulation/estimation_setup/fitOrbitToEphemeris.h"
#include "tudat/astro/propagators/propagateCovariance.h"
Expand Down

0 comments on commit c580cfe

Please sign in to comment.