diff options
Diffstat (limited to 'chaos/src/gaussian_map.hpp')
-rw-r--r-- | chaos/src/gaussian_map.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/chaos/src/gaussian_map.hpp b/chaos/src/gaussian_map.hpp index 5f5a4b1..9b2b8ca 100644 --- a/chaos/src/gaussian_map.hpp +++ b/chaos/src/gaussian_map.hpp @@ -29,16 +29,13 @@ class gaussian_map: public map_base { public: - gaussian_map() + gaussian_map(): + map_base(1) { - CHAOS_PRECONSTRUCTOR; - CHAOS_SYS_INIT(x, 0.5, 0); CHAOS_PAR_INIT(b,7); CHAOS_PAR_INIT(c,0.5); - - CHAOS_POSTCONSTRUCTOR; } ~gaussian_map() |