aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/gauss_map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chaos/src/gauss_map.hpp')
-rw-r--r--chaos/src/gauss_map.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/chaos/src/gauss_map.hpp b/chaos/src/gauss_map.hpp
index 4d62654..1e023d2 100644
--- a/chaos/src/gauss_map.hpp
+++ b/chaos/src/gauss_map.hpp
@@ -33,14 +33,16 @@ class gauss_map:
public:
gauss_map()
{
- m_num_eq = 1;
- m_data = new data_t[m_num_eq];
- CHAOS_SYS_INIT(x,0.5);
+ CHAOS_PRECONSTRUCTOR;
+
+ CHAOS_SYS_INIT(x,0.5, 0);
+
+ CHAOS_POSTCONSTRUCTOR;
}
~gauss_map()
{
- delete m_data;
+
}
virtual void m_step()