Refactor select
methods
#173
Annotations
10 warnings
../../../.julia/packages/EinExprs/IUkoD/ext/EinExprsMakieExt.jl#L7
Package GraphMakie not found in current path. It is needed to plot `EinExpr`s with `Makie`.
- Run `import Pkg; Pkg.add("GraphMakie")` or `]add GraphMakie` to install the GraphMakie package, then restart julia.
|
ext/TenetMakieExt.jl#L7
Package GraphMakie not found in current path. It is needed to plot `Tenet`s with `Makie`.
- Run `import Pkg; Pkg.add("GraphMakie")` or `]add GraphMakie` to install the GraphMakie package, then restart julia.
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
failed to run `@example` block in src/transformations.md:67-119
```@example plot
set_theme!(resolution=(800,200)) # hide
fig = Figure() #hide
data = zeros(Float64, 2, 2, 2, 2) #hide
for i in 1:2 #hide
for j in 1:2 #hide
for k in 1:2 #hide
data[i, i, j, k] = k #hide
end #hide
end #hide
end #hide
A = Tensor(data, (:i, :j, :k, :l)) #hide
B = Tensor(rand(2, 2), (:i, :m)) #hide
C = Tensor(rand(2, 2), (:j, :n)) #hide
tn = TensorNetwork([A, B, C]) #hide
reduced = transform(tn, Tenet.DiagonalReduction) #hide
smooth_annotation!( #hide
fig[1, 1]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = -0.21, #hide
offset_y = -0.42, #hide
radius_x = 0.38, #hide
radius_y = 0.8, #hide
num_waves = 6, #hide
fluctuation_amplitude = 0.02, #hide
phase_shift = 0.0) #hide
plot!(fig[1, 1], tn, layout=Spring(iterations=1000, C=0.5, seed=100); node_color=[red, orange, orange]) #hide
smooth_annotation!( #hide
fig[1, 2]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = 0.1, #hide
offset_y = -0.35, #hide
radius_x = 0.38, #hide
radius_y = 1.1, #hide
num_waves = 5, #hide
fluctuation_amplitude = 0.02, #hide
phase_shift = 1.9) #hide
plot!(fig[1, 2], reduced, layout=Spring(iterations=1000, C=0.5, seed=100), node_color=[orange, orange, red, :black]) #hide
Label(fig[1, 1, Bottom()], "Original") #hide
Label(fig[1, 2, Bottom()], "Transformed") #hide
fig #hide
```
exception =
PlotMethodError: no plot method for arguments (::TensorNetwork). To support these arguments, define
plot!(::Combined{Any, S} where S<:Tuple{TensorNetwork})
Available methods are:
Stacktrace:
[1] _plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:321
[2] plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:316
[3] plot!(scene::Scene, P::Type{Combined{Any, Tuple{TensorNetwork}}}, attributes::Attributes, input::Tuple{Observable{TensorNetwork}}, args::Observable{Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:398
[4] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork; kw_attributes::@kwargs{})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:310
[5] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork)
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:275
[6] plot!(la::Axis, P::Type{Any}, attributes::Attributes, args::TensorNetwork; kw_attributes::@kwargs{})
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:787
[7] plot!(la::Axis, P::Type{Any}, attributes::Attributes, args::TensorNetwork)
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:775
[8] plot!(P::Type{Any}, ax::Axis, args::TensorNetwork; kw_attributes::@kwargs{layout::NetworkLayout.Spring{2, Float64}, node_color::Vector{ColorTypes.RGB{Float32}}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:804
[9] plot!(P::Type{Any}, gp::GridPosition, args::TensorNetwork; kwargs::@kwargs{layout::NetworkLayout.Spring{2, Float64}, node_color::Vector{ColorTypes.RGB{Float32}}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:112
[10] plot!
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:106 [inlined]
[11] #plot!#15
@ MakieCore ~/.julia/packages/MakieCore/tAY2U/src/recipes.jl:39 [inlined]
[12] top-level scope
@ transformations.md:99
[13] eval
@ ./boot.jl:385 [inlined]
[14] #58
@ ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:754 [inlined]
[15] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String)
@ Base.Filesystem ./file.jl:112
[16] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})()
@ Documenter ~/.julia/packages/D
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
failed to run `@example` block in src/transformations.md:133-177
```@example plot
set_theme!(resolution=(800,200)) # hide
fig = Figure() #hide
A = Tensor(rand(2, 2, 2, 2), (:i, :j, :k, :l)) #hide
B = Tensor(rand(2, 2), (:i, :m)) #hide
C = Tensor(rand(2, 2, 2), (:m, :n, :o)) #hide
E = Tensor(rand(2, 2, 2, 2), (:o, :p, :q, :j)) #hide
tn = TensorNetwork([A, B, C, E]) #hide
reduced = transform(tn, Tenet.RankSimplification) #hide
smooth_annotation!( #hide
fig[1, 1]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = -0.32, #hide
offset_y = -0.5, #hide
radius_x = 0.25, #hide
radius_y = 0.94, #hide
num_waves = 6, #hide
fluctuation_amplitude = 0.01, #hide
phase_shift = 0.0) #hide
plot!(fig[1, 1], tn, layout=Spring(iterations=1000, C=0.5, seed=20); node_color=[orange, red, orange, orange]) #hide
smooth_annotation!( #hide
fig[1, 2]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = 0.12, #hide
offset_y = -0.62, #hide
radius_x = 0.18, #hide
radius_y = 0.46, #hide
num_waves = 5, #hide
fluctuation_amplitude = 0.01, #hide
phase_shift = 0) #hide
plot!(fig[1, 2], reduced, layout=Spring(iterations=1000, C=0.5, seed=1); node_color=[red, orange, orange]) #hide
Label(fig[1, 1, Bottom()], "Original") #hide
Label(fig[1, 2, Bottom()], "Transformed") #hide
fig #hide
```
exception =
Query ':i' not defined for TensorNetwork
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:35
[2] macro expansion
@ ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:114 [inlined]
[3] (::Tenet.var"#28#default_f#65"{Symbol})()
@ Tenet ~/.julia/packages/ValSplit/Qe1Uy/src/ValSplit.jl:185
[4] macro expansion
@ ~/.julia/packages/ValSplit/Qe1Uy/src/ValSplit.jl:0 [inlined]
[5] _valswitch(::Val{(:containing, :any, :all)}, ::Val{2}, ::typeof(select), ::Tenet.var"#28#default_f#65"{Symbol}, ::TensorNetwork, ::Symbol)
@ ValSplit ~/.julia/packages/ValSplit/Qe1Uy/src/ValSplit.jl:137
[6] select(::TensorNetwork, ::Symbol)
@ Tenet ~/.julia/packages/ValSplit/Qe1Uy/src/ValSplit.jl:187
[7] (::Tenet.var"#116#119"{TensorNetwork})(label::Symbol)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:132
[8] _mapreduce(f::Tenet.var"#116#119"{TensorNetwork}, op::typeof(union), ::IndexLinear, A::Vector{Symbol})
@ Base ./reduce.jl:440
[9] _mapreduce_dim(f::Function, op::Function, ::Base._InitialValue, A::Vector{Symbol}, ::Colon)
@ Base ./reducedim.jl:365
[10] mapreduce(f::Function, op::Function, A::Vector{Symbol})
@ Base ./reducedim.jl:357
[11] transform!(tn::TensorNetwork, ::Tenet.RankSimplification)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:132
[12] transform!(tn::TensorNetwork, transformation::Type{Tenet.RankSimplification})
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:28
[13] transform(tn::TensorNetwork, transformations::Type)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:18
[14] top-level scope
@ transformations.md:143
[15] eval
@ ./boot.jl:385 [inlined]
[16] #58
@ ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:754 [inlined]
[17] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String)
@ Base.Filesystem ./file.jl:112
[18] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})()
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:753
[19] (::IOCapture.var"#4#7"{DataType, Documenter.var"#57#59"{Documenter.Page, Module, Expr}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}})()
@ IOCapture ~/.julia/packages/IOCapture/Rzdxd/src/IOCapture.jl:161
[20] with_logstate(f::Function, logstate::Any)
@ Base.CoreLogging ./logging.jl:515
[21] with_logger
@ ./logging.jl:627 [inlined]
[22] capture(f::Documenter.
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
failed to run `@example` block in src/transformations.md:185-231
```@example plot
set_theme!(resolution=(800,200)) # hide
fig = Figure() #hide
data = rand(3, 3, 3) #hide
data[:, 1:2, :] .= 0 #hide
A = Tensor(data, (:i, :j, :k)) #hide
B = Tensor(rand(3, 3), (:j, :l)) #hide
C = Tensor(rand(3, 3), (:l, :m)) #hide
tn = TensorNetwork([A, B, C]) #hide
reduced = transform(tn, Tenet.ColumnReduction) #hide
smooth_annotation!( #hide
fig[1, 1]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = -1.12, #hide
offset_y = -0.22, #hide
radius_x = 0.35, #hide
radius_y = 0.84, #hide
num_waves = 4, #hide
fluctuation_amplitude = 0.02, #hide
phase_shift = 0.0) #hide
plot!(fig[1, 1], tn, layout=Spring(iterations=1000, C=0.5, seed=6); node_color=[red, orange, orange]) #hide
smooth_annotation!( #hide
fig[1, 2]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = -0.64, #hide
offset_y = 1.2, #hide
radius_x = 0.32, #hide
radius_y = 0.78, #hide
num_waves = 5, #hide
fluctuation_amplitude = 0.02, #hide
phase_shift = 0) #hide
Label(fig[1, 1, Bottom()], "Original") #hide
Label(fig[1, 2, Bottom()], "Transformed") #hide
plot!(fig[1, 2], reduced, layout=Spring(iterations=2000, C=40, seed=8); node_color=[red, orange, orange]) #hide
fig #hide
```
exception =
MethodError: no method matching select(::TensorNetwork, ::Tuple{Symbol})
Closest candidates are:
select(::TensorNetwork, !Matched::Val{:containing}, !Matched::Symbol)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:122
select(::TensorNetwork, !Matched::Val{:any}, !Matched::Symbol)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:125
select(::TensorNetwork, !Matched::Val{:all}, !Matched::Symbol)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:129
...
Stacktrace:
[1] pop!(tn::TensorNetwork, i::Tuple{Symbol})
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:209
[2] pop!(tn::TensorNetwork, i::Symbol)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:206
[3] slice!(tn::TensorNetwork, label::Symbol, i::Int64)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/TensorNetwork.jl:324
[4] transform!(tn::TensorNetwork, config::Tenet.ColumnReduction)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:223
[5] transform!(tn::TensorNetwork, transformation::Type{Tenet.ColumnReduction})
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:28
[6] transform(tn::TensorNetwork, transformations::Type)
@ Tenet ~/work/Tenet.jl/Tenet.jl/src/Transformations.jl:18
[7] top-level scope
@ transformations.md:197
[8] eval
@ ./boot.jl:385 [inlined]
[9] #58
@ ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:754 [inlined]
[10] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String)
@ Base.Filesystem ./file.jl:112
[11] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})()
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:753
[12] (::IOCapture.var"#4#7"{DataType, Documenter.var"#57#59"{Documenter.Page, Module, Expr}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}})()
@ IOCapture ~/.julia/packages/IOCapture/Rzdxd/src/IOCapture.jl:161
[13] with_logstate(f::Function, logstate::Any)
@ Base.CoreLogging ./logging.jl:515
[14] with_logger
@ ./logging.jl:627 [inlined]
[15] capture(f::Documenter.var"#57#59"{Documenter.Page, Module, Expr}; rethrow::Type, color::Bool, passthrough::Bool, capture_buffer::IOBuffer)
@ IOCapture ~/.julia/packages/IOCapture/Rzdxd/src/IOCapture.jl:158
[16] runner(::Type{Documenter.Expanders.ExampleBlocks}, node::MarkdownAST.Node{Nothing}, page::Documenter.Page, doc::Documenter.Document)
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipe
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
failed to run `@example` block in src/transformations.md:239-285
```@example plot
set_theme!(resolution=(800,200)) # hide
fig = Figure() #hide
v1 = Tensor([1, 2, 3], (:i,)) #hide
v2 = Tensor([4, 5, 6], (:j,)) #hide
m1 = Tensor(rand(3, 3), (:k, :l)) #hide
t1 = contract(v1, v2) #hide
tensor = contract(t1, m1) #hide
tn = TensorNetwork([tensor, Tensor(rand(3, 3, 3), (:k, :m, :n)), Tensor(rand(3, 3, 3), (:l, :n, :o))]) #hide
reduced = transform(tn, Tenet.SplitSimplification) #hide
smooth_annotation!( #hide
fig[1, 1]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = 0.24, #hide
offset_y = 0.6, #hide
radius_x = 0.32, #hide
radius_y = 0.78, #hide
num_waves = 5, #hide
fluctuation_amplitude = 0.015, #hide
phase_shift = 0.0) #hide
plot!(fig[1, 1], tn, layout=Spring(iterations=10000, C=0.5, seed=12); node_color=[red, orange, orange]) #hide
smooth_annotation!( #hide
fig[1, 2]; #hide
color = bg_blue, #hide
xlims = [-2, 2], #hide
ylims = [-2, 2], #hide
offset_x = -0.2, #hide
offset_y = -0.4, #hide
radius_x = 1.1, #hide
radius_y = 0.75, #hide
num_waves = 3, #hide
fluctuation_amplitude = 0.18, #hide
phase_shift = 0.8) #hide
Label(fig[1, 1, Bottom()], "Original") #hide
Label(fig[1, 2, Bottom()], "Transformed") #hide
plot!(fig[1, 2], reduced, layout=Spring(iterations=10000, C=13, seed=151); node_color=[orange, orange, red, red, red]) #hide
fig #hide
```
exception =
PlotMethodError: no plot method for arguments (::TensorNetwork). To support these arguments, define
plot!(::Combined{Any, S} where S<:Tuple{TensorNetwork})
Available methods are:
Stacktrace:
[1] _plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:321
[2] plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:316
[3] plot!(scene::Scene, P::Type{Combined{Any, Tuple{TensorNetwork}}}, attributes::Attributes, input::Tuple{Observable{TensorNetwork}}, args::Observable{Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:398
[4] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork; kw_attributes::@kwargs{})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:310
[5] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork)
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:275
[6] plot!(la::Axis, P::Type{Any}, attributes::Attributes, args::TensorNetwork; kw_attributes::@kwargs{})
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:787
[7] plot!(la::Axis, P::Type{Any}, attributes::Attributes, args::TensorNetwork)
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:775
[8] plot!(P::Type{Any}, ax::Axis, args::TensorNetwork; kw_attributes::@kwargs{layout::NetworkLayout.Spring{2, Float64}, node_color::Vector{ColorTypes.RGB{Float32}}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/makielayout/blocks/axis.jl:804
[9] plot!(P::Type{Any}, gp::GridPosition, args::TensorNetwork; kwargs::@kwargs{layout::NetworkLayout.Spring{2, Float64}, node_color::Vector{ColorTypes.RGB{Float32}}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:112
[10] plot!
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:106 [inlined]
[11] #plot!#15
@ MakieCore ~/.julia/packages/MakieCore/tAY2U/src/recipes.jl:39 [inlined]
[12] top-level scope
@ transformations.md:265
[13] eval
@ ./boot.jl:385 [inlined]
[14] #58
@ ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:754 [inlined]
[15] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String)
@ Base.Filesystem ./file.jl:112
[16] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})()
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:753
[17] (::I
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
no docs found for 'Makie.plot(::Tenet.TensorNetwork)' in `@docs` block in src/visualization.md:16-18
```@docs
Makie.plot(::Tenet.TensorNetwork)
```
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
failed to run `@example` block in src/visualization.md:20-23
```@example viz
tn = rand(TensorNetwork, 14, 4, seed=0) # hide
plot(tn, labels=true)
```
exception =
PlotMethodError: no plot method for arguments (::TensorNetwork). To support these arguments, define
plot!(::Combined{Any, S} where S<:Tuple{TensorNetwork})
Available methods are:
Stacktrace:
[1] _plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:321
[2] plot!(p::Combined{Any, Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:316
[3] plot!(scene::Scene, P::Type{Combined{Any, Tuple{TensorNetwork}}}, attributes::Attributes, input::Tuple{Observable{TensorNetwork}}, args::Observable{Tuple{TensorNetwork}})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:398
[4] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork; kw_attributes::@kwargs{})
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:310
[5] plot!(scene::Scene, P::Type{Any}, attributes::Attributes, args::TensorNetwork)
@ Makie ~/.julia/packages/Makie/RgxaV/src/interfaces.jl:275
[6] get_axis(fig::Any, P::Any, axis_kw::Dict, plot_attr::Any, plot_args::Any)
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:46
[7] plot(P::Type{Any}, args::TensorNetwork; axis::@NamedTuple{}, figure::@NamedTuple{}, kw_attributes::@kwargs{labels::Bool})
@ Makie ~/.julia/packages/Makie/RgxaV/src/figureplotting.jl:65
[8] plot(args::TensorNetwork; attributes::@kwargs{labels::Bool})
@ MakieCore ~/.julia/packages/MakieCore/tAY2U/src/recipes.jl:35
[9] top-level scope
@ visualization.md:22
[10] eval
@ ./boot.jl:385 [inlined]
[11] #58
@ ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:754 [inlined]
[12] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String)
@ Base.Filesystem ./file.jl:112
[13] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})()
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:753
[14] (::IOCapture.var"#4#7"{DataType, Documenter.var"#57#59"{Documenter.Page, Module, Expr}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}, IOContext{Base.PipeEndpoint}})()
@ IOCapture ~/.julia/packages/IOCapture/Rzdxd/src/IOCapture.jl:161
[15] with_logstate(f::Function, logstate::Any)
@ Base.CoreLogging ./logging.jl:515
[16] with_logger
@ ./logging.jl:627 [inlined]
[17] capture(f::Documenter.var"#57#59"{Documenter.Page, Module, Expr}; rethrow::Type, color::Bool, passthrough::Bool, capture_buffer::IOBuffer)
@ IOCapture ~/.julia/packages/IOCapture/Rzdxd/src/IOCapture.jl:158
[18] runner(::Type{Documenter.Expanders.ExampleBlocks}, node::MarkdownAST.Node{Nothing}, page::Documenter.Page, doc::Documenter.Document)
@ Documenter ~/.julia/packages/Documenter/1HwWe/src/expander_pipeline.jl:752
|
../../../.julia/packages/Documenter/1HwWe/src/utilities/utilities.jl#L46
no doc found for reference '[`Makie.plot`](@ref)' in src/visualization.md.
|
../../../.julia/packages/Documenter/1HwWe/src/deploydocs.jl#L469
removing `stable` and linking `stable` to `v0.5.0`.
|
The logs for this run have expired and are no longer available.
Loading