Skip to content

Commit

Permalink
Rel 9.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
goedman committed Feb 25, 2022
1 parent ed5569d commit 9184552
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Examples/Walkthrough/walkthrough2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ if success(rc6_1s)
end

init = (a = 2.0, b = [1.0, 2.0], sigma = 1.0)
#rc6_2s = stan_sample(m6_1s; data, init);
rc6_2s = stan_sample(m6_1s; data);
rc6_2s = stan_sample(m6_1s; data, init);
#rc6_2s = stan_sample(m6_1s; data);

if success(rc6_2s)

Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "682df890-35be-576f-97d0-3d8c8b33a550"
license = "MIT"
desc = "Illustrate StanJulia's interface options to cmdstan"
authors = ["Rob J Goedman <[email protected]>"]
version = "9.3.0"
version = "9.3.1"

[deps]
AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5"
Expand Down
7 changes: 6 additions & 1 deletion src/Stan.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
module Stan

using StanSample, StanOptimize, StanDiagnose, StanVariational, StanQuap
using StanBase
using StanSample
using StanOptimize
using StanDiagnose
using StanVariational
using StanQuap

end # module

0 comments on commit 9184552

Please sign in to comment.