1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 07:06:51 +00:00

fixed outVector size and removed teensy

This commit is contained in:
Anson Biggs 2021-11-05 06:04:30 -07:00
parent 897b5c1d7d
commit 48c1059c0a

View File

@ -4,11 +4,7 @@
#define OUTVECTOR_H #define OUTVECTOR_H
struct outVector { struct outVector {
#if defined(NATIVE) || defined(_WIN32) int length = 10000; // current sim runs ~5000 steps, x2 just in case
int length = 100000; // current sim runs ~5000 steps, x2 just in case
#elif defined(TEENSY)
int length = 1000; // current sim runs ~5000 steps, x2 just in case
#endif
std::vector<double> x = std::vector<double>(length, 0.0); std::vector<double> x = std::vector<double>(length, 0.0);
std::vector<double> y = std::vector<double>(length, 0.0); std::vector<double> y = std::vector<double>(length, 0.0);