The Conley-Morse Graphs Software
c_pop2demo.h
Go to the documentation of this file.
1/////////////////////////////////////////////////////////////////////////////
2///
3/// @file
4///
5/// Configuration for a sample Leslie population model in R^2
6/// with 2 varying parameters.
7///
8/// @author Pawel Pilarczyk
9///
10/////////////////////////////////////////////////////////////////////////////
11
12// Copyright (C) 1997-2014 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: February 9, 2008.
29
30
31#ifndef _CMGRAPHS_CONFIG_H_
32#define _CMGRAPHS_CONFIG_H_
33
34
35// Add cubes to the image of a combinatorial cubical multivalued map
36// only if their intersection with the interval box that covers the image
37// is equal or higher to the provided fraction.
38// Set the fraction to 0 to add whenever they intersect (old behavior),
39// set the fraction to a maximum of 1 (to add those only which are contained).
40//#define CONFIG_IFRACTION 0.30
41
42
43// --------------------------------------------------
44// -------------- THE PARAMETER RANGES --------------
45// --------- AND THE PHASE SPACE SELECTION ----------
46// --------------------------------------------------
47
48#include "p_pop2demo.h"
49using namespace custom::pop2demo;
50
51
52// --------------------------------------------------
53// --------------- THE MAP SELECTION ----------------
54// --------------------------------------------------
55
56#include "m_popmodel.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"
68#include "indpop2d.h"
69//using namespace custom::noKnownIndices;
70using namespace custom::popOriginInd2d;
71
72
73// --------------------------------------------------
74// ---- POST-PROCESSING OF MORSE DECOMPOSITIONS -----
75// --------------------------------------------------
76
77#include "procmdec.h"
78//#include "procexit.h"
79//#include "procrecur.h"
80using namespace custom::noProcMorseDec;
81//using namespace custom::procMorseDecExit;
82//using namespace custom::procRecurrence;
83
84
85// --------------------------------------------------
86// ------------- COMPATIBILITY CONTROL --------------
87// --------------------------------------------------
88
89/// The control number that is used to confirm the compatibility
90/// between the coordinator and workers.
91/// Please, increase this number by 1 every time the configuration
92/// of the program changes substantially (e.g., different parameter ranges,
93/// different numbers of subintervals, or different maps are chosen).
94const int controlNumber = 31101;
95
96
97#endif // _CMGRAPHS_CONFIG_H_
98
const int controlNumber
The control number that is used to confirm the compatibility between the coordinator and workers.
Definition: c_pop2demo.h:94
MapPopModel theMapType
Defines the type of the map to be used for the computations.
Definition: c_pop2demo.h:60
This class defines a map for the nonlinear density dependent overcompensatory Leslie population model...
Definition: m_popmodel.h:52
Known Conley indices for a dynamical system.
Known Conley indices for a dynamical system.
The nonlinear Leslie population model map.
Dummy version of a function for the post-processing of Morse decompositions.
Definition: procmdec.h:52
Parameters for sample computations for the 2-dimensional Leslie population model with 2 varying param...
Definition: p_pop2demo.h:42
Customized version of a function for the computation of Conley indices of Morse sets which fail the i...
Definition: indpop2d.h:54
Parameters for a sample Leslie population model in R^2 with 2 varying parameters.
Dummy post-processing of Morse decompositions.