|
From: <sv...@va...> - 2007-09-26 23:28:14
|
Author: njn
Date: 2007-09-27 00:28:15 +0100 (Thu, 27 Sep 2007)
New Revision: 6919
Log:
make -v more informative
Modified:
branches/MASSIF2/massif/ms_main.c
branches/MASSIF2/massif/tests/culling1.stderr.exp
branches/MASSIF2/massif/tests/culling2.stderr.exp
branches/MASSIF2/massif/tests/realloc.stderr.exp
Modified: branches/MASSIF2/massif/ms_main.c
===================================================================
--- branches/MASSIF2/massif/ms_main.c 2007-09-26 23:01:39 UTC (rev 6918)
+++ branches/MASSIF2/massif/ms_main.c 2007-09-26 23:28:15 UTC (rev 6919)
@@ -33,6 +33,7 @@
// Todo:
// - -v: give more detail on each snapshot -- sizes, etc
// - -v: print number of skipped snapshots after each one is taken
+// - make --time-unit=B include heap-admin bytes
// - Add ability to draw multiple graphs, eg. heap-only, stack-only, total.
// Give each graph a title.
// - do peak-taking.
@@ -845,8 +846,8 @@
struct {
Time time;
SizeT total_szB; // Size of all allocations at that snapshot time.
+ SizeT heap_szB;
SizeT heap_admin_szB;
- SizeT heap_szB;
SizeT stacks_szB;
XPt* alloc_xpt; // Heap XTree root, if a detailed snapshot,
} // otherwise NULL
@@ -925,9 +926,15 @@
static void VERB_snapshot(Char* prefix, Int i)
{
- Char* suffix = ( is_detailed_snapshot(&snapshots[i]) ? " (detailed)" : "");
- VERB("%s snapshot %3d (t = %lld %s)%s", prefix, i,
- snapshots[i].time, TimeUnit_to_string(clo_time_unit), suffix);
+ Char* suffix = ( is_detailed_snapshot(&snapshots[i]) ? "d" : ".");
+ VERB("%s S%s%3d "
+ "(t:%lld, hp:%ld, ad:%ld, st:%ld)",
+ prefix, suffix, i,
+ snapshots[i].time,
+ snapshots[i].heap_szB,
+ snapshots[i].heap_admin_szB,
+ snapshots[i].stacks_szB
+ );
}
// Weed out half the snapshots; we choose those that represent the smallest
@@ -994,7 +1001,7 @@
min_snapshot = & snapshots[ min_j ];
if (VG_(clo_verbosity) > 1) {
Char buf[64];
- VG_(snprintf)(buf, 64, " cull %3d (t-span = %lld)", i, min_timespan);
+ VG_(snprintf)(buf, 64, " %3d (t-span = %lld)", i, min_timespan);
VERB_snapshot(buf, min_j);
}
delete_snapshot(min_snapshot);
@@ -1060,11 +1067,11 @@
// so when the time-unit is 'ms' we always have a big gap between the
// first two snapshots. But at least users won't have to wonder why
// the first snapshot isn't at t=0.
- static Bool is_first_snapshot = True;
+ static Bool is_first_get_time = True;
static Time start_time_ms;
- if (is_first_snapshot) {
+ if (is_first_get_time) {
start_time_ms = VG_(read_millisecond_timer)();
- is_first_snapshot = False;
+ is_first_get_time = False;
return 0;
} else {
return VG_(read_millisecond_timer)() - start_time_ms;
Modified: branches/MASSIF2/massif/tests/culling1.stderr.exp
===================================================================
--- branches/MASSIF2/massif/tests/culling1.stderr.exp 2007-09-26 23:01:39 UTC (rev 6918)
+++ branches/MASSIF2/massif/tests/culling1.stderr.exp 2007-09-26 23:28:15 UTC (rev 6919)
@@ -5,361 +5,361 @@
Massif: 4: __builtin_new
Massif: 5: __builtin_vec_new
Massif: 6: malloc
-Massif: startup snapshot 0 (t = 0 B)
-Massif: alloc snapshot 1 (t = 10 B)
-Massif: alloc snapshot 2 (t = 20 B)
-Massif: alloc snapshot 3 (t = 30 B)
-Massif: alloc snapshot 4 (t = 40 B)
-Massif: alloc snapshot 5 (t = 50 B)
-Massif: alloc snapshot 6 (t = 60 B)
-Massif: alloc snapshot 7 (t = 70 B)
-Massif: alloc snapshot 8 (t = 80 B)
-Massif: alloc snapshot 9 (t = 90 B) (detailed)
-Massif: alloc snapshot 10 (t = 100 B)
-Massif: alloc snapshot 11 (t = 110 B)
-Massif: alloc snapshot 12 (t = 120 B)
-Massif: alloc snapshot 13 (t = 130 B)
-Massif: alloc snapshot 14 (t = 140 B)
-Massif: alloc snapshot 15 (t = 150 B)
-Massif: alloc snapshot 16 (t = 160 B)
-Massif: alloc snapshot 17 (t = 170 B)
-Massif: alloc snapshot 18 (t = 180 B)
-Massif: alloc snapshot 19 (t = 190 B) (detailed)
-Massif: alloc snapshot 20 (t = 200 B)
-Massif: alloc snapshot 21 (t = 210 B)
-Massif: alloc snapshot 22 (t = 220 B)
-Massif: alloc snapshot 23 (t = 230 B)
-Massif: alloc snapshot 24 (t = 240 B)
-Massif: alloc snapshot 25 (t = 250 B)
-Massif: alloc snapshot 26 (t = 260 B)
-Massif: alloc snapshot 27 (t = 270 B)
-Massif: alloc snapshot 28 (t = 280 B)
-Massif: alloc snapshot 29 (t = 290 B) (detailed)
-Massif: alloc snapshot 30 (t = 300 B)
-Massif: alloc snapshot 31 (t = 310 B)
-Massif: alloc snapshot 32 (t = 320 B)
-Massif: alloc snapshot 33 (t = 330 B)
-Massif: alloc snapshot 34 (t = 340 B)
-Massif: alloc snapshot 35 (t = 350 B)
-Massif: alloc snapshot 36 (t = 360 B)
-Massif: alloc snapshot 37 (t = 370 B)
-Massif: alloc snapshot 38 (t = 380 B)
-Massif: alloc snapshot 39 (t = 390 B) (detailed)
-Massif: alloc snapshot 40 (t = 400 B)
-Massif: alloc snapshot 41 (t = 410 B)
-Massif: alloc snapshot 42 (t = 420 B)
-Massif: alloc snapshot 43 (t = 430 B)
-Massif: alloc snapshot 44 (t = 440 B)
-Massif: alloc snapshot 45 (t = 450 B)
-Massif: alloc snapshot 46 (t = 460 B)
-Massif: alloc snapshot 47 (t = 470 B)
-Massif: alloc snapshot 48 (t = 480 B)
-Massif: alloc snapshot 49 (t = 490 B) (detailed)
-Massif: alloc snapshot 50 (t = 500 B)
-Massif: alloc snapshot 51 (t = 510 B)
-Massif: alloc snapshot 52 (t = 520 B)
-Massif: alloc snapshot 53 (t = 530 B)
-Massif: alloc snapshot 54 (t = 540 B)
-Massif: alloc snapshot 55 (t = 550 B)
-Massif: alloc snapshot 56 (t = 560 B)
-Massif: alloc snapshot 57 (t = 570 B)
-Massif: alloc snapshot 58 (t = 580 B)
-Massif: alloc snapshot 59 (t = 590 B) (detailed)
-Massif: alloc snapshot 60 (t = 600 B)
-Massif: alloc snapshot 61 (t = 610 B)
-Massif: alloc snapshot 62 (t = 620 B)
-Massif: alloc snapshot 63 (t = 630 B)
-Massif: alloc snapshot 64 (t = 640 B)
-Massif: alloc snapshot 65 (t = 650 B)
-Massif: alloc snapshot 66 (t = 660 B)
-Massif: alloc snapshot 67 (t = 670 B)
-Massif: alloc snapshot 68 (t = 680 B)
-Massif: alloc snapshot 69 (t = 690 B) (detailed)
-Massif: alloc snapshot 70 (t = 700 B)
-Massif: alloc snapshot 71 (t = 710 B)
-Massif: alloc snapshot 72 (t = 720 B)
-Massif: alloc snapshot 73 (t = 730 B)
-Massif: alloc snapshot 74 (t = 740 B)
-Massif: alloc snapshot 75 (t = 750 B)
-Massif: alloc snapshot 76 (t = 760 B)
-Massif: alloc snapshot 77 (t = 770 B)
-Massif: alloc snapshot 78 (t = 780 B)
-Massif: alloc snapshot 79 (t = 790 B) (detailed)
-Massif: alloc snapshot 80 (t = 800 B)
-Massif: alloc snapshot 81 (t = 810 B)
-Massif: alloc snapshot 82 (t = 820 B)
-Massif: alloc snapshot 83 (t = 830 B)
-Massif: alloc snapshot 84 (t = 840 B)
-Massif: alloc snapshot 85 (t = 850 B)
-Massif: alloc snapshot 86 (t = 860 B)
-Massif: alloc snapshot 87 (t = 870 B)
-Massif: alloc snapshot 88 (t = 880 B)
-Massif: alloc snapshot 89 (t = 890 B) (detailed)
-Massif: alloc snapshot 90 (t = 900 B)
-Massif: alloc snapshot 91 (t = 910 B)
-Massif: alloc snapshot 92 (t = 920 B)
-Massif: alloc snapshot 93 (t = 930 B)
-Massif: alloc snapshot 94 (t = 940 B)
-Massif: alloc snapshot 95 (t = 950 B)
-Massif: alloc snapshot 96 (t = 960 B)
-Massif: alloc snapshot 97 (t = 970 B)
-Massif: alloc snapshot 98 (t = 980 B)
-Massif: alloc snapshot 99 (t = 990 B) (detailed)
+Massif: startup S. 0 (t:0, hp:0, ad:0, st:0)
+Massif: alloc S. 1 (t:10, hp:10, ad:8, st:0)
+Massif: alloc S. 2 (t:20, hp:20, ad:16, st:0)
+Massif: alloc S. 3 (t:30, hp:30, ad:24, st:0)
+Massif: alloc S. 4 (t:40, hp:40, ad:32, st:0)
+Massif: alloc S. 5 (t:50, hp:50, ad:40, st:0)
+Massif: alloc S. 6 (t:60, hp:60, ad:48, st:0)
+Massif: alloc S. 7 (t:70, hp:70, ad:56, st:0)
+Massif: alloc S. 8 (t:80, hp:80, ad:64, st:0)
+Massif: alloc Sd 9 (t:90, hp:90, ad:72, st:0)
+Massif: alloc S. 10 (t:100, hp:100, ad:80, st:0)
+Massif: alloc S. 11 (t:110, hp:110, ad:88, st:0)
+Massif: alloc S. 12 (t:120, hp:120, ad:96, st:0)
+Massif: alloc S. 13 (t:130, hp:130, ad:104, st:0)
+Massif: alloc S. 14 (t:140, hp:140, ad:112, st:0)
+Massif: alloc S. 15 (t:150, hp:150, ad:120, st:0)
+Massif: alloc S. 16 (t:160, hp:160, ad:128, st:0)
+Massif: alloc S. 17 (t:170, hp:170, ad:136, st:0)
+Massif: alloc S. 18 (t:180, hp:180, ad:144, st:0)
+Massif: alloc Sd 19 (t:190, hp:190, ad:152, st:0)
+Massif: alloc S. 20 (t:200, hp:200, ad:160, st:0)
+Massif: alloc S. 21 (t:210, hp:210, ad:168, st:0)
+Massif: alloc S. 22 (t:220, hp:220, ad:176, st:0)
+Massif: alloc S. 23 (t:230, hp:230, ad:184, st:0)
+Massif: alloc S. 24 (t:240, hp:240, ad:192, st:0)
+Massif: alloc S. 25 (t:250, hp:250, ad:200, st:0)
+Massif: alloc S. 26 (t:260, hp:260, ad:208, st:0)
+Massif: alloc S. 27 (t:270, hp:270, ad:216, st:0)
+Massif: alloc S. 28 (t:280, hp:280, ad:224, st:0)
+Massif: alloc Sd 29 (t:290, hp:290, ad:232, st:0)
+Massif: alloc S. 30 (t:300, hp:300, ad:240, st:0)
+Massif: alloc S. 31 (t:310, hp:310, ad:248, st:0)
+Massif: alloc S. 32 (t:320, hp:320, ad:256, st:0)
+Massif: alloc S. 33 (t:330, hp:330, ad:264, st:0)
+Massif: alloc S. 34 (t:340, hp:340, ad:272, st:0)
+Massif: alloc S. 35 (t:350, hp:350, ad:280, st:0)
+Massif: alloc S. 36 (t:360, hp:360, ad:288, st:0)
+Massif: alloc S. 37 (t:370, hp:370, ad:296, st:0)
+Massif: alloc S. 38 (t:380, hp:380, ad:304, st:0)
+Massif: alloc Sd 39 (t:390, hp:390, ad:312, st:0)
+Massif: alloc S. 40 (t:400, hp:400, ad:320, st:0)
+Massif: alloc S. 41 (t:410, hp:410, ad:328, st:0)
+Massif: alloc S. 42 (t:420, hp:420, ad:336, st:0)
+Massif: alloc S. 43 (t:430, hp:430, ad:344, st:0)
+Massif: alloc S. 44 (t:440, hp:440, ad:352, st:0)
+Massif: alloc S. 45 (t:450, hp:450, ad:360, st:0)
+Massif: alloc S. 46 (t:460, hp:460, ad:368, st:0)
+Massif: alloc S. 47 (t:470, hp:470, ad:376, st:0)
+Massif: alloc S. 48 (t:480, hp:480, ad:384, st:0)
+Massif: alloc Sd 49 (t:490, hp:490, ad:392, st:0)
+Massif: alloc S. 50 (t:500, hp:500, ad:400, st:0)
+Massif: alloc S. 51 (t:510, hp:510, ad:408, st:0)
+Massif: alloc S. 52 (t:520, hp:520, ad:416, st:0)
+Massif: alloc S. 53 (t:530, hp:530, ad:424, st:0)
+Massif: alloc S. 54 (t:540, hp:540, ad:432, st:0)
+Massif: alloc S. 55 (t:550, hp:550, ad:440, st:0)
+Massif: alloc S. 56 (t:560, hp:560, ad:448, st:0)
+Massif: alloc S. 57 (t:570, hp:570, ad:456, st:0)
+Massif: alloc S. 58 (t:580, hp:580, ad:464, st:0)
+Massif: alloc Sd 59 (t:590, hp:590, ad:472, st:0)
+Massif: alloc S. 60 (t:600, hp:600, ad:480, st:0)
+Massif: alloc S. 61 (t:610, hp:610, ad:488, st:0)
+Massif: alloc S. 62 (t:620, hp:620, ad:496, st:0)
+Massif: alloc S. 63 (t:630, hp:630, ad:504, st:0)
+Massif: alloc S. 64 (t:640, hp:640, ad:512, st:0)
+Massif: alloc S. 65 (t:650, hp:650, ad:520, st:0)
+Massif: alloc S. 66 (t:660, hp:660, ad:528, st:0)
+Massif: alloc S. 67 (t:670, hp:670, ad:536, st:0)
+Massif: alloc S. 68 (t:680, hp:680, ad:544, st:0)
+Massif: alloc Sd 69 (t:690, hp:690, ad:552, st:0)
+Massif: alloc S. 70 (t:700, hp:700, ad:560, st:0)
+Massif: alloc S. 71 (t:710, hp:710, ad:568, st:0)
+Massif: alloc S. 72 (t:720, hp:720, ad:576, st:0)
+Massif: alloc S. 73 (t:730, hp:730, ad:584, st:0)
+Massif: alloc S. 74 (t:740, hp:740, ad:592, st:0)
+Massif: alloc S. 75 (t:750, hp:750, ad:600, st:0)
+Massif: alloc S. 76 (t:760, hp:760, ad:608, st:0)
+Massif: alloc S. 77 (t:770, hp:770, ad:616, st:0)
+Massif: alloc S. 78 (t:780, hp:780, ad:624, st:0)
+Massif: alloc Sd 79 (t:790, hp:790, ad:632, st:0)
+Massif: alloc S. 80 (t:800, hp:800, ad:640, st:0)
+Massif: alloc S. 81 (t:810, hp:810, ad:648, st:0)
+Massif: alloc S. 82 (t:820, hp:820, ad:656, st:0)
+Massif: alloc S. 83 (t:830, hp:830, ad:664, st:0)
+Massif: alloc S. 84 (t:840, hp:840, ad:672, st:0)
+Massif: alloc S. 85 (t:850, hp:850, ad:680, st:0)
+Massif: alloc S. 86 (t:860, hp:860, ad:688, st:0)
+Massif: alloc S. 87 (t:870, hp:870, ad:696, st:0)
+Massif: alloc S. 88 (t:880, hp:880, ad:704, st:0)
+Massif: alloc Sd 89 (t:890, hp:890, ad:712, st:0)
+Massif: alloc S. 90 (t:900, hp:900, ad:720, st:0)
+Massif: alloc S. 91 (t:910, hp:910, ad:728, st:0)
+Massif: alloc S. 92 (t:920, hp:920, ad:736, st:0)
+Massif: alloc S. 93 (t:930, hp:930, ad:744, st:0)
+Massif: alloc S. 94 (t:940, hp:940, ad:752, st:0)
+Massif: alloc S. 95 (t:950, hp:950, ad:760, st:0)
+Massif: alloc S. 96 (t:960, hp:960, ad:768, st:0)
+Massif: alloc S. 97 (t:970, hp:970, ad:776, st:0)
+Massif: alloc S. 98 (t:980, hp:980, ad:784, st:0)
+Massif: alloc Sd 99 (t:990, hp:990, ad:792, st:0)
Massif: Culling...
-Massif: cull 0 (t-span = 20) snapshot 1 (t = 10 B)
-Massif: cull 1 (t-span = 20) snapshot 3 (t = 30 B)
-Massif: cull 2 (t-span = 20) snapshot 5 (t = 50 B)
-Massif: cull 3 (t-span = 20) snapshot 7 (t = 70 B)
-Massif: cull 4 (t-span = 20) snapshot 9 (t = 90 B) (detailed)
-Massif: cull 5 (t-span = 20) snapshot 11 (t = 110 B)
-Massif: cull 6 (t-span = 20) snapshot 13 (t = 130 B)
-Massif: cull 7 (t-span = 20) snapshot 15 (t = 150 B)
-Massif: cull 8 (t-span = 20) snapshot 17 (t = 170 B)
-Massif: cull 9 (t-span = 20) snapshot 19 (t = 190 B) (detailed)
-Massif: cull 10 (t-span = 20) snapshot 21 (t = 210 B)
-Massif: cull 11 (t-span = 20) snapshot 23 (t = 230 B)
-Massif: cull 12 (t-span = 20) snapshot 25 (t = 250 B)
-Massif: cull 13 (t-span = 20) snapshot 27 (t = 270 B)
-Massif: cull 14 (t-span = 20) snapshot 29 (t = 290 B) (detailed)
-Massif: cull 15 (t-span = 20) snapshot 31 (t = 310 B)
-Massif: cull 16 (t-span = 20) snapshot 33 (t = 330 B)
-Massif: cull 17 (t-span = 20) snapshot 35 (t = 350 B)
-Massif: cull 18 (t-span = 20) snapshot 37 (t = 370 B)
-Massif: cull 19 (t-span = 20) snapshot 39 (t = 390 B) (detailed)
-Massif: cull 20 (t-span = 20) snapshot 41 (t = 410 B)
-Massif: cull 21 (t-span = 20) snapshot 43 (t = 430 B)
-Massif: cull 22 (t-span = 20) snapshot 45 (t = 450 B)
-Massif: cull 23 (t-span = 20) snapshot 47 (t = 470 B)
-Massif: cull 24 (t-span = 20) snapshot 49 (t = 490 B) (detailed)
-Massif: cull 25 (t-span = 20) snapshot 51 (t = 510 B)
-Massif: cull 26 (t-span = 20) snapshot 53 (t = 530 B)
-Massif: cull 27 (t-span = 20) snapshot 55 (t = 550 B)
-Massif: cull 28 (t-span = 20) snapshot 57 (t = 570 B)
-Massif: cull 29 (t-span = 20) snapshot 59 (t = 590 B) (detailed)
-Massif: cull 30 (t-span = 20) snapshot 61 (t = 610 B)
-Massif: cull 31 (t-span = 20) snapshot 63 (t = 630 B)
-Massif: cull 32 (t-span = 20) snapshot 65 (t = 650 B)
-Massif: cull 33 (t-span = 20) snapshot 67 (t = 670 B)
-Massif: cull 34 (t-span = 20) snapshot 69 (t = 690 B) (detailed)
-Massif: cull 35 (t-span = 20) snapshot 71 (t = 710 B)
-Massif: cull 36 (t-span = 20) snapshot 73 (t = 730 B)
-Massif: cull 37 (t-span = 20) snapshot 75 (t = 750 B)
-Massif: cull 38 (t-span = 20) snapshot 77 (t = 770 B)
-Massif: cull 39 (t-span = 20) snapshot 79 (t = 790 B) (detailed)
-Massif: cull 40 (t-span = 20) snapshot 81 (t = 810 B)
-Massif: cull 41 (t-span = 20) snapshot 83 (t = 830 B)
-Massif: cull 42 (t-span = 20) snapshot 85 (t = 850 B)
-Massif: cull 43 (t-span = 20) snapshot 87 (t = 870 B)
-Massif: cull 44 (t-span = 20) snapshot 89 (t = 890 B) (detailed)
-Massif: cull 45 (t-span = 20) snapshot 91 (t = 910 B)
-Massif: cull 46 (t-span = 20) snapshot 93 (t = 930 B)
-Massif: cull 47 (t-span = 20) snapshot 95 (t = 950 B)
-Massif: cull 48 (t-span = 20) snapshot 97 (t = 970 B)
-Massif: cull 49 (t-span = 30) snapshot 98 (t = 980 B)
+Massif: 0 (t-span = 20) S. 1 (t:10, hp:10, ad:8, st:0)
+Massif: 1 (t-span = 20) S. 3 (t:30, hp:30, ad:24, st:0)
+Massif: 2 (t-span = 20) S. 5 (t:50, hp:50, ad:40, st:0)
+Massif: 3 (t-span = 20) S. 7 (t:70, hp:70, ad:56, st:0)
+Massif: 4 (t-span = 20) Sd 9 (t:90, hp:90, ad:72, st:0)
+Massif: 5 (t-span = 20) S. 11 (t:110, hp:110, ad:88, st:0)
+Massif: 6 (t-span = 20) S. 13 (t:130, hp:130, ad:104, st:0)
+Massif: 7 (t-span = 20) S. 15 (t:150, hp:150, ad:120, st:0)
+Massif: 8 (t-span = 20) S. 17 (t:170, hp:170, ad:136, st:0)
+Massif: 9 (t-span = 20) Sd 19 (t:190, hp:190, ad:152, st:0)
+Massif: 10 (t-span = 20) S. 21 (t:210, hp:210, ad:168, st:0)
+Massif: 11 (t-span = 20) S. 23 (t:230, hp:230, ad:184, st:0)
+Massif: 12 (t-span = 20) S. 25 (t:250, hp:250, ad:200, st:0)
+Massif: 13 (t-span = 20) S. 27 (t:270, hp:270, ad:216, st:0)
+Massif: 14 (t-span = 20) Sd 29 (t:290, hp:290, ad:232, st:0)
+Massif: 15 (t-span = 20) S. 31 (t:310, hp:310, ad:248, st:0)
+Massif: 16 (t-span = 20) S. 33 (t:330, hp:330, ad:264, st:0)
+Massif: 17 (t-span = 20) S. 35 (t:350, hp:350, ad:280, st:0)
+Massif: 18 (t-span = 20) S. 37 (t:370, hp:370, ad:296, st:0)
+Massif: 19 (t-span = 20) Sd 39 (t:390, hp:390, ad:312, st:0)
+Massif: 20 (t-span = 20) S. 41 (t:410, hp:410, ad:328, st:0)
+Massif: 21 (t-span = 20) S. 43 (t:430, hp:430, ad:344, st:0)
+Massif: 22 (t-span = 20) S. 45 (t:450, hp:450, ad:360, st:0)
+Massif: 23 (t-span = 20) S. 47 (t:470, hp:470, ad:376, st:0)
+Massif: 24 (t-span = 20) Sd 49 (t:490, hp:490, ad:392, st:0)
+Massif: 25 (t-span = 20) S. 51 (t:510, hp:510, ad:408, st:0)
+Massif: 26 (t-span = 20) S. 53 (t:530, hp:530, ad:424, st:0)
+Massif: 27 (t-span = 20) S. 55 (t:550, hp:550, ad:440, st:0)
+Massif: 28 (t-span = 20) S. 57 (t:570, hp:570, ad:456, st:0)
+Massif: 29 (t-span = 20) Sd 59 (t:590, hp:590, ad:472, st:0)
+Massif: 30 (t-span = 20) S. 61 (t:610, hp:610, ad:488, st:0)
+Massif: 31 (t-span = 20) S. 63 (t:630, hp:630, ad:504, st:0)
+Massif: 32 (t-span = 20) S. 65 (t:650, hp:650, ad:520, st:0)
+Massif: 33 (t-span = 20) S. 67 (t:670, hp:670, ad:536, st:0)
+Massif: 34 (t-span = 20) Sd 69 (t:690, hp:690, ad:552, st:0)
+Massif: 35 (t-span = 20) S. 71 (t:710, hp:710, ad:568, st:0)
+Massif: 36 (t-span = 20) S. 73 (t:730, hp:730, ad:584, st:0)
+Massif: 37 (t-span = 20) S. 75 (t:750, hp:750, ad:600, st:0)
+Massif: 38 (t-span = 20) S. 77 (t:770, hp:770, ad:616, st:0)
+Massif: 39 (t-span = 20) Sd 79 (t:790, hp:790, ad:632, st:0)
+Massif: 40 (t-span = 20) S. 81 (t:810, hp:810, ad:648, st:0)
+Massif: 41 (t-span = 20) S. 83 (t:830, hp:830, ad:664, st:0)
+Massif: 42 (t-span = 20) S. 85 (t:850, hp:850, ad:680, st:0)
+Massif: 43 (t-span = 20) S. 87 (t:870, hp:870, ad:696, st:0)
+Massif: 44 (t-span = 20) Sd 89 (t:890, hp:890, ad:712, st:0)
+Massif: 45 (t-span = 20) S. 91 (t:910, hp:910, ad:728, st:0)
+Massif: 46 (t-span = 20) S. 93 (t:930, hp:930, ad:744, st:0)
+Massif: 47 (t-span = 20) S. 95 (t:950, hp:950, ad:760, st:0)
+Massif: 48 (t-span = 20) S. 97 (t:970, hp:970, ad:776, st:0)
+Massif: 49 (t-span = 30) S. 98 (t:980, hp:980, ad:784, st:0)
Massif: Finished culling ( 50 of 100 deleted)
-Massif: post-cull snapshot 0 (t = 0 B)
-Massif: post-cull snapshot 1 (t = 20 B)
-Massif: post-cull snapshot 2 (t = 40 B)
-Massif: post-cull snapshot 3 (t = 60 B)
-Massif: post-cull snapshot 4 (t = 80 B)
-Massif: post-cull snapshot 5 (t = 100 B)
-Massif: post-cull snapshot 6 (t = 120 B)
-Massif: post-cull snapshot 7 (t = 140 B)
-Massif: post-cull snapshot 8 (t = 160 B)
-Massif: post-cull snapshot 9 (t = 180 B)
-Massif: post-cull snapshot 10 (t = 200 B)
-Massif: post-cull snapshot 11 (t = 220 B)
-Massif: post-cull snapshot 12 (t = 240 B)
-Massif: post-cull snapshot 13 (t = 260 B)
-Massif: post-cull snapshot 14 (t = 280 B)
-Massif: post-cull snapshot 15 (t = 300 B)
-Massif: post-cull snapshot 16 (t = 320 B)
-Massif: post-cull snapshot 17 (t = 340 B)
-Massif: post-cull snapshot 18 (t = 360 B)
-Massif: post-cull snapshot 19 (t = 380 B)
-Massif: post-cull snapshot 20 (t = 400 B)
-Massif: post-cull snapshot 21 (t = 420 B)
-Massif: post-cull snapshot 22 (t = 440 B)
-Massif: post-cull snapshot 23 (t = 460 B)
-Massif: post-cull snapshot 24 (t = 480 B)
-Massif: post-cull snapshot 25 (t = 500 B)
-Massif: post-cull snapshot 26 (t = 520 B)
-Massif: post-cull snapshot 27 (t = 540 B)
-Massif: post-cull snapshot 28 (t = 560 B)
-Massif: post-cull snapshot 29 (t = 580 B)
-Massif: post-cull snapshot 30 (t = 600 B)
-Massif: post-cull snapshot 31 (t = 620 B)
-Massif: post-cull snapshot 32 (t = 640 B)
-Massif: post-cull snapshot 33 (t = 660 B)
-Massif: post-cull snapshot 34 (t = 680 B)
-Massif: post-cull snapshot 35 (t = 700 B)
-Massif: post-cull snapshot 36 (t = 720 B)
-Massif: post-cull snapshot 37 (t = 740 B)
-Massif: post-cull snapshot 38 (t = 760 B)
-Massif: post-cull snapshot 39 (t = 780 B)
-Massif: post-cull snapshot 40 (t = 800 B)
-Massif: post-cull snapshot 41 (t = 820 B)
-Massif: post-cull snapshot 42 (t = 840 B)
-Massif: post-cull snapshot 43 (t = 860 B)
-Massif: post-cull snapshot 44 (t = 880 B)
-Massif: post-cull snapshot 45 (t = 900 B)
-Massif: post-cull snapshot 46 (t = 920 B)
-Massif: post-cull snapshot 47 (t = 940 B)
-Massif: post-cull snapshot 48 (t = 960 B)
-Massif: post-cull snapshot 49 (t = 990 B) (detailed)
+Massif: post-cull S. 0 (t:0, hp:0, ad:0, st:0)
+Massif: post-cull S. 1 (t:20, hp:20, ad:16, st:0)
+Massif: post-cull S. 2 (t:40, hp:40, ad:32, st:0)
+Massif: post-cull S. 3 (t:60, hp:60, ad:48, st:0)
+Massif: post-cull S. 4 (t:80, hp:80, ad:64, st:0)
+Massif: post-cull S. 5 (t:100, hp:100, ad:80, st:0)
+Massif: post-cull S. 6 (t:120, hp:120, ad:96, st:0)
+Massif: post-cull S. 7 (t:140, hp:140, ad:112, st:0)
+Massif: post-cull S. 8 (t:160, hp:160, ad:128, st:0)
+Massif: post-cull S. 9 (t:180, hp:180, ad:144, st:0)
+Massif: post-cull S. 10 (t:200, hp:200, ad:160, st:0)
+Massif: post-cull S. 11 (t:220, hp:220, ad:176, st:0)
+Massif: post-cull S. 12 (t:240, hp:240, ad:192, st:0)
+Massif: post-cull S. 13 (t:260, hp:260, ad:208, st:0)
+Massif: post-cull S. 14 (t:280, hp:280, ad:224, st:0)
+Massif: post-cull S. 15 (t:300, hp:300, ad:240, st:0)
+Massif: post-cull S. 16 (t:320, hp:320, ad:256, st:0)
+Massif: post-cull S. 17 (t:340, hp:340, ad:272, st:0)
+Massif: post-cull S. 18 (t:360, hp:360, ad:288, st:0)
+Massif: post-cull S. 19 (t:380, hp:380, ad:304, st:0)
+Massif: post-cull S. 20 (t:400, hp:400, ad:320, st:0)
+Massif: post-cull S. 21 (t:420, hp:420, ad:336, st:0)
+Massif: post-cull S. 22 (t:440, hp:440, ad:352, st:0)
+Massif: post-cull S. 23 (t:460, hp:460, ad:368, st:0)
+Massif: post-cull S. 24 (t:480, hp:480, ad:384, st:0)
+Massif: post-cull S. 25 (t:500, hp:500, ad:400, st:0)
+Massif: post-cull S. 26 (t:520, hp:520, ad:416, st:0)
+Massif: post-cull S. 27 (t:540, hp:540, ad:432, st:0)
+Massif: post-cull S. 28 (t:560, hp:560, ad:448, st:0)
+Massif: post-cull S. 29 (t:580, hp:580, ad:464, st:0)
+Massif: post-cull S. 30 (t:600, hp:600, ad:480, st:0)
+Massif: post-cull S. 31 (t:620, hp:620, ad:496, st:0)
+Massif: post-cull S. 32 (t:640, hp:640, ad:512, st:0)
+Massif: post-cull S. 33 (t:660, hp:660, ad:528, st:0)
+Massif: post-cull S. 34 (t:680, hp:680, ad:544, st:0)
+Massif: post-cull S. 35 (t:700, hp:700, ad:560, st:0)
+Massif: post-cull S. 36 (t:720, hp:720, ad:576, st:0)
+Massif: post-cull S. 37 (t:740, hp:740, ad:592, st:0)
+Massif: post-cull S. 38 (t:760, hp:760, ad:608, st:0)
+Massif: post-cull S. 39 (t:780, hp:780, ad:624, st:0)
+Massif: post-cull S. 40 (t:800, hp:800, ad:640, st:0)
+Massif: post-cull S. 41 (t:820, hp:820, ad:656, st:0)
+Massif: post-cull S. 42 (t:840, hp:840, ad:672, st:0)
+Massif: post-cull S. 43 (t:860, hp:860, ad:688, st:0)
+Massif: post-cull S. 44 (t:880, hp:880, ad:704, st:0)
+Massif: post-cull S. 45 (t:900, hp:900, ad:720, st:0)
+Massif: post-cull S. 46 (t:920, hp:920, ad:736, st:0)
+Massif: post-cull S. 47 (t:940, hp:940, ad:752, st:0)
+Massif: post-cull S. 48 (t:960, hp:960, ad:768, st:0)
+Massif: post-cull Sd 49 (t:990, hp:990, ad:792, st:0)
Massif: New time interval = 20 (between snapshots 0 and 1)
-Massif: alloc snapshot 50 (t = 1010 B)
-Massif: alloc snapshot 51 (t = 1030 B)
-Massif: alloc snapshot 52 (t = 1050 B)
-Massif: alloc snapshot 53 (t = 1070 B)
-Massif: alloc snapshot 54 (t = 1090 B)
-Massif: alloc snapshot 55 (t = 1110 B)
-Massif: alloc snapshot 56 (t = 1130 B)
-Massif: alloc snapshot 57 (t = 1150 B)
-Massif: alloc snapshot 58 (t = 1170 B)
-Massif: alloc snapshot 59 (t = 1190 B) (detailed)
-Massif: alloc snapshot 60 (t = 1210 B)
-Massif: alloc snapshot 61 (t = 1230 B)
-Massif: alloc snapshot 62 (t = 1250 B)
-Massif: alloc snapshot 63 (t = 1270 B)
-Massif: alloc snapshot 64 (t = 1290 B)
-Massif: alloc snapshot 65 (t = 1310 B)
-Massif: alloc snapshot 66 (t = 1330 B)
-Massif: alloc snapshot 67 (t = 1350 B)
-Massif: alloc snapshot 68 (t = 1370 B)
-Massif: alloc snapshot 69 (t = 1390 B) (detailed)
-Massif: alloc snapshot 70 (t = 1410 B)
-Massif: alloc snapshot 71 (t = 1430 B)
-Massif: alloc snapshot 72 (t = 1450 B)
-Massif: alloc snapshot 73 (t = 1470 B)
-Massif: alloc snapshot 74 (t = 1490 B)
-Massif: alloc snapshot 75 (t = 1510 B)
-Massif: alloc snapshot 76 (t = 1530 B)
-Massif: alloc snapshot 77 (t = 1550 B)
-Massif: alloc snapshot 78 (t = 1570 B)
-Massif: alloc snapshot 79 (t = 1590 B) (detailed)
-Massif: alloc snapshot 80 (t = 1610 B)
-Massif: alloc snapshot 81 (t = 1630 B)
-Massif: alloc snapshot 82 (t = 1650 B)
-Massif: alloc snapshot 83 (t = 1670 B)
-Massif: alloc snapshot 84 (t = 1690 B)
-Massif: alloc snapshot 85 (t = 1710 B)
-Massif: alloc snapshot 86 (t = 1730 B)
-Massif: alloc snapshot 87 (t = 1750 B)
-Massif: alloc snapshot 88 (t = 1770 B)
-Massif: alloc snapshot 89 (t = 1790 B) (detailed)
-Massif: alloc snapshot 90 (t = 1810 B)
-Massif: alloc snapshot 91 (t = 1830 B)
-Massif: alloc snapshot 92 (t = 1850 B)
-Massif: alloc snapshot 93 (t = 1870 B)
-Massif: alloc snapshot 94 (t = 1890 B)
-Massif: alloc snapshot 95 (t = 1910 B)
-Massif: alloc snapshot 96 (t = 1930 B)
-Massif: alloc snapshot 97 (t = 1950 B)
-Massif: alloc snapshot 98 (t = 1970 B)
-Massif: alloc snapshot 99 (t = 1990 B) (detailed)
+Massif: alloc S. 50 (t:1010, hp:1010, ad:808, st:0)
+Massif: alloc S. 51 (t:1030, hp:1030, ad:824, st:0)
+Massif: alloc S. 52 (t:1050, hp:1050, ad:840, st:0)
+Massif: alloc S. 53 (t:1070, hp:1070, ad:856, st:0)
+Massif: alloc S. 54 (t:1090, hp:1090, ad:872, st:0)
+Massif: alloc S. 55 (t:1110, hp:1110, ad:888, st:0)
+Massif: alloc S. 56 (t:1130, hp:1130, ad:904, st:0)
+Massif: alloc S. 57 (t:1150, hp:1150, ad:920, st:0)
+Massif: alloc S. 58 (t:1170, hp:1170, ad:936, st:0)
+Massif: alloc Sd 59 (t:1190, hp:1190, ad:952, st:0)
+Massif: alloc S. 60 (t:1210, hp:1210, ad:968, st:0)
+Massif: alloc S. 61 (t:1230, hp:1230, ad:984, st:0)
+Massif: alloc S. 62 (t:1250, hp:1250, ad:1000, st:0)
+Massif: alloc S. 63 (t:1270, hp:1270, ad:1016, st:0)
+Massif: alloc S. 64 (t:1290, hp:1290, ad:1032, st:0)
+Massif: alloc S. 65 (t:1310, hp:1310, ad:1048, st:0)
+Massif: alloc S. 66 (t:1330, hp:1330, ad:1064, st:0)
+Massif: alloc S. 67 (t:1350, hp:1350, ad:1080, st:0)
+Massif: alloc S. 68 (t:1370, hp:1370, ad:1096, st:0)
+Massif: alloc Sd 69 (t:1390, hp:1390, ad:1112, st:0)
+Massif: alloc S. 70 (t:1410, hp:1410, ad:1128, st:0)
+Massif: alloc S. 71 (t:1430, hp:1430, ad:1144, st:0)
+Massif: alloc S. 72 (t:1450, hp:1450, ad:1160, st:0)
+Massif: alloc S. 73 (t:1470, hp:1470, ad:1176, st:0)
+Massif: alloc S. 74 (t:1490, hp:1490, ad:1192, st:0)
+Massif: alloc S. 75 (t:1510, hp:1510, ad:1208, st:0)
+Massif: alloc S. 76 (t:1530, hp:1530, ad:1224, st:0)
+Massif: alloc S. 77 (t:1550, hp:1550, ad:1240, st:0)
+Massif: alloc S. 78 (t:1570, hp:1570, ad:1256, st:0)
+Massif: alloc Sd 79 (t:1590, hp:1590, ad:1272, st:0)
+Massif: alloc S. 80 (t:1610, hp:1610, ad:1288, st:0)
+Massif: alloc S. 81 (t:1630, hp:1630, ad:1304, st:0)
+Massif: alloc S. 82 (t:1650, hp:1650, ad:1320, st:0)
+Massif: alloc S. 83 (t:1670, hp:1670, ad:1336, st:0)
+Massif: alloc S. 84 (t:1690, hp:1690, ad:1352, st:0)
+Massif: alloc S. 85 (t:1710, hp:1710, ad:1368, st:0)
+Massif: alloc S. 86 (t:1730, hp:1730, ad:1384, st:0)
+Massif: alloc S. 87 (t:1750, hp:1750, ad:1400, st:0)
+Massif: alloc S. 88 (t:1770, hp:1770, ad:1416, st:0)
+Massif: alloc Sd 89 (t:1790, hp:1790, ad:1432, st:0)
+Massif: alloc S. 90 (t:1810, hp:1810, ad:1448, st:0)
+Massif: alloc S. 91 (t:1830, hp:1830, ad:1464, st:0)
+Massif: alloc S. 92 (t:1850, hp:1850, ad:1480, st:0)
+Massif: alloc S. 93 (t:1870, hp:1870, ad:1496, st:0)
+Massif: alloc S. 94 (t:1890, hp:1890, ad:1512, st:0)
+Massif: alloc S. 95 (t:1910, hp:1910, ad:1528, st:0)
+Massif: alloc S. 96 (t:1930, hp:1930, ad:1544, st:0)
+Massif: alloc S. 97 (t:1950, hp:1950, ad:1560, st:0)
+Massif: alloc S. 98 (t:1970, hp:1970, ad:1576, st:0)
+Massif: alloc Sd 99 (t:1990, hp:1990, ad:1592, st:0)
Massif: Culling...
-Massif: cull 0 (t-span = 40) snapshot 1 (t = 20 B)
-Massif: cull 1 (t-span = 40) snapshot 3 (t = 60 B)
-Massif: cull 2 (t-span = 40) snapshot 5 (t = 100 B)
-Massif: cull 3 (t-span = 40) snapshot 7 (t = 140 B)
-Massif: cull 4 (t-span = 40) snapshot 9 (t = 180 B)
-Massif: cull 5 (t-span = 40) snapshot 11 (t = 220 B)
-Massif: cull 6 (t-span = 40) snapshot 13 (t = 260 B)
-Massif: cull 7 (t-span = 40) snapshot 15 (t = 300 B)
-Massif: cull 8 (t-span = 40) snapshot 17 (t = 340 B)
-Massif: cull 9 (t-span = 40) snapshot 19 (t = 380 B)
-Massif: cull 10 (t-span = 40) snapshot 21 (t = 420 B)
-Massif: cull 11 (t-span = 40) snapshot 23 (t = 460 B)
-Massif: cull 12 (t-span = 40) snapshot 25 (t = 500 B)
-Massif: cull 13 (t-span = 40) snapshot 27 (t = 540 B)
-Massif: cull 14 (t-span = 40) snapshot 29 (t = 580 B)
-Massif: cull 15 (t-span = 40) snapshot 31 (t = 620 B)
-Massif: cull 16 (t-span = 40) snapshot 33 (t = 660 B)
-Massif: cull 17 (t-span = 40) snapshot 35 (t = 700 B)
-Massif: cull 18 (t-span = 40) snapshot 37 (t = 740 B)
-Massif: cull 19 (t-span = 40) snapshot 39 (t = 780 B)
-Massif: cull 20 (t-span = 40) snapshot 41 (t = 820 B)
-Massif: cull 21 (t-span = 40) snapshot 43 (t = 860 B)
-Massif: cull 22 (t-span = 40) snapshot 45 (t = 900 B)
-Massif: cull 23 (t-span = 40) snapshot 47 (t = 940 B)
-Massif: cull 24 (t-span = 40) snapshot 50 (t = 1010 B)
-Massif: cull 25 (t-span = 40) snapshot 52 (t = 1050 B)
-Massif: cull 26 (t-span = 40) snapshot 54 (t = 1090 B)
-Massif: cull 27 (t-span = 40) snapshot 56 (t = 1130 B)
-Massif: cull 28 (t-span = 40) snapshot 58 (t = 1170 B)
-Massif: cull 29 (t-span = 40) snapshot 60 (t = 1210 B)
-Massif: cull 30 (t-span = 40) snapshot 62 (t = 1250 B)
-Massif: cull 31 (t-span = 40) snapshot 64 (t = 1290 B)
-Massif: cull 32 (t-span = 40) snapshot 66 (t = 1330 B)
-Massif: cull 33 (t-span = 40) snapshot 68 (t = 1370 B)
-Massif: cull 34 (t-span = 40) snapshot 70 (t = 1410 B)
-Massif: cull 35 (t-span = 40) snapshot 72 (t = 1450 B)
-Massif: cull 36 (t-span = 40) snapshot 74 (t = 1490 B)
-Massif: cull 37 (t-span = 40) snapshot 76 (t = 1530 B)
-Massif: cull 38 (t-span = 40) snapshot 78 (t = 1570 B)
-Massif: cull 39 (t-span = 40) snapshot 80 (t = 1610 B)
-Massif: cull 40 (t-span = 40) snapshot 82 (t = 1650 B)
-Massif: cull 41 (t-span = 40) snapshot 84 (t = 1690 B)
-Massif: cull 42 (t-span = 40) snapshot 86 (t = 1730 B)
-Massif: cull 43 (t-span = 40) snapshot 88 (t = 1770 B)
-Massif: cull 44 (t-span = 40) snapshot 90 (t = 1810 B)
-Massif: cull 45 (t-span = 40) snapshot 92 (t = 1850 B)
-Massif: cull 46 (t-span = 40) snapshot 94 (t = 1890 B)
-Massif: cull 47 (t-span = 40) snapshot 96 (t = 1930 B)
-Massif: cull 48 (t-span = 40) snapshot 98 (t = 1970 B)
-Massif: cull 49 (t-span = 70) snapshot 48 (t = 960 B)
+Massif: 0 (t-span = 40) S. 1 (t:20, hp:20, ad:16, st:0)
+Massif: 1 (t-span = 40) S. 3 (t:60, hp:60, ad:48, st:0)
+Massif: 2 (t-span = 40) S. 5 (t:100, hp:100, ad:80, st:0)
+Massif: 3 (t-span = 40) S. 7 (t:140, hp:140, ad:112, st:0)
+Massif: 4 (t-span = 40) S. 9 (t:180, hp:180, ad:144, st:0)
+Massif: 5 (t-span = 40) S. 11 (t:220, hp:220, ad:176, st:0)
+Massif: 6 (t-span = 40) S. 13 (t:260, hp:260, ad:208, st:0)
+Massif: 7 (t-span = 40) S. 15 (t:300, hp:300, ad:240, st:0)
+Massif: 8 (t-span = 40) S. 17 (t:340, hp:340, ad:272, st:0)
+Massif: 9 (t-span = 40) S. 19 (t:380, hp:380, ad:304, st:0)
+Massif: 10 (t-span = 40) S. 21 (t:420, hp:420, ad:336, st:0)
+Massif: 11 (t-span = 40) S. 23 (t:460, hp:460, ad:368, st:0)
+Massif: 12 (t-span = 40) S. 25 (t:500, hp:500, ad:400, st:0)
+Massif: 13 (t-span = 40) S. 27 (t:540, hp:540, ad:432, st:0)
+Massif: 14 (t-span = 40) S. 29 (t:580, hp:580, ad:464, st:0)
+Massif: 15 (t-span = 40) S. 31 (t:620, hp:620, ad:496, st:0)
+Massif: 16 (t-span = 40) S. 33 (t:660, hp:660, ad:528, st:0)
+Massif: 17 (t-span = 40) S. 35 (t:700, hp:700, ad:560, st:0)
+Massif: 18 (t-span = 40) S. 37 (t:740, hp:740, ad:592, st:0)
+Massif: 19 (t-span = 40) S. 39 (t:780, hp:780, ad:624, st:0)
+Massif: 20 (t-span = 40) S. 41 (t:820, hp:820, ad:656, st:0)
+Massif: 21 (t-span = 40) S. 43 (t:860, hp:860, ad:688, st:0)
+Massif: 22 (t-span = 40) S. 45 (t:900, hp:900, ad:720, st:0)
+Massif: 23 (t-span = 40) S. 47 (t:940, hp:940, ad:752, st:0)
+Massif: 24 (t-span = 40) S. 50 (t:1010, hp:1010, ad:808, st:0)
+Massif: 25 (t-span = 40) S. 52 (t:1050, hp:1050, ad:840, st:0)
+Massif: 26 (t-span = 40) S. 54 (t:1090, hp:1090, ad:872, st:0)
+Massif: 27 (t-span = 40) S. 56 (t:1130, hp:1130, ad:904, st:0)
+Massif: 28 (t-span = 40) S. 58 (t:1170, hp:1170, ad:936, st:0)
+Massif: 29 (t-span = 40) S. 60 (t:1210, hp:1210, ad:968, st:0)
+Massif: 30 (t-span = 40) S. 62 (t:1250, hp:1250, ad:1000, st:0)
+Massif: 31 (t-span = 40) S. 64 (t:1290, hp:1290, ad:1032, st:0)
+Massif: 32 (t-span = 40) S. 66 (t:1330, hp:1330, ad:1064, st:0)
+Massif: 33 (t-span = 40) S. 68 (t:1370, hp:1370, ad:1096, st:0)
+Massif: 34 (t-span = 40) S. 70 (t:1410, hp:1410, ad:1128, st:0)
+Massif: 35 (t-span = 40) S. 72 (t:1450, hp:1450, ad:1160, st:0)
+Massif: 36 (t-span = 40) S. 74 (t:1490, hp:1490, ad:1192, st:0)
+Massif: 37 (t-span = 40) S. 76 (t:1530, hp:1530, ad:1224, st:0)
+Massif: 38 (t-span = 40) S. 78 (t:1570, hp:1570, ad:1256, st:0)
+Massif: 39 (t-span = 40) S. 80 (t:1610, hp:1610, ad:1288, st:0)
+Massif: 40 (t-span = 40) S. 82 (t:1650, hp:1650, ad:1320, st:0)
+Massif: 41 (t-span = 40) S. 84 (t:1690, hp:1690, ad:1352, st:0)
+Massif: 42 (t-span = 40) S. 86 (t:1730, hp:1730, ad:1384, st:0)
+Massif: 43 (t-span = 40) S. 88 (t:1770, hp:1770, ad:1416, st:0)
+Massif: 44 (t-span = 40) S. 90 (t:1810, hp:1810, ad:1448, st:0)
+Massif: 45 (t-span = 40) S. 92 (t:1850, hp:1850, ad:1480, st:0)
+Massif: 46 (t-span = 40) S. 94 (t:1890, hp:1890, ad:1512, st:0)
+Massif: 47 (t-span = 40) S. 96 (t:1930, hp:1930, ad:1544, st:0)
+Massif: 48 (t-span = 40) S. 98 (t:1970, hp:1970, ad:1576, st:0)
+Massif: 49 (t-span = 70) S. 48 (t:960, hp:960, ad:768, st:0)
Massif: Finished culling ( 50 of 100 deleted)
-Massif: post-cull snapshot 0 (t = 0 B)
-Massif: post-cull snapshot 1 (t = 40 B)
-Massif: post-cull snapshot 2 (t = 80 B)
-Massif: post-cull snapshot 3 (t = 120 B)
-Massif: post-cull snapshot 4 (t = 160 B)
-Massif: post-cull snapshot 5 (t = 200 B)
-Massif: post-cull snapshot 6 (t = 240 B)
-Massif: post-cull snapshot 7 (t = 280 B)
-Massif: post-cull snapshot 8 (t = 320 B)
-Massif: post-cull snapshot 9 (t = 360 B)
-Massif: post-cull snapshot 10 (t = 400 B)
-Massif: post-cull snapshot 11 (t = 440 B)
-Massif: post-cull snapshot 12 (t = 480 B)
-Massif: post-cull snapshot 13 (t = 520 B)
-Massif: post-cull snapshot 14 (t = 560 B)
-Massif: post-cull snapshot 15 (t = 600 B)
-Massif: post-cull snapshot 16 (t = 640 B)
-Massif: post-cull snapshot 17 (t = 680 B)
-Massif: post-cull snapshot 18 (t = 720 B)
-Massif: post-cull snapshot 19 (t = 760 B)
-Massif: post-cull snapshot 20 (t = 800 B)
-Massif: post-cull snapshot 21 (t = 840 B)
-Massif: post-cull snapshot 22 (t = 880 B)
-Massif: post-cull snapshot 23 (t = 920 B)
-Massif: post-cull snapshot 24 (t = 990 B) (detailed)
-Massif: post-cull snapshot 25 (t = 1030 B)
-Massif: post-cull snapshot 26 (t = 1070 B)
-Massif: post-cull snapshot 27 (t = 1110 B)
-Massif: post-cull snapshot 28 (t = 1150 B)
-Massif: post-cull snapshot 29 (t = 1190 B) (detailed)
-Massif: post-cull snapshot 30 (t = 1230 B)
-Massif: post-cull snapshot 31 (t = 1270 B)
-Massif: post-cull snapshot 32 (t = 1310 B)
-Massif: post-cull snapshot 33 (t = 1350 B)
-Massif: post-cull snapshot 34 (t = 1390 B) (detailed)
-Massif: post-cull snapshot 35 (t = 1430 B)
-Massif: post-cull snapshot 36 (t = 1470 B)
-Massif: post-cull snapshot 37 (t = 1510 B)
-Massif: post-cull snapshot 38 (t = 1550 B)
-Massif: post-cull snapshot 39 (t = 1590 B) (detailed)
-Massif: post-cull snapshot 40 (t = 1630 B)
-Massif: post-cull snapshot 41 (t = 1670 B)
-Massif: post-cull snapshot 42 (t = 1710 B)
-Massif: post-cull snapshot 43 (t = 1750 B)
-Massif: post-cull snapshot 44 (t = 1790 B) (detailed)
-Massif: post-cull snapshot 45 (t = 1830 B)
-Massif: post-cull snapshot 46 (t = 1870 B)
-Massif: post-cull snapshot 47 (t = 1910 B)
-Massif: post-cull snapshot 48 (t = 1950 B)
-Massif: post-cull snapshot 49 (t = 1990 B) (detailed)
+Massif: post-cull S. 0 (t:0, hp:0, ad:0, st:0)
+Massif: post-cull S. 1 (t:40, hp:40, ad:32, st:0)
+Massif: post-cull S. 2 (t:80, hp:80, ad:64, st:0)
+Massif: post-cull S. 3 (t:120, hp:120, ad:96, st:0)
+Massif: post-cull S. 4 (t:160, hp:160, ad:128, st:0)
+Massif: post-cull S. 5 (t:200, hp:200, ad:160, st:0)
+Massif: post-cull S. 6 (t:240, hp:240, ad:192, st:0)
+Massif: post-cull S. 7 (t:280, hp:280, ad:224, st:0)
+Massif: post-cull S. 8 (t:320, hp:320, ad:256, st:0)
+Massif: post-cull S. 9 (t:360, hp:360, ad:288, st:0)
+Massif: post-cull S. 10 (t:400, hp:400, ad:320, st:0)
+Massif: post-cull S. 11 (t:440, hp:440, ad:352, st:0)
+Massif: post-cull S. 12 (t:480, hp:480, ad:384, st:0)
+Massif: post-cull S. 13 (t:520, hp:520, ad:416, st:0)
+Massif: post-cull S. 14 (t:560, hp:560, ad:448, st:0)
+Massif: post-cull S. 15 (t:600, hp:600, ad:480, st:0)
+Massif: post-cull S. 16 (t:640, hp:640, ad:512, st:0)
+Massif: post-cull S. 17 (t:680, hp:680, ad:544, st:0)
+Massif: post-cull S. 18 (t:720, hp:720, ad:576, st:0)
+Massif: post-cull S. 19 (t:760, hp:760, ad:608, st:0)
+Massif: post-cull S. 20 (t:800, hp:800, ad:640, st:0)
+Massif: post-cull S. 21 (t:840, hp:840, ad:672, st:0)
+Massif: post-cull S. 22 (t:880, hp:880, ad:704, st:0)
+Massif: post-cull S. 23 (t:920, hp:920, ad:736, st:0)
+Massif: post-cull Sd 24 (t:990, hp:990, ad:792, st:0)
+Massif: post-cull S. 25 (t:1030, hp:1030, ad:824, st:0)
+Massif: post-cull S. 26 (t:1070, hp:1070, ad:856, st:0)
+Massif: post-cull S. 27 (t:1110, hp:1110, ad:888, st:0)
+Massif: post-cull S. 28 (t:1150, hp:1150, ad:920, st:0)
+Massif: post-cull Sd 29 (t:1190, hp:1190, ad:952, st:0)
+Massif: post-cull S. 30 (t:1230, hp:1230, ad:984, st:0)
+Massif: post-cull S. 31 (t:1270, hp:1270, ad:1016, st:0)
+Massif: post-cull S. 32 (t:1310, hp:1310, ad:1048, st:0)
+Massif: post-cull S. 33 (t:1350, hp:1350, ad:1080, st:0)
+Massif: post-cull Sd 34 (t:1390, hp:1390, ad:1112, st:0)
+Massif: post-cull S. 35 (t:1430, hp:1430, ad:1144, st:0)
+Massif: post-cull S. 36 (t:1470, hp:1470, ad:1176, st:0)
+Massif: post-cull S. 37 (t:1510, hp:1510, ad:1208, st:0)
+Massif: post-cull S. 38 (t:1550, hp:1550, ad:1240, st:0)
+Massif: post-cull Sd 39 (t:1590, hp:1590, ad:1272, st:0)
+Massif: post-cull S. 40 (t:1630, hp:1630, ad:1304, st:0)
+Massif: post-cull S. 41 (t:1670, hp:1670, ad:1336, st:0)
+Massif: post-cull S. 42 (t:1710, hp:1710, ad:1368, st:0)
+Massif: post-cull S. 43 (t:1750, hp:1750, ad:1400, st:0)
+Massif: post-cull Sd 44 (t:1790, hp:1790, ad:1432, st:0)
+Massif: post-cull S. 45 (t:1830, hp:1830, ad:1464, st:0)
+Massif: post-cull S. 46 (t:1870, hp:1870, ad:1496, st:0)
+Massif: post-cull S. 47 (t:1910, hp:1910, ad:1528, st:0)
+Massif: post-cull S. 48 (t:1950, hp:1950, ad:1560, st:0)
+Massif: post-cull Sd 49 (t:1990, hp:1990, ad:1592, st:0)
Massif: New time interval = 40 (between snapshots 0 and 1)
Massif: allocs: 200
Massif: zeroallocs: 0 (0%)
Modified: branches/MASSIF2/massif/tests/culling2.stderr.exp
===================================================================
--- branches/MASSIF2/massif/tests/culling2.stderr.exp 2007-09-26 23:01:39 UTC (rev 6918)
+++ branches/MASSIF2/massif/tests/culling2.stderr.exp 2007-09-26 23:28:15 UTC (rev 6919)
@@ -5,514 +5,514 @@
Massif: 4: __builtin_new
Massif: 5: __builtin_vec_new
Massif: 6: malloc
-Massif: startup snapshot 0 (t = 0 B)
-Massif: alloc snapshot 1 (t = 0 B)
-Massif: alloc snapshot 2 (t = 1 B)
-Massif: alloc snapshot 3 (t = 3 B)
-Massif: alloc snapshot 4 (t = 6 B)
-Massif: alloc snapshot 5 (t = 10 B)
-Massif: alloc snapshot 6 (t = 15 B)
-Massif: alloc snapshot 7 (t = 21 B)
-Massif: alloc snapshot 8 (t = 28 B)
-Massif: alloc snapshot 9 (t = 36 B) (detailed)
-Massif: alloc snapshot 10 (t = 45 B)
-Massif: alloc snapshot 11 (t = 55 B)
-Massif: alloc snapshot 12 (t = 66 B)
-Massif: alloc snapshot 13 (t = 78 B)
-Massif: alloc snapshot 14 (t = 91 B)
-Massif: alloc snapshot 15 (t = 105 B)
-Massif: alloc snapshot 16 (t = 120 B)
-Massif: alloc snapshot 17 (t = 136 B)
-Massif: alloc snapshot 18 (t = 153 B)
-Massif: alloc snapshot 19 (t = 171 B) (detailed)
-Massif: alloc snapshot 20 (t = 190 B)
-Massif: alloc snapshot 21 (t = 210 B)
-Massif: alloc snapshot 22 (t = 231 B)
-Massif: alloc snapshot 23 (t = 253 B)
-Massif: alloc snapshot 24 (t = 276 B)
-Massif: alloc snapshot 25 (t = 300 B)
-Massif: alloc snapshot 26 (t = 325 B)
-Massif: alloc snapshot 27 (t = 351 B)
-Massif: alloc snapshot 28 (t = 378 B)
-Massif: alloc snapshot 29 (t = 406 B) (detailed)
-Massif: alloc snapshot 30 (t = 435 B)
-Massif: alloc snapshot 31 (t = 465 B)
-Massif: alloc snapshot 32 (t = 496 B)
-Massif: alloc snapshot 33 (t = 528 B)
-Massif: alloc snapshot 34 (t = 561 B)
-Massif: alloc snapshot 35 (t = 595 B)
-Massif: alloc snapshot 36 (t = 630 B)
-Massif: alloc snapshot 37 (t = 666 B)
-Massif: alloc snapshot 38 (t = 703 B)
-Massif: alloc snapshot 39 (t = 741 B) (detailed)
-Massif: alloc snapshot 40 (t = 780 B)
-Massif: alloc snapshot 41 (t = 820 B)
-Massif: alloc snapshot 42 (t = 861 B)
-Massif: alloc snapshot 43 (t = 903 B)
-Massif: alloc snapshot 44 (t = 946 B)
-Massif: alloc snapshot 45 (t = 990 B)
-Massif: alloc snapshot 46 (t = 1035 B)
-Massif: alloc snapshot 47 (t = 1081 B)
-Massif: alloc snapshot 48 (t = 1128 B)
-Massif: alloc snapshot 49 (t = 1176 B) (detailed)
-Massif: alloc snapshot 50 (t = 1225 B)
-Massif: alloc snapshot 51 (t = 1275 B)
-Massif: alloc snapshot 52 (t = 1326 B)
-Massif: alloc snapshot 53 (t = 1378 B)
-Massif: alloc snapshot 54 (t = 1431 B)
-Massif: alloc snapshot 55 (t = 1485 B)
-Massif: alloc snapshot 56 (t = 1540 B)
-Massif: alloc snapshot 57 (t = 1596 B)
-Massif: alloc snapshot 58 (t = 1653 B)
-Massif: alloc snapshot 59 (t = 1711 B) (detailed)
-Massif: alloc snapshot 60 (t = 1770 B)
-Massif: alloc snapshot 61 (t = 1830 B)
-Massif: alloc snapshot 62 (t = 1891 B)
-Massif: alloc snapshot 63 (t = 1953 B)
-Massif: alloc snapshot 64 (t = 2016 B)
-Massif: alloc snapshot 65 (t = 2080 B)
-Massif: alloc snapshot 66 (t = 2145 B)
-Massif: alloc snapshot 67 (t = 2211 B)
-Massif: alloc snapshot 68 (t = 2278 B)
-Massif: alloc snapshot 69 (t = 2346 B) (detailed)
-Massif: alloc snapshot 70 (t = 2415 B)
-Massif: alloc snapshot 71 (t = 2485 B)
-Massif: alloc snapshot 72 (t = 2556 B)
-Massif: alloc snapshot 73 (t = 2628 B)
-Massif: alloc snapshot 74 (t = 2701 B)
-Massif: alloc snapshot 75 (t = 2775 B)
-Massif: alloc snapshot 76 (t = 2850 B)
-Massif: alloc snapshot 77 (t = 2926 B)
-Massif: alloc snapshot 78 (t = 3003 B)
-Massif: alloc snapshot 79 (t = 3081 B) (detailed)
-Massif: alloc snapshot 80 (t = 3160 B)
-Massif: alloc snapshot 81 (t = 3240 B)
-Massif: alloc snapshot 82 (t = 3321 B)
-Massif: alloc snapshot 83 (t = 3403 B)
-Massif: alloc snapshot 84 (t = 3486 B)
-Massif: alloc snapshot 85 (t = 3570 B)
-Massif: alloc snapshot 86 (t = 3655 B)
-Massif: alloc snapshot 87 (t = 3741 B)
-Massif: alloc snapshot 88 (t = 3828 B)
-Massif: alloc snapshot 89 (t = 3916 B) (detailed)
-Massif: alloc snapshot 90 (t = 4005 B)
-Massif: alloc snapshot 91 (t = 4095 B)
-Massif: alloc snapshot 92 (t = 4186 B)
-Massif: alloc snapshot 93 (t = 4278 B)
-Massif: alloc snapshot 94 (t = 4371 B)
-Massif: alloc snapshot 95 (t = 4465 B)
-Massif: alloc snapshot 96 (t = 4560 B)
-Massif: alloc snapshot 97 (t = 4656 B)
-Massif: alloc snapshot 98 (t = 4753 B)
-Massif: alloc snapshot 99 (t = 4851 B) (detailed)
+Massif: startup S. 0 (t:0, hp:0, ad:0, st:0)
+Massif: alloc S. 1 (t:0, hp:0, ad:8, st:0)
+Massif: alloc S. 2 (t:1, hp:1, ad:16, st:0)
+Massif: alloc S. 3 (t:3, hp:3, ad:24, st:0)
+Massif: alloc S. 4 (t:6, hp:6, ad:32, st:0)
+Massif: alloc S. 5 (t:10, hp:10, ad:40, st:0)
+Massif: alloc S. 6 (t:15, hp:15, ad:48, st:0)
+Massif: alloc S. 7 (t:21, hp:21, ad:56, st:0)
+Massif: alloc S. 8 (t:28, hp:28, ad:64, st:0)
+Massif: alloc Sd 9 (t:36, hp:36, ad:72, st:0)
+Massif: alloc S. 10 (t:45, hp:45, ad:80, st:0)
+Massif: alloc S. 11 (t:55, hp:55, ad:88, st:0)
+Massif: alloc S. 12 (t:66, hp:66, ad:96, st:0)
+Massif: alloc S. 13 (t:78, hp:78, ad:104, st:0)
+Massif: alloc S. 14 (t:91, hp:91, ad:112, st:0)
+Massif: alloc S. 15 (t:105, hp:105, ad:120, st:0)
+Massif: alloc S. 16 (t:120, hp:120, ad:128, st:0)
+Massif: alloc S. 17 (t:136, hp:136, ad:136, st:0)
+Massif: alloc S. 18 (t:153, hp:153, ad:144, st:0)
+Massif: alloc Sd 19 (t:171, hp:171, ad:152, st:0)
+Massif: alloc S. 20 (t:190, hp:190, ad:160, st:0)
+Massif: alloc S. 21 (t:210, hp:210, ad:168, st:0)
+Massif: alloc S. 22 (t:231, hp:231, ad:176, st:0)
+Massif: alloc S. 23 (t:253, hp:253, ad:184, st:0)
+Massif: alloc S. 24 (t:276, hp:276, ad:192, st:0)
+Massif: alloc S. 25 (t:300, hp:300, ad:200, st:0)
+Massif: alloc S. 26 (t:325, hp:325, ad:208, st:0)
+Massif: alloc S. 27 (t:351, hp:351, ad:216, st:0)
+Massif: alloc S. 28 (t:378, hp:378, ad:224, st:0)
+Massif: alloc Sd 29 (t:406, hp:406, ad:232, st:0)
+Massif: alloc S. 30 (t:435, hp:435, ad:240, st:0)
+Massif: alloc S. 31 (t:465, hp:465, ad:248, st:0)
+Massif: alloc S. 32 (t:496, hp:496, ad:256, st:0)
+Massif: alloc S. 33 (t:528, hp:528, ad:264, st:0)
+Massif: alloc S. 34 (t:561, hp:561, ad:272, st:0)
+Massif: alloc S. 35 (t:595, hp:595, ad:280, st:0)
+Massif: alloc S. 36 (t:630, hp:630, ad:288, st:0)
+Massif: alloc S. 37 (t:666, hp:666, ad:296, st:0)
+Massif: alloc S. 38 (t:703, hp:703, ad:304, st:0)
+Massif: alloc Sd 39 (t:741, hp:741, ad:312, st:0)
+Massif: alloc S. 40 (t:780, hp:780, ad:320, st:0)
+Massif: alloc S. 41 (t:820, hp:820, ad:328, st:0)
+Massif: alloc S. 42 (t:861, hp:861, ad:336, st:0)
+Massif: alloc S. 43 (t:903, hp:903, ad:344, st:0)
+Massif: alloc S. 44 (t:946, hp:946, ad:352, st:0)
+Massif: alloc S. 45 (t:990, hp:990, ad:360, st:0)
+Massif: alloc S. 46 (t:1035, hp:1035, ad:368, st:0)
+Massif: alloc S. 47 (t:1081, hp:1081, ad:376, st:0)
+Massif: alloc S. 48 (t:1128, hp:1128, ad:384, st:0)
+Massif: alloc Sd 49 (t:1176, hp:1176, ad:392, st:0)
+Massif: alloc S. 50 (t:1225, hp:1225, ad:400, st:0)
+Massif: alloc S. 51 (t:1275, hp:1275, ad:408, st:0)
+Massif: alloc S. 52 (t:1326, hp:1326, ad:416, st:0)
+Massif: alloc S. 53 (t:1378, hp:1378, ad:424, st:0)
+Massif: alloc S. 54 (t:1431, hp:1431, ad:432, st:0)
+Massif: alloc S. 55 (t:1485, hp:1485, ad:440, st:0)
+Massif: alloc S. 56 (t:1540, hp:1540, ad:448, st:0)
+Massif: alloc S. 57 (t:1596, hp:1596, ad:456, st:0)
+Massif: alloc S. 58 (t:1653, hp:1653, ad:464, st:0)
+Massif: alloc Sd 59 (t:1711, hp:1711, ad:472, st:0)
+Massif: alloc S. 60 (t:1770, hp:1770, ad:480, st:0)
+Massif: alloc S. 61 (t:1830, hp:1830, ad:488, st:0)
+Massif: alloc S. 62 (t:1891, hp:1891, ad:496, st:0)
+Massif: alloc S. 63 (t:1953, hp:1953, ad:504, st:0)
+Massif: alloc S. 64 (t:2016, hp:2016, ad:512, st:0)
+Massif: alloc S. 65 (t:2080, hp:2080, ad:520, st:0)
+Massif: alloc S. 66 (t:2145, hp:2145, ad:528, st:0)
+Massif: alloc S. 67 (t:2211, hp:2211, ad:536, st:0)
+Massif: alloc S. 68 (t:2278, hp:2278, ad:544, st:0)
+Massif: alloc Sd 69 (t:2346, hp:2346, ad:552, st:0)
+Massif: alloc S. 70 (t:2415, hp:2415, ad:560, st:0)
+Massif: alloc S. 71 (t:2485, hp:2485, ad:568, st:0)
+Massif: alloc S. 72 (t:2556, hp:2556, ad:576, st:0)
+Massif: alloc S. 73 (t:2628, hp:2628, ad:584, st:0)
+Massif: alloc S. 74 (t:2701, hp:2701, ad:592, st:0)
+Massif: alloc S. 75 (t:2775, hp:2775, ad:600, st:0)
+Massif: alloc S. 76 (t:2850, hp:2850, ad:608, st:0)
+Massif: alloc S. 77 (t:2926, hp:2926, ad:616, st:0)
+Massif: alloc S. 78 (t:3003, hp:3003, ad:624, st:0)
+Massif: alloc Sd 79 (t:3081, hp:3081, ad:632, st:0)
+Massif: alloc S. 80 (t:3160, hp:3160, ad:640, st:0)
+Massif: alloc S. 81 (t:3240, hp:3240, ad:648, st:0)
+Massif: alloc S. 82 (t:3321, hp:3321, ad:656, st:0)
+Massif: alloc S. 83 (t:3403, hp:3403, ad:664, st:0)
+Massif: alloc S. 84 (t:3486, hp:3486, ad:672, st:0)
+Massif: alloc S. 85 (t:3570, hp:3570, ad:680, st:0)
+Massif: alloc S. 86 (t:3655, hp:3655, ad:688, st:0)
+Massif: alloc S. 87 (t:3741, hp:3741, ad:696, st:0)
+Massif: alloc S. 88 (t:3828, hp:3828, ad:704, st:0)
+Massif: alloc Sd 89 (t:3916, hp:3916, ad:712, st:0)
+Massif: alloc S. 90 (t:4005, hp:4005, ad:720, st:0)
+Massif: alloc S. 91 (t:4095, hp:4095, ad:728, st:0)
+Massif: alloc S. 92 (t:4186, hp:4186, ad:736, st:0)
+Massif: alloc S. 93 (t:4278, hp:4278, ad:744, st:0)
+Massif: alloc S. 94 (t:4371, hp:4371, ad:752, st:0)
+Massif: alloc S. 95 (t:4465, hp:4465, ad:760, st:0)
+Massif: alloc S. 96 (t:4560, hp:4560, ad:768, st:0)
+Massif: alloc S. 97 (t:4656, hp:4656, ad:776, st:0)
+Massif: alloc S. 98 (t:4753, hp:4753, ad:784, st:0)
+Massif: alloc Sd 99 (t:4851, hp:4851, ad:792, st:0)
Massif: Culling...
-Massif: cull 0 (t-span = 1) snapshot 1 (t = 0 B)
-Massif: cull 1 (t-span = 3) snapshot 2 (t = 1 B)
-Massif: cull 2 (t-span = 6) snapshot 3 (t = 3 B)
-Massif: cull 3 (t-span = 9) snapshot 5 (t = 10 B)
-Massif: cull 4 (t-span = 13) snapshot 7 (t = 21 B)
-Massif: cull 5 (t-span = 15) snapshot 4 (t = 6 B)
-Massif: cull 6 (t-span = 17) snapshot 9 (t = 36 B) (detailed)
-Massif: cull 7 (t-span = 21) snapshot 11 (t = 55 B)
-Massif: cull 8 (t-span = 25) snapshot 13 (t = 78 B)
-Massif: cull 9 (t-span = 28) snapshot 6 (t = 15 B)
-Massif: cull 10 (t-span = 29) snapshot 15 (t = 105 B)
-Massif: cull 11 (t-span = 33) snapshot 17 (t = 136 B)
-Massif: cull 12 (t-span = 37) snapshot 19 (t = 171 B) (detailed)
-Massif: cull 13 (t-span = 38) snapshot 10 (t = 45 B)
-Massif: cull 14 (t-span = 41) snapshot 21 (t = 210 B)
-Massif: cull 15 (t-span = 45) snapshot 23 (t = 253 B)
-Massif: cull 16 (t-span = 49) snapshot 25 (t = 300 B)
-Massif: cull 17 (t-span = 53) snapshot 27 (t = 351 B)
-Massif: cull 18 (t-span = 54) snapshot 14 (t = 91 B)
-Massif: cull 19 (t-span = 57) snapshot 29 (t = 406 B) (detailed)
-Massif: cull 20 (t-span = 61) snapshot 31 (t = 465 B)
-Massif: cull 21 (t-span = 65) snapshot 33 (t = 528 B)
-Massif: cull 22 (t-span = 66) snapshot 8 (t = 28 B)
-Massif: cull 23 (t-span = 69) snapshot 35 (t = 595 B)
-Massif: cull 24 (t-span = 70) snapshot 18 (t = 153 B)
-Massif: cull 25 (t-span = 73) snapshot 37 (t = 666 B)
-Massif: cull 26 (t-span = 77) snapshot 39 (t = 741 B) (detailed)
-Massif: cull 27 (t-span = 81) snapshot 41 (t = 820 B)
-Massif: cull 28 (t-span = 85) snapshot 43 (t = 903 B)
-Massif: cull 29 (t-span = 86) snapshot 22 (t = 231 B)
-Massif: cull 30 (t-span = 89) snapshot 45 (t = 990 B)
-Massif: cull 31 (t-span = 93) snapshot 47 (t = 1081 B)
-Massif: cull 32 (t-span = 97) snapshot 49 (t = 1176 B) (detailed)
-Massif: cull 33 (t-span = 101) snapshot 51 (t = 1275 B)
-Massif: cull 34 (t-span = 102) snapshot 26 (t = 325 B)
-Massif: cull 35 (t-span = 105) snapshot 53 (t = 1378 B)
-Massif: cull 36 (t-span = 109) snapshot 55 (t = 1485 B)
-Massif: cull 37 (t-span = 113) snapshot 57 (t = 1596 B)
-Massif: cull 38 (t-span = 117) snapshot 59 (t = 1711 B) (detailed)
-Massif: cull 39 (t-span = 118) snapshot 30 (t = 435 B)
-Massif: cull 40 (t-span = 120) snapshot 12 (t = 66 B)
-Massif: cull 41 (t-span = 121) snapshot 61 (t = 1830 B)
-Massif: cull 42 (t-span = 125) snapshot 63 (t = 1953 B)
-Massif: cull 43 (t-span = 129) snapshot 65 (t = 2080 B)
-Massif: cull 44 (t-span = 133) snapshot 67 (t = 2211 B)
-Massif: cull 45 (t-span = 134) snapshot 34 (t = 561 B)
-Massif: cull 46 (t-span = 137) snapshot 69 (t = 2346 B) (detailed)
-Massif: cull 47 (t-span = 141) snapshot 71 (t = 2485 B)
-Massif: cull 48 (t-span = 145) snapshot 73 (t = 2628 B)
-Massif: cull 49 (t-span = 149) snapshot 75 (t = 2775 B)
+Massif: 0 (t-span = 1) S. 1 (t:0, hp:0, ad:8, st:0)
+Massif: 1 (t-span = 3) S. 2 (t:1, hp:1, ad:16, st:0)
+Massif: 2 (t-span = 6) S. 3 (t:3, hp:3, ad:24, st:0)
+Massif: 3 (t-span = 9) S. 5 (t:10, hp:10, ad:40, st:0)
+Massif: 4 (t-span = 13) S. 7 (t:21, hp:21, ad:56, st:0)
+Massif: 5 (t-span = 15) S. 4 (t:6, hp:6, ad:32, st:0)
+Massif: 6 (t-span = 17) Sd 9 (t:36, hp:36, ad:72, st:0)
+Massif: 7 (t-span = 21) S. 11 (t:55, hp:55, ad:88, st:0)
+Massif: 8 (t-span = 25) S. 13 (t:78, hp:78, ad:104, st:0)
+Massif: 9 (t-span = 28) S. 6 (t:15, hp:15, ad:48, st:0)
+Massif: 10 (t-span = 29) S. 15 (t:105, hp:105, ad:120, st:0)
+Massif: 11 (t-span = 33) S. 17 (t:136, hp:136, ad:136, st:0)
+Massif: 12 (t-span = 37) Sd 19 (t:171, hp:171, ad:152, st:0)
+Massif: 13 (t-span = 38) S. 10 (t:45, hp:45, ad:80, st:0)
+Massif: 14 (t-span = 41) S. 21 (t:210, hp:210, ad:168, st:0)
+Massif: 15 (t-span = 45) S. 23 (t:253, hp:253, ad:184, st:0)
+Massif: 16 (t-span = 49) S. 25 (t:300, hp:300, ad:200, st:0)
+Massif: 17 (t-span = 53) S. 27 (t:351, hp:351, ad:216, st:0)
+Massif: 18 (t-span = 54) S. 14 (t:91, hp:91, ad:112, st:0)
+Massif: 19 (t-span = 57) Sd 29 (t:406, hp:406, ad:232, st:0)
+Massif: 20 (t-span = 61) S. 31 (t:465, hp:465, ad:248, st:0)
+Massif: 21 (t-span = 65) S. 33 (t:528, hp:528, ad:264, st:0)
+Massif: 22 (t-span = 66) S. 8 (t:28, hp:28, ad:64, st:0)
+Massif: 23 (t-span = 69) S. 35 (t:595, hp:595, ad:280, st:0)
+Massif: 24 (t-span = 70) S. 18 (t:153, hp:153, ad:144, st:0)
+Massif: 25 (t-span = 73) S. 37 (t:666, hp:666, ad:296, st:0)
+Massif: 26 (t-span = 77) Sd 39 (t:741, hp:741, ad:312, st:0)
+Massif: 27 (t-span = 81) S. 41 (t:820, hp:820, ad:328, st:0)
+Massif: 28 (t-span = 85) S. 43 (t:903, hp:903, ad:344, st:0)
+Massif: 29 (t-span = 86) S. 22 (t:231, hp:231, ad:176, st:0)
+Massif: 30 (t-span = 89) S. 45 (t:990, hp:990, ad:360, st:0)
+Massif: 31 (t-span = 93) S. 47 (t:1081, hp:1081, ad:376, st:0)
+Massif: 32 (t-span = 97) Sd 49 (t:1176, hp:1176, ad:392, st:0)
+Massif: 33 (t-span = 101) S. 51 (t:1275, hp:1275, ad:408, st:0)
+Massif: 34 (t-span = 102) S. 26 (t:325, hp:325, ad:208, st:0)
+Massif: 35 (t-span = 105) S. 53 (t:1378, hp:1378, ad:424, st:0)
+Massif: 36 (t-span = 109) S. 55 (t:1485, hp:1485, ad:440, st:0)
+Massif: 37 (t-span = 113) S. 57 (t:1596, hp:1596, ad:456, st:0)
+Massif: 38 (t-span = 117) Sd 59 (t:1711, hp:1711, ad:472, st:0)
+Massif: 39 (t-span = 118) S. 30 (t:435, hp:435, ad:240, st:0)
+Massif: 40 (t-span = 120) S. 12 (t:66, hp:66, ad:96, st:0)
+Massif: 41 (t-span = 121) S. 61 (t:1830, hp:1830, ad:488, st:0)
+Massif: 42 (t-span = 125) S. 63 (t:1953, hp:1953, ad:504, st:0)
+Massif: 43 (t-span = 129) S. 65 (t:2080, hp:2080, ad:520, st:0)
+Massif: 44 (t-span = 133) S. 67 (t:2211, hp:2211, ad:536, st:0)
+Massif: 45 (t-span = 134) S. 34 (t:561, hp:561, ad:272, st:0)
+Massif: 46 (t-span = 137) Sd 69 (t:2346, hp:2346, ad:552, st:0)
+Massif: 47 (t-span = 141) S. 71 (t:2485, hp:2485, ad:568, st:0)
+Massif: 48 (t-span = 145) S. 73 (t:2628, hp:2628, ad:584, st:0)
+Massif: 49 (t-span = 149) S. 75 (t:2775, hp:2775, ad:600, st:0)
Massif: Finished culling ( 50 of 100 deleted)
-Massif: post-cull snapshot 0 (t = 0 B)
-Massif: post-cull snapshot 1 (t = 120 B)
-Massif: post-cull snapshot 2 (t = 190 B)
-Massif: post-cull snapshot 3 (t = 276 B)
-Massif: post-cull snapshot 4 (t = 378 B)
-Massif: post-cull snapshot 5 (t = 496 B)
-Massif: post-cull snapshot 6 (t = 630 B)
-Massif: post-cull snapshot 7 (t = 703 B)
-Massif: post-cull snapshot 8 (t = 780 B)
-Massif: post-cull snapshot 9 (t = 861 B)
-Massif: post-cull snapshot 10 (t = 946 B)
-Massif: post-cull snapshot 11 (t = 1035 B)
-Massif: post-cull snapshot 12 (t = 1128 B)
-Massif: post-cull snapshot 13 (t = 1225 B)
-Massif: post-cull snapshot 14 (t = 1326 B)
-Massif: post-cull snapshot 15 (t = 1431 B)
-Massif: post-cull snapshot 16 (t = 1540 B)
-Massif: post-cull snapshot 17 (t = 1653 B)
-Massif: post-cull snapshot 18 (t = 1770 B)
-Massif: post-cull snapshot 19 (t = 1891 B)
-Massif: post-cull snapshot 20 (t = 2016 B)
-Massif: post-cull snapshot 21 (t = 2145 B)
-Massif: post-cull snapshot 22 (t = 2278 B)
-Massif: post-cull snapshot 23 (t = 2415 B)
-Massif: post-cull snapshot 24 (t = 2556 B)
-Massif: post-cull snapshot 25 (t = 2701 B)
-Massif: post-cull snapshot 26 (t = 2850 B)
-Massif: post-cull snapshot 27 (t = 2926 B)
-Massif: post-cull snapshot 28 (t = 3003 B)
-Massif: post-cull snapshot 29 (t = 3081 B) (detailed)
-Massif: post-cull snapshot 30 (t = 3160 B)
-Massif: post-cull snapshot 31 (t = 3240 B)
-Massif: post-cull snapshot 32 (t = 3321 B)
-Massif: post-cull snapshot 33 (t = 3403 B)
-Massif: post-cull snapshot 34 (t = 3486 B)
-Massif: post-cull snapshot 35 (t = 3570 B)
-Massif: post-cull snapshot 36 (t = 3655 B)
-Massif: post-cull snapshot 37 (t = 3741 B)
-Massif: post-cull snapshot 38 (t = 3828 B)
-Massif: post-cull snapshot 39 (t = 3916 B) (detailed)
-Massif: post-cull snapshot 40 (t = 4005 B)
-Massif: post-cull snapshot 41 (t = 4095 B)
-Massif: post-cull snapshot 42 (t = 4186 B)
-Massif: post-cull snapshot 43 (t = 4278 B)
-Massif: post-cull snapshot 44 (t = 4371 B)
-Massif: post-cull snapshot 45 (t = 4465 B)
-Massif: post-cull snapshot 46 (t = 4560 B)
-Massif: post-cull snapshot 47 (t = 4656 B)
-Massif: post-cull snapshot 48 (t = 4753 B)
-Massif: post-cull snapshot 49 (t = 4851 B) (detailed)
+Massif: post-cull S. 0 (t:0, hp:0, ad:0, st:0)
+Massif: post-cull S. 1 (t:120, hp:120, ad:128, st:0)
+Massif: post-cull S. 2 (t:190, hp:190, ad:160, st:0)
+Massif: post-cull S. 3 (t:276, hp:276, ad:192, st:0)
+Massif: post-cull S. 4 (t:378, hp:378, ad:224, st:0)
+Massif: post-cull S. 5 (t:496, hp:496, ad:256, st:0)
+Massif: post-cull S. 6 (t:630, hp:630, ad:288, st:0)
+Massif: post-cull S. 7 (t:703, hp:703, ad:304, st:0)
+Massif: post-cull S. 8 (t:780, hp:780, ad:320, st:0)
+Massif: post-cull S. 9 (t:861, hp:861, ad:336, st:0)
+Massif: post-cull S. 10 (t:946, hp:946, ad:352, st:0)
+Massif: post-cull S. 11 (t:1035, hp:1035, ad:368, st:0)
+Massif: post-cull S. 12 (t:1128, hp:1128, ad:384, st:0)
+Ma...
[truncated message content] |