Update versions and some other things

- Update version numbers for Doxygen
- Use vec3 instead of vec_3d
This commit is contained in:
2023-10-23 12:42:12 +02:00
parent 0dfb102cef
commit 1ae665e7e7
5 changed files with 98 additions and 101 deletions

View File

@@ -18,23 +18,23 @@
#include <armadillo>
#include <vector>
/** @brief Typedef for a fixed 3d arma vector.
* */
typedef arma::vec::fixed<3> vec3;
/** @brief Typedef for the column of the result vector from simulating
* particles.
* */
typedef std::vector<arma::vec::fixed<3>> sim_cols;
typedef std::vector<vec3> sim_cols;
/** @brief Typedef for the row of the result vector from simulating particles.
* */
typedef std::vector<arma::vec::fixed<3>> sim_rows;
typedef std::vector<vec3> sim_rows;
/** @brief Typedef for the result of the simulate method.
* */
typedef std::vector<sim_cols> sim_arr;
/** @brief Typedef for a fixed 3d arma vector.
* */
typedef arma::vec::fixed<3> vec_3d;
/** @brief Typedef for PenningTrap::simulation return value.
* */
typedef struct simulation {