Skip to content

Commit

Permalink
version 1.9.14
Browse files Browse the repository at this point in the history
  • Loading branch information
kaskr authored and cran-robot committed Jul 4, 2024
1 parent 1090c6f commit e7022b6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Package: TMB
Type: Package
Title: Template Model Builder: A General Random Effect Tool Inspired by
'ADMB'
Version: 1.9.13
Date: 2024-06-28
Version: 1.9.14
Date: 2024-07-03
Authors@R: c(person("Kasper","Kristensen",role=c("aut","cre","cph"),email="kaskr@dtu.dk"),
person("Brad","Bell",role="cph"),
person("Hans","Skaug",role="ctb"),
Expand Down Expand Up @@ -46,6 +46,6 @@ LinkingTo: Matrix, RcppEigen
Suggests: numDeriv, parallel
RoxygenNote: 7.2.3
NeedsCompilation: yes
Packaged: 2024-06-28 12:11:34 UTC; kaskr
Packaged: 2024-07-03 08:04:17 UTC; kaskr
Repository: CRAN
Date/Publication: 2024-06-28 14:10:08 UTC
Date/Publication: 2024-07-03 13:20:01 UTC
6 changes: 3 additions & 3 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
de4940a291f90e942b493658d99f634d *DESCRIPTION
589d5ef09ff69016c76c16d93bfc7d63 *DESCRIPTION
b9d03d6f35333b54381881701b594645 *NAMESPACE
f31f9f5425f17f7f42c7d1b4268fa6fb *NEWS
fa77584ce16155c46c5e69174c2effe8 *NEWS
f1c4a54a9212313eb4ff384ab4b245a8 *R/TMB.R
95ecf54795d9cef881726f2b39afb8bd *R/abi_table.R
0a8a19e6bc5dd48d053735256258e36a *R/benchmark.R
Expand Down Expand Up @@ -274,7 +274,7 @@ d69dcf21744dca401515265eb37300bb *inst/include/cppad/thread_alloc.hpp
6e4cad3bc080c35149c2533771c7b426 *inst/include/distributions_R.hpp
fb91d053ca670d87de3155c2a53149ab *inst/include/dnorm.hpp
7cb6ef0ce67d83de587c5f6b73a1e314 *inst/include/dynamic_data.hpp
ac758074c7f643e2f59c55c771c70b35 *inst/include/expm.hpp
71cecf3c88d0a06ce14bdb1c70d94079 *inst/include/expm.hpp
325cfa2093bb253bc680a62f23b12539 *inst/include/fft.hpp
426b135e048a69cc2486a23b943a406a *inst/include/lgamma.hpp
d41d8cd98f00b204e9800998ecf8427e *inst/include/precompile.hpp
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
------------------------------------------------------------------------
TMB 1.9.14 (2024-07-03)
------------------------------------------------------------------------

o Fix C++20 compiler warning

------------------------------------------------------------------------
TMB 1.9.13 (2024-06-28)
------------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions inst/include/expm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ namespace atomic{
template <>
struct nestedTriangle<0> : Block<double>{
typedef Block<double> Base;
nestedTriangle<0>(){}
nestedTriangle<0>(Base x) : Base(x){}
nestedTriangle<0>(vector<matrix<double> > args) : Block<double>(args[0]) {}
nestedTriangle(){}
nestedTriangle(Base x) : Base(x){}
nestedTriangle(vector<matrix<double> > args) : Block<double>(args[0]) {}
matrix<double> bottomLeftCorner(){
return this->A;
}
Expand Down

0 comments on commit e7022b6

Please sign in to comment.