Changeset 197 for trunk/src/statistics.h
- Timestamp:
- 05/02/2009 05:37:36 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/statistics.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/statistics.h
r193 r197 23 23 24 24 #include "configuration.h" 25 #include <vector> 25 26 namespace statistics { 26 27 … … 52 53 int games_started; 53 54 int games_finished; 55 std::vector<int> score_distribution; 54 56 configuration::Configuration *backend; 55 57 }; 58 59 const int score_distribution_granuality = 50; 60 // anything above the following score will be in the same slot 61 const int score_distribution_max = 500; 62 const int score_distributions_slots = score_distribution_max/score_distribution_granuality+1; 56 63 57 64 } //namespace
Note: See TracChangeset
for help on using the changeset viewer.
