blob: 3a4d189a61f706b507bd5e340c1606b2274d146c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- utils/System.cc.orig 2018-02-01 09:11:32 UTC
+++ utils/System.cc
@@ -78,7 +78,7 @@ double Glucose::memUsed(void) {
struct rusage ru;
getrusage(RUSAGE_SELF, &ru);
return (double)ru.ru_maxrss / 1024; }
-double MiniSat::memUsedPeak(void) { return memUsed(); }
+//double MiniSat::memUsedPeak(void) { return memUsed(); }
#elif defined(__APPLE__)
|