aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/lozi_map.hpp
diff options
context:
space:
mode:
authorTim Blechmann <timblech@users.sourceforge.net>2006-05-21 18:34:34 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:12:02 +0200
commit13cba7a7997e318fbba01a36912219355e387d52 (patch)
tree77ec90e15c3a912a480d21958bdf1b57a7d7f14f /chaos/src/lozi_map.hpp
parentcceea140611ff282d1513937f615abe2b8081ebc (diff)
rewrote most stuff using templates
svn path=/trunk/externals/tb/; revision=5105
Diffstat (limited to 'chaos/src/lozi_map.hpp')
-rw-r--r--chaos/src/lozi_map.hpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/chaos/src/lozi_map.hpp b/chaos/src/lozi_map.hpp
index dee6b0d..24096a6 100644
--- a/chaos/src/lozi_map.hpp
+++ b/chaos/src/lozi_map.hpp
@@ -26,11 +26,10 @@
// taken from Willi-Hans Steeb: Chaos and Fractals
class lozi_map:
- public map_base
+ public map_base<2>
{
public:
- lozi_map():
- map_base(2)
+ lozi_map()
{
CHAOS_SYS_INIT(x,0,0);
CHAOS_SYS_INIT(y,0,1);
@@ -39,11 +38,6 @@ public:
CHAOS_PAR_INIT(b,0.3);
}
- ~lozi_map()
- {
-
- }
-
virtual void m_step()
{
data_t x = m_data[0];