Revision: 14045
Author: mazzin
Date: Sun Jun 15 22:43:49 2014 UTC
Log: - Removed OS Proc time from TestSoarPerformance
http://code.google.com/p/soar/source/detail?r=14045
Modified:
/trunk/SoarSuite/Tests/TestSoarPerformance/TestSoarPerformance.cpp
=======================================
--- /trunk/SoarSuite/Tests/TestSoarPerformance/TestSoarPerformance.cpp Sun
Jun 15 22:43:40 2014 UTC
+++ /trunk/SoarSuite/Tests/TestSoarPerformance/TestSoarPerformance.cpp Sun
Jun 15 22:43:49 2014 UTC
@@ -20,7 +20,6 @@
class StatsTracker {
public:
vector<double> realtimes;
- vector<double> proctimes;
vector<double> kerneltimes;
vector<double> totaltimes;
@@ -67,7 +66,6 @@
cout << endl;
#endif
PrintResultsHelper("OS Real", GetAverage(realtimes), GetLow(realtimes),
GetHigh(realtimes));
- PrintResultsHelper("OS Proc", GetAverage(proctimes), GetLow(proctimes),
GetHigh(proctimes));
PrintResultsHelper("Soar Kernel", GetAverage(kerneltimes),
GetLow(kerneltimes), GetHigh(kerneltimes));
PrintResultsHelper("Soar Total", GetAverage(totaltimes),
GetLow(totaltimes), GetHigh(totaltimes));
}
@@ -122,7 +120,6 @@
agent->ExecuteCommandLineXML("time run", &response);
pSt->realtimes.push_back(response.GetArgFloat(sml_Names::kParamRealSeconds,
0.0));
-
pSt->proctimes.push_back(response.GetArgFloat(sml_Names::kParamProcSeconds,
0.0));
agent->ExecuteCommandLineXML("stats", &response);