prune-trace: use uint64_t for pilot counts

This enables using very large data sets in the FESamplingPruner.

Change-Id: Ibf097ed8cec24c85a74e83a78d79aa07893cfa8c
This commit is contained in:
Christoph Borchert
2014-12-16 11:31:10 +01:00
committed by Horst Schirmeier
parent ed18399ff6
commit f23860c139
2 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,7 @@
#ifndef __FESAMPLING_PRUNER_H__
#define __FESAMPLING_PRUNER_H__
#include <stdint.h>
#include "Pruner.hpp"
#include "util/CommandLine.hpp"
@ -18,7 +19,7 @@ class FESamplingPruner : public Pruner {
fail::CommandLine::option_handle USE_KNOWN_RESULTS;
fail::CommandLine::option_handle NO_WEIGHTING;
unsigned m_samplesize;
uint64_t m_samplesize;
bool m_use_known_results, m_weighting;
public: