- Completed renaming of class SchedulableList to SchedulableQueue

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@603 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
elvez 2006-06-03 15:19:13 +00:00
parent 4508ed017b
commit 8062dd95da
13 changed files with 20 additions and 20 deletions

View file

@ -35,7 +35,7 @@
#include "backend/process.hh"
#include "backend/slice.hh"
#include "backend/observed_subject.hh"
#include "backend/schedulable_list.hh"
#include "backend/schedulable_queue.hh"
#include "backend/schedulable_status.hh"
#include "templates/smartp.hh"
@ -46,7 +46,7 @@ class HistoryTester
{
public:
HistoryTester(SchedulableQueue sl)
: _history_length(-1), _internal_schedulable_list(sl)
: _history_length(-1), _internal_schedulable_queue(sl)
{}
/** this method gets a sequence of operations as a parameter and performs them
@ -63,10 +63,10 @@ public:
switch(commands_sequence[i])
{
case 'E':
_insert(_internal_schedulable_list);
_insert(_internal_schedulable_queue);
break;
case 'R':
_randomize(_internal_schedulable_list);
_randomize(_internal_schedulable_queue);
break;
case 'T':
_truncate();
@ -84,7 +84,7 @@ public:
int _history_length; // mirrors the correct length of the history
SchedulableQueue* _get_simulation_status_at[400]; // mirrors the correct content of the history
SchedulableStatus* _get_scheduled_at[400]; // mirrors the correct content of the history
SchedulableQueue _internal_schedulable_list;
SchedulableQueue _internal_schedulable_queue;
// looks for anomalies

View file

@ -39,7 +39,7 @@
#include "backend/process.hh"
#include "backend/slice.hh"
#include "backend/observed_subject.hh"
#include "backend/schedulable_list.hh"
#include "backend/schedulable_queue.hh"
#include "backend/schedulable_status.hh"
namespace sgpem

View file

@ -33,7 +33,7 @@
#include <iostream>
#include "backend/process.hh"
#include "backend/observed_subject.hh"
#include "backend/schedulable_list.hh"
#include "backend/schedulable_queue.hh"
#include "backend/schedulable_status.hh"
#include "templates/smartp.hh"