aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/henon_map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chaos/src/henon_map.hpp')
-rw-r--r--chaos/src/henon_map.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/chaos/src/henon_map.hpp b/chaos/src/henon_map.hpp
index 73aed66..bb1c6c7 100644
--- a/chaos/src/henon_map.hpp
+++ b/chaos/src/henon_map.hpp
@@ -29,17 +29,14 @@ class henon:
public map_base
{
public:
- henon()
+ henon():
+ map_base(2)
{
- CHAOS_PRECONSTRUCTOR;
-
CHAOS_SYS_INIT(x,0,0);
CHAOS_SYS_INIT(y,0,1);
CHAOS_PAR_INIT(a,1.4);
CHAOS_PAR_INIT(b,0.3);
-
- CHAOS_POSTCONSTRUCTOR;
}
~henon()