Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Add order keyword argument in Chain constructor functions #29

Add order keyword argument in Chain constructor functions

Add order keyword argument in Chain constructor functions #29

Triggered via pull request June 19, 2024 11:05
Status Success
Total duration 9m 9s
Artifacts

Documenter.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
Documenter: ../../../.julia/packages/EinExprs/tnQcn/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.
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
failed to run `@example` block in src/ansatz/chain.md:18-31 ```@example viz fig = Figure() # hide tn_open = rand(MatrixProduct{State,Open}, n=10, χ=4) # hide tn_periodic = rand(MatrixProduct{State,Periodic}, n=10, χ=4) # hide plot!(fig[1,1], tn_open, layout=Spring(iterations=1000, C=0.5, seed=100)) # hide plot!(fig[1,2], tn_periodic, layout=Spring(iterations=1000, C=0.5, seed=100)) # hide Label(fig[1,1, Bottom()], "Open") # hide Label(fig[1,2, Bottom()], "Periodic") # hide fig # hide ``` exception = UndefVarError: `MatrixProduct` not defined Stacktrace: [1] top-level scope @ chain.md:21 [2] eval @ ./boot.jl:385 [inlined] [3] #58 @ ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:754 [inlined] [4] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String) @ Base.Filesystem ./file.jl:112 [5] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})() @ Documenter ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:753 [6] (::IOCapture.var"#5#9"{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/Y5rEA/src/IOCapture.jl:170 [7] with_logstate(f::Function, logstate::Any) @ Base.CoreLogging ./logging.jl:515 [8] with_logger @ ./logging.jl:627 [inlined] [9] capture(f::Documenter.var"#57#59"{Documenter.Page, Module, Expr}; rethrow::Type, color::Bool, passthrough::Bool, capture_buffer::IOBuffer, io_context::Vector{Any}) @ IOCapture ~/.julia/packages/IOCapture/Y5rEA/src/IOCapture.jl:167 [10] runner(::Type{Documenter.Expanders.ExampleBlocks}, node::MarkdownAST.Node{Nothing}, page::Documenter.Page, doc::Documenter.Document) @ Documenter ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:752
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
failed to run `@example` block in src/ansatz/chain.md:38-51 ```@example viz fig = Figure() # hide tn_open = rand(MatrixProduct{Operator,Open}, n=10, χ=4) # hide tn_periodic = rand(MatrixProduct{Operator,Periodic}, n=10, χ=4) # hide plot!(fig[1,1], tn_open, layout=Spring(iterations=1000, C=0.5, seed=100)) # hide plot!(fig[1,2], tn_periodic, layout=Spring(iterations=1000, C=0.5, seed=100)) # hide Label(fig[1,1, Bottom()], "Open") # hide Label(fig[1,2, Bottom()], "Periodic") # hide fig # hide ``` exception = UndefVarError: `MatrixProduct` not defined Stacktrace: [1] top-level scope @ chain.md:41 [2] eval @ ./boot.jl:385 [inlined] [3] #58 @ ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:754 [inlined] [4] cd(f::Documenter.var"#58#60"{Module, Expr}, dir::String) @ Base.Filesystem ./file.jl:112 [5] (::Documenter.var"#57#59"{Documenter.Page, Module, Expr})() @ Documenter ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:753 [6] (::IOCapture.var"#5#9"{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/Y5rEA/src/IOCapture.jl:170 [7] with_logstate(f::Function, logstate::Any) @ Base.CoreLogging ./logging.jl:515 [8] with_logger @ ./logging.jl:627 [inlined] [9] capture(f::Documenter.var"#57#59"{Documenter.Page, Module, Expr}; rethrow::Type, color::Bool, passthrough::Bool, capture_buffer::IOBuffer, io_context::Vector{Any}) @ IOCapture ~/.julia/packages/IOCapture/Y5rEA/src/IOCapture.jl:167 [10] runner(::Type{Documenter.Expanders.ExampleBlocks}, node::MarkdownAST.Node{Nothing}, page::Documenter.Page, doc::Documenter.Document) @ Documenter ~/.julia/packages/Documenter/CJeWX/src/expander_pipeline.jl:752
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
undefined binding 'MatrixProduct' in `@docs` block in src/ansatz/chain.md:55-58 ```@docs MatrixProduct MatrixProduct(::Any) ```
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
undefined binding 'MatrixProduct' in `@docs` block in src/ansatz/chain.md:55-58 ```@docs MatrixProduct MatrixProduct(::Any) ```
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
unable to get the binding for 'Tenet.TensorNetwork(::Quantum)' in `@docs` block in src/quantum.md:3-9 from expression ':(Tenet.TensorNetwork(::Quantum))' in module Main ```@docs Quantum Tenet.TensorNetwork(::Quantum) Base.adjoint(::Quantum) sites nsites ``` exception = UndefVarError: `Tenet` not defined
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
unable to get the binding for 'Tenet.inds(::Quantum; kwargs...)' in `@docs` block in src/quantum.md:13-16 from expression ':(Tenet.inds(::Quantum; kwargs...))' in module Main ```@docs Tenet.inds(::Quantum; kwargs...) Tenet.tensors(::Quantum; kwargs...) ``` exception = UndefVarError: `Tenet` not defined
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
unable to get the binding for 'Tenet.tensors(::Quantum; kwargs...)' in `@docs` block in src/quantum.md:13-16 from expression ':(Tenet.tensors(::Quantum; kwargs...))' in module Main ```@docs Tenet.inds(::Quantum; kwargs...) Tenet.tensors(::Quantum; kwargs...) ``` exception = UndefVarError: `Tenet` not defined
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
undefined binding 'lanes' in `@docs` block in src/quantum.md:20-27 ```@docs inputs outputs lanes ninputs noutputs nlanes ```
Documenter: ../../../.julia/packages/Documenter/CJeWX/src/utilities/utilities.jl#L46
undefined binding 'nlanes' in `@docs` block in src/quantum.md:20-27 ```@docs inputs outputs lanes ninputs noutputs nlanes ```