mirror of
https://gitlab.com/lander-team/lander-cpp.git
synced 2025-07-23 14:41:25 +00:00
fixed outVector size and removed teensy
This commit is contained in:
@@ -4,11 +4,7 @@
|
||||
#define OUTVECTOR_H
|
||||
|
||||
struct outVector {
|
||||
#if defined(NATIVE) || defined(_WIN32)
|
||||
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
|
||||
int length = 10000; // current sim runs ~5000 steps, x2 just in case
|
||||
|
||||
std::vector<double> x = std::vector<double>(length, 0.0);
|
||||
std::vector<double> y = std::vector<double>(length, 0.0);
|
||||
|
Reference in New Issue
Block a user