diff Event.h @ 13:0d4048bfadbb

Fixes to beat insertion in Agent. We get plausible results now, but there's probably quite a lot still to do.
author Chris Cannam
date Thu, 06 Oct 2011 18:37:50 +0100
parents 3c11becfc81a
children
line wrap: on
line diff
--- a/Event.h	Thu Oct 06 15:21:03 2011 +0100
+++ b/Event.h	Thu Oct 06 18:37:50 2011 +0100
@@ -16,7 +16,7 @@
 #ifndef _EVENT_H_
 #define _EVENT_H_
 
-#include <vector>
+#include <list>
 
 struct Event {
     double time;
@@ -34,7 +34,7 @@
     }
 };
 
-typedef std::vector<Event> EventList;
+typedef std::list<Event> EventList;
 
 #endif