Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for var_value<Matrix> for univariate distributions #2304

Merged
merged 33 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
e99e1f8
adds tests for var_value<Matrix> to distributions
SteveBronder Jan 11, 2021
3a92428
fix tests makefile
SteveBronder Jan 11, 2021
e625777
checks value_of() for error handling in distributions
SteveBronder Jan 11, 2021
d0c2d4b
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 11, 2021
5eae85c
Added `value_of` to beta proportion lcdf and lccdf (Issue #2101)
bbbales2 Jan 12, 2021
e7dc4b3
Updated VectorBuilder to work with varmat (Issue #2101)
bbbales2 Jan 12, 2021
259bc73
Fixed `is_vector` check in `VectorBuilder` (Issue #2101)
bbbales2 Jan 12, 2021
cd86fc5
Removed unusual `promote_scalar` from `beta_proportion` (Issue #2101)
bbbales2 Jan 12, 2021
17b6b6d
Merge commit '0e419e94ad682521ed113c1947adc0452af76340' into HEAD
yashikno Jan 12, 2021
1058731
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 12, 2021
c77799b
Removed direction reverse checks (Issue #2101)
bbbales2 Jan 12, 2021
d488d68
Merge branch 'feature/varmat-dist-tests' of github.com:stan-dev/math …
bbbales2 Jan 12, 2021
d02ad05
Worked around bug in bernoulli and fixed expression thing in von mise…
bbbales2 Jan 12, 2021
e7668fc
Merge commit '7085ef69bdb399db7d918240659f56305885a2fd' into HEAD
yashikno Jan 12, 2021
e64bdc3
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 12, 2021
d3da2bc
Update gamma tests to work with new autodiff initializations (Issue #…
bbbales2 Jan 13, 2021
38874d1
Made normal cdf test work with new autodiff initializations (Issue #2…
bbbales2 Jan 13, 2021
2933d92
Merge branch 'feature/varmat-dist-tests' of github.com:stan-dev/math …
bbbales2 Jan 13, 2021
05ed31c
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 13, 2021
85b52bd
Removing extra difficult autodiff initialization (Issue #2101)
bbbales2 Jan 13, 2021
d2eec67
Fixed `scalar_seq_view` `operator[]` for varmat (Issue #2101)
bbbales2 Jan 13, 2021
daff60a
Merge commit 'ce84d1903b479c016b51b9255e05d36f6f3e1741' into HEAD
yashikno Jan 13, 2021
dd3f0f8
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 13, 2021
034d009
Merge remote-tracking branch 'origin/develop' into feature/varmat-dis…
SteveBronder Jan 26, 2021
9482b54
Merge remote-tracking branch 'origin/develop' into feature/varmat-dis…
SteveBronder Jan 31, 2021
0dd58c2
fix division for fvar to cast to double
SteveBronder Jan 31, 2021
4114b9a
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Jan 31, 2021
7c2c8dd
Reverting new test stuff, remove unnecessary value_ofs (Issue #2101)
bbbales2 Feb 1, 2021
86611b7
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
stan-buildbot Feb 1, 2021
ac312e2
Merge remote-tracking branch 'origin/develop' into feature/varmat-dis…
bbbales2 Feb 1, 2021
5dfbb26
Updated skew_double_exponential to support varmat (Issue #2101)
bbbales2 Feb 1, 2021
46e49f8
Merge branch 'feature/varmat-dist-tests' of github.com:stan-dev/math …
bbbales2 Feb 1, 2021
57d4438
Merge remote-tracking branch 'origin/develop' into feature/varmat-dis…
bbbales2 Feb 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
…4.1 (tags/RELEASE_600/final)
  • Loading branch information
stan-buildbot committed Jan 13, 2021
commit 05ed31ce9f615213b14149a82c828625b6858176
4 changes: 2 additions & 2 deletions test/prob/gamma/gamma_ccdf_log_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ class AgradCcdfLogGamma : public AgradCcdfLogTest {
param[2] = 0.9; // beta
parameters.push_back(param);
ccdf_log.push_back(
std::log(1.0 - 0.4199241634320857175)); // expected ccdf_log
std::log(1.0 - 0.4199241634320857175)); // expected ccdf_log

param[0] = 1.2; // y
param[1] = 0.25; // alpha
param[2] = 0.75; // beta
parameters.push_back(param);
ccdf_log.push_back(
std::log(1.0 - 0.9209749374046803938)); // expected ccdf_log
std::log(1.0 - 0.9209749374046803938)); // expected ccdf_log

param[0] = 1.0; // y
param[1] = 1.0; // alpha
Expand Down
4 changes: 2 additions & 2 deletions test/prob/normal/normal_cdf_log_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class AgradCdfLogNormal : public AgradCdfLogTest {
cdf_log.push_back(-0.6931471805599452862268); // expected cdf_log

param[0] = 0.5; // y
param[1] = 0; // mu
param[2] = 1; // sigma
param[1] = 0; // mu
param[2] = 1; // sigma
parameters.push_back(param);
cdf_log.push_back(-0.36894641528865651514); // expected cdf_log

Expand Down