From 48c1059c0a6902384c82848f245a9ce0eff711be Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Fri, 5 Nov 2021 06:04:30 -0700 Subject: [PATCH] fixed outVector size and removed teensy --- include/outVector.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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);