1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
#!perl
# Copyright 2022 Jeffrey Kegler
# This file is part of Marpa::R2. Marpa::R2 is free software: you can
# redistribute it and/or modify it under the terms of the GNU Lesser
# General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Marpa::R2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public License along with Marpa::R2. If not, see
# http://www.gnu.org/licenses/.
# the example grammar in Aycock/Horspool "Practical Earley Parsing",
# _The Computer Journal_, Vol. 45, No. 6, pp. 620-630,
# in its "NNF" form
use 5.010001;
use strict;
use warnings;
use Test::More tests => 26;
use lib 'inc';
use Marpa::R2::Test;
use Marpa::R2;
## no critic (Subroutines::RequireArgUnpacking)
sub default_action {
shift;
my $v_count = scalar @_;
return q{} if $v_count <= 0;
return $_[0] if $v_count == 1;
return '(' . ( join q{;}, @_ ) . ')';
} ## end sub default_action
## use critic
my $dsl = <<'END_OF_DSL';
:default ::= action => main::default_action
:start ::= S
S ::= A A A A
A ::=
A ::= 'a'
END_OF_DSL
my $grammar = Marpa::R2::Scanless::G->new( { source => \$dsl });
my $recce = Marpa::R2::Scanless::R->new( { grammar => $grammar });
my $input_length = 4;
my $input = ('a' x $input_length);
$recce->read( \$input );
my @expected = map {
+{ map { ( $_ => 1 ) } @{$_} }
}
[q{}],
[qw( (a;;;) (;a;;) (;;a;) (;;;a) )],
[qw( (a;a;;) (a;;a;) (a;;;a) (;a;a;) (;a;;a) (;;a;a) )],
[qw( (a;a;a;) (a;a;;a) (a;;a;a) (;a;a;a) )],
['(a;a;a;a)'];
$recce->set( { max_parses => 20 } );
my @ambiguity_expected;
$ambiguity_expected[0] = 'No ambiguity';
$ambiguity_expected[1] = <<'END_OF_AMBIGUITY_DESC';
Length of symbol "A" at line 1, column 1 is ambiguous
Choice 1, length=1, ends at line 1, column 1
Choice 1: a
Choice 2 is zero length
END_OF_AMBIGUITY_DESC
$ambiguity_expected[2] = <<'END_OF_AMBIGUITY_DESC';
Length of symbol "A" at line 1, column 1 is ambiguous
Choice 1 is zero length
Choice 2, length=1, ends at line 1, column 1
Choice 2: a
END_OF_AMBIGUITY_DESC
$ambiguity_expected[3] = <<'END_OF_AMBIGUITY_DESC';
Length of symbol "A" at line 1, column 1 is ambiguous
Choice 1 is zero length
Choice 2, length=1, ends at line 1, column 1
Choice 2: a
Length of symbol "A" at line 1, column 2 is ambiguous
Choice 1, length=1, ends at line 1, column 2
Choice 1: a
Choice 2 is zero length
END_OF_AMBIGUITY_DESC
$ambiguity_expected[4] = 'No ambiguity';
for my $i ( 0 .. $input_length ) {
$recce->series_restart( { end => $i } );
my $expected = $expected[$i];
# Marpa::R2::Display
# name: Scanless ambiguity_metric() synopsis
my $ambiguity_metric = $recce->ambiguity_metric();
# Marpa::R2::Display::End
$ambiguity_metric = 2 if $ambiguity_metric > 2; # cap at 2 -- higher numbers not defined
my $expected_metric = (scalar keys %{$expected} > 1 ? 2 : 1);
Test::More::is($ambiguity_metric, $expected_metric, "Ambiguity check for length $i");
while ( my $value_ref = $recce->value() ) {
my $value = $value_ref ? ${$value_ref} : 'No parse';
if ( defined $expected->{$value} ) {
delete $expected->{$value};
Test::More::pass(qq{Expected result for length=$i, "$value"});
}
else {
Test::More::fail(qq{Unexpected result for length=$i, "$value"});
}
} ## end while ( my $value_ref = $recce->value() )
for my $value ( keys %{$expected} ) {
Test::More::fail(qq{Missing result for length=$i, "$value"});
}
my $ambiguity_desc = 'No ambiguity';
if ($ambiguity_metric > 1) {
$recce->series_restart( { end => $i } );
my $asf = Marpa::R2::ASF->new( { slr => $recce } );
die 'No ASF' if not defined $asf;
my $ambiguities = Marpa::R2::Internal::ASF::ambiguities($asf);
# Only report the first two
my @ambiguities = grep {defined} @{$ambiguities}[ 0 .. 1 ];
$ambiguity_desc =
Marpa::R2::Internal::ASF::ambiguities_show( $asf, \@ambiguities );
}
Marpa::R2::Test::is($ambiguity_desc, $ambiguity_expected[$i], "Ambiguity description for length $i");
} ## end for my $i ( 0 .. $input_length )
1; # In case used as "do" file
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4:
|