Skip to content

Commit 9184552

Browse files
committed
Rel 9.3.1
1 parent ed5569d commit 9184552

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Examples/Walkthrough/walkthrough2.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ if success(rc6_1s)
6565
end
6666

6767
init = (a = 2.0, b = [1.0, 2.0], sigma = 1.0)
68-
#rc6_2s = stan_sample(m6_1s; data, init);
69-
rc6_2s = stan_sample(m6_1s; data);
68+
rc6_2s = stan_sample(m6_1s; data, init);
69+
#rc6_2s = stan_sample(m6_1s; data);
7070

7171
if success(rc6_2s)
7272

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ uuid = "682df890-35be-576f-97d0-3d8c8b33a550"
33
license = "MIT"
44
desc = "Illustrate StanJulia's interface options to cmdstan"
55
authors = ["Rob J Goedman <[email protected]>"]
6-
version = "9.3.0"
6+
version = "9.3.1"
77

88
[deps]
99
AxisKeys = "94b1ba4f-4ee9-5380-92f1-94cde586c3c5"

src/Stan.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
module Stan
22

3-
using StanSample, StanOptimize, StanDiagnose, StanVariational, StanQuap
3+
using StanBase
4+
using StanSample
5+
using StanOptimize
6+
using StanDiagnose
7+
using StanVariational
8+
using StanQuap
49

510
end # module

0 commit comments

Comments
 (0)