File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
name = " DynamicHMC"
2
2
uuid = " bbc10e6e-7c05-544b-b16e-64fede858acb"
3
3
authors = [" Tamas K. Papp <tkpapp@gmail.com>" ]
4
- version = " 3.4.5 "
4
+ version = " 3.4.6 "
5
5
6
6
[deps ]
7
7
ArgCheck = " dce04be8-c92d-5529-be00-80e4d2c0e197"
@@ -24,8 +24,8 @@ LogDensityProblems = "1, 2"
24
24
LogExpFunctions = " 0.3"
25
25
MCMCDiagnosticTools = " 0.2"
26
26
ProgressMeter = " 1"
27
- TensorCast = " 0.4"
28
27
SimpleUnPack = " 1"
28
+ TensorCast = " 0.4"
29
29
julia = " 1.6"
30
30
31
31
[extras ]
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Implementation of robust dynamic Hamiltonian Monte Carlo methods in Julia.
8
8
[ ![ Documentation] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://tpapp.github.io/DynamicHMC.jl/stable )
9
9
[ ![ Documentation] ( https://img.shields.io/badge/docs-master-blue.svg )] ( https://tpapp.github.io/DynamicHMC.jl/dev )
10
10
[ ![ DOI] ( https://zenodo.org/badge/93741413.svg )] ( https://zenodo.org/badge/latestdoi/93741413 )
11
+ [ ![ Aqua QA] ( https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg )] ( https://github.com/JuliaTesting/Aqua.jl )
11
12
12
13
## Overview
13
14
Original file line number Diff line number Diff line change 2
2
# #### NUTS tree sampler implementation.
3
3
# ####
4
4
5
- export TreeOptionsNUTS
5
+ export NUTS
6
6
7
7
# ###
8
8
# ### Trajectory and implementation
Original file line number Diff line number Diff line change 1
1
[deps ]
2
+ Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
2
3
ArgCheck = " dce04be8-c92d-5529-be00-80e4d2c0e197"
3
4
DocStringExtensions = " ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
4
5
ForwardDiff = " f6369f11-7733-5829-9624-2563aa707210"
Original file line number Diff line number Diff line change @@ -40,10 +40,17 @@ include("test_logging.jl")
40
40
include (" sample-correctness_tests.jl" )
41
41
42
42
# ###
43
- # ### statis analysis
43
+ # ### static analysis and QA
44
44
# ###
45
45
46
46
# do not test on older Julia versions and nightly
47
47
if VERSION >= v " 1.7" && isempty (VERSION . prerelease)
48
48
include (" jet.jl" )
49
49
end
50
+
51
+ @testset " Aqua" begin
52
+ import Aqua
53
+ Aqua. test_all (DynamicHMC; ambiguities = false )
54
+ # testing separately, cf https://github.com/JuliaTesting/Aqua.jl/issues/77
55
+ Aqua. test_ambiguities (DynamicHMC)
56
+ end
You can’t perform that action at this time.
0 commit comments