Permalink
Please sign in to comment.
Browse files
Added a project file for QT Creator.
Reworked the iterative solver for Stochastic RK after Rößler2010. The new scheme ist much cleaner and easier. However, it seems the old one was slightly off, so new parameter tunings might be needed. Removed unneeded use of variadic macros.
- Loading branch information...
Showing
with
173 additions
and 262 deletions.
- +17 −34 Main.cpp
- +12 −12 Plots.m
- +17 −0 T_model.pro
- +89 −96 Thalamic_Column.cpp
- +32 −20 Thalamic_Column.h
- +4 −18 Thalamus.cpp
- +0 −81 macros.h
- +2 −1 saves.h
17
T_model.pro
| @@ -0,0 +1,17 @@ | ||
| +TEMPLATE = app | ||
| +CONFIG += console | ||
| +CONFIG -= app_bundle | ||
| +CONFIG -= qt | ||
| + | ||
| +SOURCES += Main.cpp \ | ||
| + Thalamic_Column.cpp \ | ||
| + Thalamus.cpp | ||
| + | ||
| +HEADERS += ODE.h \ | ||
| + saves.h \ | ||
| + Thalamic_Column.h \ | ||
| + Stimulation.h | ||
| + | ||
| +QMAKE_CXXFLAGS += -std=c++11 -O3 | ||
| + | ||
| +SOURCES -= Thalamus.cpp |
Oops, something went wrong.
0 comments on commit
861ce23