The Conley-Morse Graphs Software
c_lorenz_a.h
Go to the documentation of this file.
1/////////////////////////////////////////////////////////////////////////////
2///
3/// @file
4///
5/// Configuration for an approximate time-t map for the Lorenz equations.
6///
7/// @author Pawel Pilarczyk
8///
9/////////////////////////////////////////////////////////////////////////////
10
11// Copyright (C) 1997-2014 by Pawel Pilarczyk.
12//
13// This file is part of my research software package. This is free software:
14// you can redistribute it and/or modify it under the terms of the GNU
15// General Public License as published by the Free Software Foundation,
16// either version 3 of the License, or (at your option) any later version.
17//
18// This software is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with this software; see the file "license.txt". If not,
25// please, see <https://www.gnu.org/licenses/>.
26
27// Started on June 26, 2012. Last revision: June 26, 2012.
28
29
30#ifndef _CMGRAPHS_CONFIG_H_
31#define _CMGRAPHS_CONFIG_H_
32
33
34// Enhance the invariant part the given number of times
35// before proceeding to the next subdivision level.
36#define CONFIG_ENHANCEINV 1
37
38// Use single parameter points instead of parameter intervals.
39#define CONFIG_PARAMPOINTS
40
41
42// --------------------------------------------------
43// -------------- THE PARAMETER RANGES --------------
44// --------- AND THE PHASE SPACE SELECTION ----------
45// --------------------------------------------------
46
47#include "p_lorenz.h"
48using namespace custom::lorenz;
49
50
51// --------------------------------------------------
52// --------------- THE MAP SELECTION ----------------
53// --------------------------------------------------
54
55#include "m_lorenz_a.h"
56
57/// Defines the type of the map to be used for the computations.
58/// The corresponding header file must be included prior to this definition.
60
61
62// --------------------------------------------------
63// -------------- KNOWN CONLEY INDICES --------------
64// --------------------------------------------------
65
66#include "indknown.h"
67using namespace custom::noKnownIndices;
68
69
70// --------------------------------------------------
71// ---- POST-PROCESSING OF MORSE DECOMPOSITIONS -----
72// --------------------------------------------------
73
74#include "procmdec.h"
75using namespace custom::noProcMorseDec;
76
77
78// --------------------------------------------------
79// ------------- COMPATIBILITY CONTROL --------------
80// --------------------------------------------------
81
82/// The control number that is used to confirm the compatibility
83/// between the coordinator and workers.
84/// Please, increase this number by 1 every time the configuration
85/// of the program changes substantially (e.g., different parameter ranges,
86/// different numbers of subintervals, or different maps are chosen).
87const int controlNumber = 31251;
88
89
90#endif // _CMGRAPHS_CONFIG_H_
91
const int controlNumber
The control number that is used to confirm the compatibility between the coordinator and workers.
Definition: c_lorenz_a.h:87
MapLorenzApprox theMapType
Defines the type of the map to be used for the computations.
Definition: c_lorenz_a.h:59
An approximate time-t map for the Lorenz equations.
Definition: m_lorenz_a.h:46
Known Conley indices for a dynamical system.
An approximate time-t map for the Lorenz equations.
Parameters for the Lorenz time-t map with 3 parameters.
Definition: p_lorenz.h:37
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 the Lorenz equations with 3 parameters.
Dummy post-processing of Morse decompositions.