Skip to content

Commit 2d80b3d

Browse files
committed
Fix file names in docstrings
1 parent b8f6c3a commit 2d80b3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/TensorInference.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ end
5353
# # Putting some things in `@setup_workload` instead of `@compile_workload` can reduce the size of the
5454
# # precompile file and potentially make loading faster.
5555
# PrecompileTools.@compile_workload begin
56-
# include("../example/asia/main.jl")
56+
# include("../example/asia-network/main.jl")
5757
# end
5858
# end
5959

src/mar.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ tensor network.
140140
- `rescale`: Specifies whether to rescale the tensors during contraction.
141141
142142
### Example
143-
The following example is taken from [`examples/asia/main.jl`](@ref).
143+
The following example is taken from [`examples/asia-network/main.jl`](@ref).
144144
145145
```jldoctest; setup = :(using TensorInference, Random; Random.seed!(0))
146-
julia> model = read_model_file(pkgdir(TensorInference, "examples", "asia", "asia.uai"));
146+
julia> model = read_model_file(pkgdir(TensorInference, "examples", "asia-network", "model.uai"));
147147
148148
julia> tn = TensorNetworkModel(model; evidence=Dict(1=>0))
149149
TensorNetworkModel{Int64, DynamicNestedEinsum{Int64}, Array{Float64}}

0 commit comments

Comments
 (0)