diff --git a/include/outVector.h b/include/outVector.h index e77c77f..360a396 100644 --- a/include/outVector.h +++ b/include/outVector.h @@ -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 x = std::vector(length, 0.0); std::vector y = std::vector(length, 0.0);