diff options
author | MartinNowack <martin.nowack@gmail.com> | 2016-07-09 00:37:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-09 00:37:31 +0200 |
commit | e87e5bd478d8dad5a7c164197b9e39da3873442d (patch) | |
tree | 871185f3c85fcdf3f626cb39db642534308c5a6f /lib/Core/StatsTracker.cpp | |
parent | f4363713c97769f392b7d85c4782f6e1aeb1a137 (diff) | |
parent | 05a0962a50fede85aae254667d5dac1586744eb3 (diff) | |
download | klee-e87e5bd478d8dad5a7c164197b9e39da3873442d.tar.gz |
Merge pull request #363 from MartinNowack/feat_determ_allocator
Add support for deterministic allocation
Diffstat (limited to 'lib/Core/StatsTracker.cpp')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index 26890e50..97ed26ea 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -438,7 +438,7 @@ void StatsTracker::writeStatsLine() { << "," << numBranches << "," << util::getUserTime() << "," << executor.states.size() - << "," << util::GetTotalMallocUsage() + << "," << util::GetTotalMallocUsage() + executor.memory->getUsedDeterministicSize() << "," << stats::queries << "," << stats::queryConstructs << "," << 0 // was numObjects |