Functional coverage tree: Difference between revisions

Content added Content deleted
m (→‎{{header|Perl 6}}: oops, stray curlies)
m (→‎{{header|Perl 6}}: simplified regex, relocate input table to end)
Line 1,690: Line 1,690:
=={{header|Perl 6}}==
=={{header|Perl 6}}==
{{trans|Perl}}
{{trans|Perl}}
<lang perl6>for q:to/END/
<lang perl6>sub walktree ($data) {
my (@parts, $cnt);

while ($data ~~ m:nth(++$cnt)/$<head>=[(\s*) \N+\n ] # split off one level as 'head' (or terminal 'leaf')
$<body>=[[$0 \s+ \N+\n]*]/ ) { # next sub-level is 'body' (defined by extra depth of indentation)

my ($head, $body) = ($<head>, $<body>);
$head ~~ /'|' $<weight>=[\S*] \s* '|' $<coverage>=[\S*]/; # save values of weight and coverage (if any) for later

my ($w, $wsum) = (0, 0);
$head ~= .[0],
$w += .[1],
$wsum += .[1] * .[2]
for walktree $body;

my $weight = (~$<weight> or 1).fmt('%-8s');
my $coverage = $w == 0
?? (~$<coverage> or 0).fmt('%-10s')
!! ($wsum/$w) .fmt('%-10.2g');
@parts.push: [$head.subst(/'|' \N+/, "|$weight|$coverage|"), $weight, $coverage ];
}
return @parts;
}

(say .[0] for walktree $_) given

q:to/END/
NAME_HIERARCHY |WEIGHT |COVERAGE |
NAME_HIERARCHY |WEIGHT |COVERAGE |
cleaning | | |
cleaning | | |
Line 1,735: Line 1,761:
cinema | |0.75 |
cinema | |0.75 |
END
END
</lang>
{
say .[0] for walktree($_)
}

sub walktree ($data) {
my (@parts, $cnt);

while ($data ~~ m:nth(++$cnt)/$<head>=[(\s*) \N+\n ] # split off one level as 'head' (or terminal 'leaf')
$<body>=[[$0 \s+ \N+\n]*]/ ) { # next sub-level is 'body' (defined by extra depth of indentation)

my ($head, $body) = ($<head>, $<body>);
$head ~~ /^.*? \| $<weight>=[\S*] \s*\| $<coverage>=[\S*] \s*\|/; # save values of weight and coverage (if any) for later

my ($w, $wsum) = (0, 0);
$head ~= .[0],
$w += .[1],
$wsum += .[1] * .[2]
for walktree( $body );

my $weight = (~$<weight> or 1).fmt('%-8s');
my $coverage = $w == 0
?? (~$<coverage> or 0).fmt('%-10s')
!! ($wsum/$w) .fmt('%-10.2g');
@parts.push: [$head.subst(/\|\N+/, "|$weight|$coverage|"), $weight, $coverage ];
}
return @parts;
}</lang>
{{out}}
{{out}}
<pre style="font-size:70%;">NAME_HIERARCHY |WEIGHT |COVERAGE |
<pre style="font-size:70%;">NAME_HIERARCHY |WEIGHT |COVERAGE |