Skip to content

Commit faf0830

Browse files
committed
fix docs
1 parent c201b24 commit faf0830

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ scripts/
1919
test/benchmarks
2020
!.github/**
2121
docs/src/*.ipynb
22+
posts

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ COPY --chown=1000 Project.toml $HOME/CMBLensing/
8888
COPY --chown=1000 docs/Project.toml $HOME/CMBLensing/docs/
8989
RUN mkdir $HOME/CMBLensing/src && touch $HOME/CMBLensing/src/CMBLensing.jl
9090
ENV JULIA_PROJECT=$HOME/CMBLensing/docs
91-
RUN julia -e 'using Pkg; pkg"dev ~/CMBLensing; instantiate; precompile"' \
91+
RUN julia -e 'using Pkg; pkg"dev ~/CMBLensing; instantiate; add ProgressMeter#master; precompile"' \
9292
&& rm -rf $HOME/.julia/conda/3/pkgs
9393
COPY --chown=1000 src $HOME/CMBLensing/src
9494
RUN (test $PRECOMPILE = 0 || julia -e 'using Pkg; pkg"precompile"')

docs/src/03_joint_MAP_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ plot(ds.d, title = "data " .* ["E" "B"]);
111111
Now we compute the maximum of the joint posterior, $\mathcal{P}\big(f, \phi \,\big|\,d\big)$
112112

113113
```julia
114-
@time fbf, ϕbf, tr = MAP_joint(ds, nsteps=30, progress=:verbose, αmax=0.1);
114+
fbf, ϕbf, tr = MAP_joint(ds, nsteps=30, progress=true, αmax=0.1);
115115
```
116116

117117
# Examine results

0 commit comments

Comments
 (0)