Js/nc groebner optimization stable #2029
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
CI.yml
on: pull_request
Documentation
4m 41s
Matrix: test
Annotations
5 errors
Documentation:
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])
|
Documentation
Process completed with exit code 1.
|
test (1.9, ubuntu-latest)
Process completed with exit code 1.
|
test (1.9, macOS-latest)
Process completed with exit code 1.
|
test (1.9, windows-latest)
Process completed with exit code 1.
|