The Conley-Morse Graphs Software
typedyns.h
Go to the documentation of this file.
1/////////////////////////////////////////////////////////////////////////////
2///
3/// @file typedyns.h
4///
5/// Data types for the dynamical systems data structures.
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 October 3, 2008. Last revision: July 12, 2012.
28
29
30#ifndef _CMGRAPHS_TYPEDYNS_H_
31#define _CMGRAPHS_TYPEDYNS_H_
32
33
34// include local header files
35#include "config.h"
36#include "typedefs.h"
37#include "mapcomp.h"
38#include "conindex.h"
39#include "morsedec.h"
40
41
42// --------------------------------------------------
43// ----------- dynamical data structures ------------
44// --------------------------------------------------
45
46/// Combinatorial cubical multivalued map type.
47#ifdef _MAP_COMP_TIGHT_
48#include "mapcomp_t.h"
50#else
52#endif
53
54/// The type of the index pair for the computation of the Conley index.
56
57/// The type of the Conley index.
59
60/// The type of the Morse decomposition.
63
64
65#endif // _CMGRAPHS_TYPEDYNS_H_
66
The class that computes and returns properties of the Conley index.
Definition: conindex.h:86
A generic class that computes an index pair given the isolating neighborhood and a means to compute t...
Definition: indpair.h:104
A generic map computation routine that computes a rigorous cubical multivalued map based on a functio...
Definition: mapcomp.h:69
The generic map computation routine that computes a rigorous cubical multivalued map based on a funct...
Definition: mapcomp_t.h:73
The Morse decoposition class.
Definition: morsedec.h:65
Choice of configuration settings.
Conley index computation routines.
Map computation routines.
Map computation routines using tight enclosures (not necessarily products of intervals).
Morse decompositions.
Customizable data types for the Conley-Morse graphs computation program.
IndexPair< theCubMapType, spcCube, spcCubes > theIndexPairType
The type of the index pair for the computation of the Conley index.
Definition: typedyns.h:55
ConleyIndex< theIndexPairType > theConleyIndexType
The type of the Conley index.
Definition: typedyns.h:58
MapComputation< theMapType, spcCube, spcCubes > theCubMapType
Combinatorial cubical multivalued map type.
Definition: typedyns.h:51
MorseDecomposition< theCubMapType, spcCube, spcCubes > theMorseDecompositionType
The type of the Morse decomposition.
Definition: typedyns.h:62