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:
parent
897b5c1d7d
commit
48c1059c0a
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user