Skip to content

Commit cc242d6

Browse files
committed
Do not access Rf_rnbeta
1 parent f22f7e2 commit cc242d6

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-12-10 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* inst/include/Rcpp/Rmath.h: Do not access Rf_rnbeta
4+
15
2025-12-06 Dirk Eddelbuettel <edd@debian.org>
26

37
* DESCRIPTION (Version, Date): Roll micro version and date

inst/include/Rcpp/Rmath.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2-
//
1+
32
// Rmath.h: Rcpp R/C++ interface class library -- Wrappers for R's Rmath API
43
//
5-
// Copyright (C) 2012 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2012-2025 Dirk Eddelbuettel and Romain Francois
65
//
76
// This file is part of Rcpp.
87
//
@@ -160,7 +159,7 @@ namespace R {
160159
inline double dnbeta(double x, double a, double b, double ncp, int lg) { return ::Rf_dnbeta(x, a, b, ncp, lg); }
161160
inline double pnbeta(double x, double a, double b, double ncp, int lt, int lg) { return ::Rf_pnbeta(x, a, b, ncp, lt, lg); }
162161
inline double qnbeta(double p, double a, double b, double ncp, int lt, int lg) { return ::Rf_qnbeta(p, a, b, ncp, lt, lg); }
163-
inline double rnbeta(double a, double b, double np) { return ::Rf_rnbeta(a, b, np); }
162+
//inline double rnbeta(double a, double b, double np) { return ::Rf_rnbeta(a, b, np); }
164163

165164
/* Non-central F Distribution */
166165
inline double dnf(double x, double df1, double df2, double ncp, int lg) { return ::Rf_dnf(x, df1, df2, ncp, lg); }

0 commit comments

Comments
 (0)