Skip to content

Js/nc groebner optimization stable #2048

Js/nc groebner optimization stable

Js/nc groebner optimization stable #2048

Triggered via pull request August 25, 2023 18:39
Status Cancelled
Total duration 11m 53s
Artifacts

CI.yml

on: pull_request
Documentation
6m 9s
Documentation
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

16 errors
Documentation: src/generic/PriorityQueue.jl#L269
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:269-284 ```jldoctest julia> a = PriorityQueue("a" => 1, "b" => 2, "c" => 3, "e" => 5) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 4 entries: "a" => 1 "b" => 2 "c" => 3 "e" => 5 julia> push!(a, "d" => 4) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 5 entries: "a" => 1 "b" => 2 "c" => 3 "d" => 4 "e" => 5 ``` Subexpression: a = PriorityQueue("a" => 1, "b" => 2, "c" => 3, "e" => 5) Evaluated output: ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 4 entries: "a" => 1 "b" => 2 "c" => 3 "e" => 5 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 4 entries: "a" => 1 "b" => 2 "c" => 3 "e" => 5ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L269
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:269-284 ```jldoctest julia> a = PriorityQueue("a" => 1, "b" => 2, "c" => 3, "e" => 5) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 4 entries: "a" => 1 "b" => 2 "c" => 3 "e" => 5 julia> push!(a, "d" => 4) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 5 entries: "a" => 1 "b" => 2 "c" => 3 "d" => 4 "e" => 5 ``` Subexpression: push!(a, "d" => 4) Evaluated output: ERROR: UndefVarError: `a` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 5 entries: "a" => 1 "b" => 2 "c" => 3 "d" => 4 "e" => 5 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 5 entries: "a" => 1 "b" => 2 "c" => 3 "d" => 4 "e" => 5ERROR: UndefVarError: `a` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L352
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:352-362 ```jldoctest julia> q = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 julia> delete!(q, "b") PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "c" => 1 "a" => 2 ``` Subexpression: q = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) Evaluated output: ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L352
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:352-362 ```jldoctest julia> q = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 julia> delete!(q, "b") PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "c" => 1 "a" => 2 ``` Subexpression: delete!(q, "b") Evaluated output: ERROR: UndefVarError: `q` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "c" => 1 "a" => 2 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "c" => 1 "a" => 2ERROR: UndefVarError: `q` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L155
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:155-167 ```jldoctest julia> pq = PriorityQueue("a" => 1, "b" => 2, "c" => 3) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "a" => 1 "b" => 2 "c" => 3 julia> haskey(pq, "a") true julia> haskey(pq, "e") false ``` Subexpression: pq = PriorityQueue("a" => 1, "b" => 2, "c" => 3) Evaluated output: ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "a" => 1 "b" => 2 "c" => 3 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "a" => 1 "b" => 2 "c" => 3ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L155
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:155-167 ```jldoctest julia> pq = PriorityQueue("a" => 1, "b" => 2, "c" => 3) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "a" => 1 "b" => 2 "c" => 3 julia> haskey(pq, "a") true julia> haskey(pq, "e") false ``` Subexpression: haskey(pq, "a") Evaluated output: ERROR: UndefVarError: `pq` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: true diff = Warning: Diff output requires color. trueERROR: UndefVarError: `pq` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L155
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:155-167 ```jldoctest julia> pq = PriorityQueue("a" => 1, "b" => 2, "c" => 3) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "a" => 1 "b" => 2 "c" => 3 julia> haskey(pq, "a") true julia> haskey(pq, "e") false ``` Subexpression: haskey(pq, "e") Evaluated output: ERROR: UndefVarError: `pq` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: false diff = Warning: Diff output requires color. falseERROR: UndefVarError: `pq` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L36
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:36-42 ```jldoctest julia> PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 ``` Subexpression: PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) Evaluated output: ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L307
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:307-321 ```jldoctest julia> a = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 julia> popfirst!(a) "c" => 1 julia> a PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "a" => 2 "b" => 3 ``` Subexpression: a = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) Evaluated output: ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 diff = Warning: Diff output requires color. PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3ERROR: UndefVarError: `PriorityQueue` not defined Stacktrace: [1] top-level scope @ none:1
Documentation: src/generic/PriorityQueue.jl#L307
doctest failure in ~/work/AbstractAlgebra.jl/AbstractAlgebra.jl/src/generic/PriorityQueue.jl:307-321 ```jldoctest julia> a = PriorityQueue(Base.Order.Forward, "a" => 2, "b" => 3, "c" => 1) PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 3 entries: "c" => 1 "a" => 2 "b" => 3 julia> popfirst!(a) "c" => 1 julia> a PriorityQueue{String, Int64, Base.Order.ForwardOrdering} with 2 entries: "a" => 2 "b" => 3 ``` Subexpression: popfirst!(a) Evaluated output: ERROR: UndefVarError: `a` not defined Stacktrace: [1] top-level scope @ none:1 Expected output: "c" => 1 diff = Warning: Diff output requires color. "c" => 1ERROR: UndefVarError: `a` not defined Stacktrace: [1] top-level scope @ none:1
test (1.9, windows-latest)
The operation was canceled.
test (~1.10.0-0, ubuntu-latest)
The operation was canceled.
test (nightly, ubuntu-latest)
The operation was canceled.
test (1.6, ubuntu-latest)
The operation was canceled.
test (1.9, macOS-latest)
The operation was canceled.
test (1.9, ubuntu-latest)
The operation was canceled.