info.hh (8296:be7f03723412) info.hh (8514:57c96df312a1)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 220 unchanged lines hidden (view full) ---

229};
230
231class FormulaInfo : public VectorInfo
232{
233 public:
234 virtual std::string str() const = 0;
235};
236
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 220 unchanged lines hidden (view full) ---

229};
230
231class FormulaInfo : public VectorInfo
232{
233 public:
234 virtual std::string str() const = 0;
235};
236
237/** Data structure of sparse histogram */
238struct SparseHistData
239{
240 MCounter cmap;
241 Counter samples;
242};
237
243
244
245class SparseHistInfo : public Info
246{
247 public:
248 /** Local storage for the entry values, used for printing. */
249 SparseHistData data;
250};
251
238} // namespace Stats
239
240#endif // __BASE_STATS_INFO_HH__
252} // namespace Stats
253
254#endif // __BASE_STATS_INFO_HH__