Skip to content

Commit

Permalink
Fix includes of header files
Browse files Browse the repository at this point in the history
  • Loading branch information
vfisikop committed Mar 6, 2024
1 parent 8f7a9f2 commit 8724a73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/crhmc_sampling_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "doctest.h"
#include "generators/known_polytope_generators.h"
#include "misc/misc.h"
#include "ode_solvers.hpp"
#include "ode_solvers/ode_solvers.hpp"
#include "preprocess/crhmc/crhmc_input.h"
#include "preprocess/crhmc/crhmc_problem.h"
#include "preprocess/crhmc/crhmc_problem.h"
Expand Down
6 changes: 3 additions & 3 deletions test/sampling_correlation_matrices_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@

#include "doctest.h"
#include <iostream>
#include "misc.h"

#include "random.hpp"
#include "random/uniform_int.hpp"
#include "random/normal_distribution.hpp"
#include "random/uniform_real_distribution.hpp"

#include "cartesian_geom/cartesian_kernel.h"
#include "diagnostics/univariate_psrf.hpp"
#include "misc/misc.h"
#include "random_walks/random_walks.hpp"
#include "sampling/sample_correlation_matrices.hpp"

#include "diagnostics/univariate_psrf.hpp"

template<typename NT, typename MT, typename VT>
MT rebuildMatrix(const VT &xvector, const unsigned int n){
MT mat = MT::Identity(n,n);
Expand Down

0 comments on commit 8724a73

Please sign in to comment.