Js/nc groebner optimization stable #2029
Annotations
2 errors
src/generic/AhoCorasick.jl#L63
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/AhoCorasick.jl:63-83
```jldoctest; setup = :(using AbstractAlgebra)
julia> keywords = [[1, 2, 3, 4], [1, 5, 4], [4, 1, 2], [1, 2]];
julia> aut = Generic.aho_corasick_automaton(keywords);
julia> result = Generic.search(aut, [10, 4, 1, 2, 3, 4])
AhoCorasickMatch(6, 1, [1, 2, 3, 4])
julia> Generic.last_position(result)
6
julia> Generic.keyword_index(result)
1
julia> Generic.keyword(result)
4-element Vector{Int64}:
1
2
3
4
```
Subexpression:
result = Generic.search(aut, [10, 4, 1, 2, 3, 4])
Evaluated output:
AbstractAlgebra.Generic.AhoCorasickMatch(6, 1, [1, 2, 3, 4])
Expected output:
AhoCorasickMatch(6, 1, [1, 2, 3, 4])
diff =
Warning: Diff output requires color.
AhoCorasickMatch(6, AbstractAlgebra.Generic.AhoCorasickMatch(6, 1, [1, 2, 3, 4])
|
|
The logs for this run have expired and are no longer available.
Loading