Fix compiler warnings

This commit is contained in:
2023-10-13 15:36:52 +02:00
parent 720f1815d2
commit ae7b437ac3
7 changed files with 99 additions and 108 deletions

12
include/typedefs.hpp Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __TYPEDEFS__
#define __TYPEDEFS__
#include <vector>
#include <armadillo>
typedef std::vector<arma::vec::fixed<3>> sim_cols;
typedef std::vector<arma::vec::fixed<3>> sim_rows;
typedef std::vector<sim_cols> sim_arr;
typedef arma::vec::fixed<3> vec_3d;
#endif