Skip to content

Commit 1c0f6be

Browse files
committed
Update comments
1 parent 5cef0e8 commit 1c0f6be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/unit/math/mix/prob/weibull_cdf_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TEST(mathMixScalFun, weibull_cdf) {
1616
using stan::math::log;
1717

1818
Eigen::VectorXd y(3);
19-
y << stan::math::NEGATIVE_INFTY, 1.2, 0.0;
19+
y << stan::math::NEGATIVE_INFTY, 1.2, 0.0; // lb_constrain(y[0], 0.0) = 0.0
2020

2121
Eigen::VectorXd alpha(3);
2222
alpha << 2.0, 3.0, 4.0;

test/unit/math/mix/prob/weibull_lcdf_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TEST(mathMixScalFun, weibull_lcdf) {
1616
using stan::math::log;
1717

1818
Eigen::VectorXd y(3);
19-
y << stan::math::NEGATIVE_INFTY, 1.2, 0.0;
19+
y << stan::math::NEGATIVE_INFTY, 1.2, 0.0; // lb_constrain(y[0], 0.0) = 0.0
2020

2121
Eigen::VectorXd alpha(3);
2222
alpha << 2.0, 3.0, 4.0;

0 commit comments

Comments
 (0)