included by the compiler (via a flag) and the visibility macros have been moved to a separate header. You'll probably need to cleanup your source dir and re-run autogen.sh before compiling sgpem again. git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1191 3ecf2c5c-341e-0410-92b4-d18e462d057c
71 lines
2.1 KiB
C++
71 lines
2.1 KiB
C++
// src/backend/concrete_simulation_statistics.hh - Copyright 2005, 2006, University
|
|
// of Padova, dept. of Pure and Applied
|
|
// Mathematics
|
|
//
|
|
// This file is part of SGPEMv2.
|
|
//
|
|
// This is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// SGPEMv2 is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with SGPEMv2; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#ifndef CONCRETE_SIMULATION_STATISTICS_HH
|
|
#define CONCRETE_SIMULATION_STATISTICS_HH 1
|
|
|
|
|
|
|
|
#include <sgpemv2/simulation_statistics.hh>
|
|
#include "concrete_process_statistics.hh"
|
|
|
|
|
|
namespace sgpem
|
|
{
|
|
class ConcreteStatistics;
|
|
|
|
class ConcreteSimulationStatistics : public SimulationStatistics
|
|
{
|
|
public:
|
|
friend class ConcreteStatistics;
|
|
|
|
~ConcreteSimulationStatistics();
|
|
|
|
float get_average_inactivity_time() const ;
|
|
float get_average_execution_progress() const;
|
|
float get_average_turn_around() const ;
|
|
float get_average_response_time() const ;
|
|
float get_average_efficiency() const ;
|
|
int get_terminated_processes() const ;
|
|
int get_terminated_threads() const ;
|
|
float get_average_processes_throughput() const ;
|
|
float get_average_threads_throughput() const ;
|
|
|
|
protected:
|
|
ConcreteSimulationStatistics(const std::vector<ConcreteProcessStatistics>& proc_stats, const int& instant);
|
|
|
|
float _average_inactivity_time ;
|
|
float _average_execution_progress ;
|
|
float _average_turn_around ;
|
|
float _average_response_time ;
|
|
float _average_efficiency ;
|
|
int _terminated_processes ;
|
|
int _terminated_threads ;
|
|
float _average_processes_throughput ;
|
|
float _average_threads_throughput ;
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|