13 lines
268 B
C++
13 lines
268 B
C++
#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
|