CI #217
CI.yml
on: workflow_dispatch
Documentation
1m 58s
Matrix: test
Annotations
6 errors and 1 warning
Documentation:
src/implicit.jl#L345
doctest failure in ~/work/Tesserae.jl/Tesserae.jl/src/implicit.jl:345-366
```jldoctest
julia> function f(x)
[(x[1]+3)*(x[2]^3-7)+18,
sin(x[2]*exp(x[1])-1)]
end
f (generic function with 1 method)
julia> function ∇f(x)
u = exp(x[1])*cos(x[2]*exp(x[1])-1)
[x[2]^3-7 3*x[2]^2*(x[1]+3)
x[2]*u u]
end
∇f (generic function with 1 method)
julia> x = [0.1, 1.2];
julia> issuccess = Tesserae.newton!(x, f, ∇f)
true
julia> x ≈ [0,1]
true
```
Subexpression:
issuccess = Tesserae.newton!(x, f, ∇f)
Evaluated output:
# ≤ 100 ‖f‖ ≤ 0.0 ‖f‖/‖f₀‖ ≤ 1.49012e-8
----------- ------------------ -----------------------
0 1.68751 1.0
true
Expected output:
true
diff =
Warning: Diff output requires color.
# ≤ 100 ‖f‖ ≤ 0.0 ‖f‖/‖f₀‖ ≤ 1.49012e-8
----------- ------------------ -----------------------
0 1.68751 1.0
true
|
Documentation
Process completed with exit code 1.
|
Julia 1 - ubuntu-latest - x64 - workflow_dispatch
The run was canceled by @KeitaNakamura.
|
Julia 1 - macOS-latest - x64 - workflow_dispatch
The run was canceled by @KeitaNakamura.
|
Julia nightly - ubuntu-latest - x64 - workflow_dispatch
The run was canceled by @KeitaNakamura.
|
Julia 1 - windows-latest - x64 - workflow_dispatch
The run was canceled by @KeitaNakamura.
|
Julia 1 - macOS-latest - x64 - workflow_dispatch
[setup-julia] x64 arch has been requested on a macOS runner that has an arm64 (Apple Silicon) architecture. You may have meant to use the "aarch64" arch instead (or left it unspecified for the correct default).
|