Skip to content

Commit d784736

Browse files
committed
Merge commit '5df6fc50b02b07109e21134448d1b7f5b2c38444' into HEAD
2 parents 0161eb6 + 5df6fc5 commit d784736

File tree

46 files changed

+4941
-296
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4941
-296
lines changed

.github/workflows/header_checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: windows-latest
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.x'
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353

5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656

5757
- name: Run header tests
5858
run: |
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464

6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767

6868
- name: Run header tests
6969
run: |

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
]
3737

3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- uses: actions/setup-python@v6
4141
with:
4242
python-version: '3.x'
@@ -71,7 +71,7 @@ jobs:
7171
python runTests.py -j4 ${{ matrix.config.tests }}
7272
7373
- name: Upload gtest_output xml
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
if: failure()
7676
with:
7777
name: gtest_outputs_xml
@@ -87,7 +87,7 @@ jobs:
8787
group: [1, 2, 3, 4, 5]
8888

8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
- uses: actions/setup-python@v6
9292
with:
9393
python-version: '3.x'
@@ -134,7 +134,7 @@ jobs:
134134
python runTests.py -j2 $MixFunProbTestsArray[(${{ matrix.group }} - 1)]
135135
136136
- name: Upload gtest_output xml
137-
uses: actions/upload-artifact@v5
137+
uses: actions/upload-artifact@v6
138138
if: failure()
139139
with:
140140
name: gtest_outputs_xml

stan/math/prim/fun/grad_reg_lower_inc_gamma.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ inline return_type_t<T1, T2> grad_reg_lower_inc_gamma(const T1& a, const T2& z,
133133
+ 60 * value_of_rec(z))) {
134134
T1 tg = tgamma(a);
135135
T1 dig = digamma(a);
136-
return -grad_reg_inc_gamma(a, z, tg, dig, max_steps, precision);
136+
return -grad_reg_inc_gamma(a, z, tg, dig, precision, max_steps);
137137
}
138138

139139
T2 log_z = log(z);

stan/math/prim/prob.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,11 @@
311311
#include <stan/math/prim/prob/weibull_rng.hpp>
312312
#include <stan/math/prim/prob/wiener5_lpdf.hpp>
313313
#include <stan/math/prim/prob/wiener_lpdf.hpp>
314+
#include <stan/math/prim/prob/wiener4_lcdf_unnorm.hpp>
315+
#include <stan/math/prim/prob/wiener4_lccdf_unnorm.hpp>
314316
#include <stan/math/prim/prob/wiener_full_lpdf.hpp>
317+
#include <stan/math/prim/prob/wiener_full_lcdf_unnorm.hpp>
318+
#include <stan/math/prim/prob/wiener_full_lccdf_unnorm.hpp>
315319
#include <stan/math/prim/prob/wishart_cholesky_lpdf.hpp>
316320
#include <stan/math/prim/prob/wishart_cholesky_rng.hpp>
317321
#include <stan/math/prim/prob/wishart_lpdf.hpp>

0 commit comments

Comments
 (0)