Skip to content

Commit

Permalink
Rel 7.4.3 - Updates for cmdstan-2.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goedman committed Sep 15, 2023
1 parent 46e3460 commit fae3418
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 196 deletions.
2 changes: 1 addition & 1 deletion example/bernoulli.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ProjDir = @__DIR__
bernoulli_model = "
data {
int<lower=1> N;
int<lower=0,upper=1> y[N];
array[N] int<lower=0,upper=1> y;
}
parameters {
real<lower=0,upper=1> theta;
Expand Down
2 changes: 1 addition & 1 deletion example/bernoulli_cpp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ProjDir = @__DIR__
bernoulli_model = "
data {
int<lower=1> N;
int<lower=0,upper=1> y[N];
array[N] int<lower=0,upper=1> y;
}
parameters {
real<lower=0,upper=1> theta;
Expand Down
2 changes: 1 addition & 1 deletion example/keyword_bernoulli.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ProjDir = @__DIR__
bernoulli_model = "
data {
int<lower=1> N;
int<lower=0,upper=1> y[N];
array[N] int<lower=0,upper=1> y;
}
parameters {
real<lower=0,upper=1> theta;
Expand Down
16 changes: 0 additions & 16 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -200,22 +200,6 @@ if haskey(ENV, "CMDSTAN") || haskey(ENV, "JULIA_CMDSTAN_HOME")
println()
end

test_LKJ = [
"test_LKJ/sr2_m14.6.jl",
"test_LKJ/test_LKJ.jl",
]

#=
@testset "Nested DataFrame" begin
for test in test_LKJ
println("\nTesting: $test.")
include(joinpath(TestDir, test))
end
println()
end
=#

println()

else
println("\nCMDSTAN and JULIA_CMDSTAN_HOME not set. Skipping tests")
Expand Down
92 changes: 0 additions & 92 deletions test/test_LKJ/sr2_m14.6.jl

This file was deleted.

85 changes: 0 additions & 85 deletions test/test_LKJ/test_LKJ.jl

This file was deleted.

0 comments on commit fae3418

Please sign in to comment.