The Conley-Morse Graphs Software
c_neuron12.h
Go to the documentation of this file.
1/////////////////////////////////////////////////////////////////////////////
2///
3/// @file
4///
5/// Configuration for the Chialvo neuron model in R^2
6/// with 2 varying parameters.
7///
8/// @author Pawel Pilarczyk
9///
10/////////////////////////////////////////////////////////////////////////////
11
12// Copyright (C) 1997-2022 by Pawel Pilarczyk.
13//
14// This file is part of my research software package. This is free software:
15// you can redistribute it and/or modify it under the terms of the GNU
16// General Public License as published by the Free Software Foundation,
17// either version 3 of the License, or (at your option) any later version.
18//
19// This software is distributed in the hope that it will be useful,
20// but WITHOUT ANY WARRANTY; without even the implied warranty of
21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22// GNU General Public License for more details.
23//
24// You should have received a copy of the GNU General Public License
25// along with this software; see the file "license.txt". If not,
26// please, see <https://www.gnu.org/licenses/>.
27
28// Started on February 9, 2008. Last revision: July 18, 2022.
29
30
31#ifndef _CMGRAPHS_CONFIG_H_
32#define _CMGRAPHS_CONFIG_H_
33
34
35// Use single parameter points instead of parameter intervals.
36// Comment this setting out for the final computations.
37//#define CONFIG_PARAMPOINTS
38
39// Do preprocessing only and skip the matching part.
40//#define CONFIG_ONLYPREPROCESSING
41
42
43// --------------------------------------------------
44// -------------- THE PARAMETER RANGES --------------
45// --------- AND THE PHASE SPACE SELECTION ----------
46// --------------------------------------------------
47
48#include "p_neuron12.h"
49using namespace custom::neuron12;
50
51
52// --------------------------------------------------
53// --------------- THE MAP SELECTION ----------------
54// --------------------------------------------------
55
56#include "m_neuron1.h"
57
58/// Defines the type of the map to be used for the computations.
59/// The corresponding header file must be included prior to this definition.
61
62
63// --------------------------------------------------
64// -------------- KNOWN CONLEY INDICES --------------
65// --------------------------------------------------
66
67#include "indknown.h"
68using namespace custom::noKnownIndices;
69
70
71// --------------------------------------------------
72// ---- POST-PROCESSING OF MORSE DECOMPOSITIONS -----
73// --------------------------------------------------
74
75#include "procmdec.h"
76//#include "procrecur.h"
77using namespace custom::noProcMorseDec;
78//using namespace custom::procRecurrence;
79
80
81// --------------------------------------------------
82// ------------- COMPATIBILITY CONTROL --------------
83// --------------------------------------------------
84
85/// The control number that is used to confirm the compatibility
86/// between the coordinator and workers.
87/// Please, increase this number by 1 every time the configuration
88/// of the program changes substantially (e.g., different parameter ranges,
89/// different numbers of subintervals, or different maps are chosen).
90const int controlNumber = 20112;
91
92
93#endif // _CMGRAPHS_CONFIG_H_
94
MapNeuron1 theMapType
Defines the type of the map to be used for the computations.
Definition: c_neuron12.h:60
const int controlNumber
The control number that is used to confirm the compatibility between the coordinator and workers.
Definition: c_neuron12.h:90
This class defines a map for the nonlinear Chialvo neuron model map.
Definition: m_neuron1.h:52
Known Conley indices for a dynamical system.
The nonlinear neuron model map.
Parameters for sample computations for the 2-dimensional Leslie population model with 2 varying param...
Definition: p_neuron12.h:42
Dummy version of a function for the computation of Conley indices of Morse sets which fail the isolat...
Definition: indknown.h:54
Dummy version of a function for the post-processing of Morse decompositions.
Definition: procmdec.h:52
Parameters for for the Chialvo neuron model in R^2 with 2 varying parameters.
Dummy post-processing of Morse decompositions.