use super::tests::*;
#[test]
fn density_test_1() {
density_inner(1.0, 1.0, 1.0);
}
#[test]
fn density_test_2() {
density_inner(1.7, 1.0, 1.0);
}
#[test]
fn density_test_3() {
density_inner(6.0, 2.0, 2.0);
}
#[test]
fn log_density_test_1() {
log_density_inner(1.0, 1.0, 1.0);
}
#[test]
fn probability_test_1() {
probability_inner(1.0, 1.0, 1.0, false);
}
#[test]
fn probability_test_2() {
probability_inner(-1.0, 1.0, 1.0, false);
}
#[test]
fn probability_test_3() {
probability_inner(3.0, 4.0, 8.0, false);
}
#[test]
fn probability_test_4() {
probability_inner(30.0, 4.0, 8.0, false);
}
#[test]
fn log_probability_test_1() {
log_probability_inner(1.0, 1.0, 1.0, false);
}
#[test]
fn log_probability_test_2() {
log_probability_inner(-1.0, 1.0, 1.0, false);
}
#[test]
fn log_probability_test_3() {
log_probability_inner(3.0, 4.0, 8.0, false);
}
#[test]
fn log_probability_test_4() {
log_probability_inner(30.0, 4.0, 8.0, false);
}
#[test]
fn quantile_test_1() {
quantile_inner(1.0, 1.0, 1.0, false);
}
#[test]
fn quantile_test_2() {
quantile_inner(1.0, 1.0, 1.0, true);
}
#[test]
fn quantile_test_3() {
quantile_inner(0.0, 1.0, 1.0, false);
}
#[test]
fn quantile_test_4() {
quantile_inner(0.0, 1.0, 1.0, true);
}
#[test]
fn quantile_test_5() {
quantile_inner(0.75, 2.0, 3.0, false);
}
#[test]
fn quantile_test_6() {
quantile_inner(0.75, 2.0, 3.0, true);
}
#[test]
fn log_quantile_test_1() {
log_quantile_inner(-1.0, 1.0, 1.0, false);
}
#[test]
fn log_quantile_test_2() {
log_quantile_inner(0.0, 1.0, 1.0, true);
}
#[test]
fn log_quantile_test_3() {
log_quantile_inner(0.0, 1.0, 1.0, false);
}
#[test]
fn log_quantile_test_4() {
log_quantile_inner(-1e25, 10.0, 20.0, false);
}
#[test]
fn log_quantile_test_5() {
log_quantile_inner(-1e25, 10.0, 20.0, true);
}
#[test]
fn random_test_1() {
random_inner(1, 1.0, 1.0);
}