From 57ad1debfd34a16af0a3827e41f425c945dba07b Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Sat, 12 Sep 2015 18:30:24 +0100 Subject: [PATCH] Update rv_transformation_tests.py --- GPy/testing/rv_transformation_tests.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/GPy/testing/rv_transformation_tests.py b/GPy/testing/rv_transformation_tests.py index 77f904d9..f93eaf6a 100644 --- a/GPy/testing/rv_transformation_tests.py +++ b/GPy/testing/rv_transformation_tests.py @@ -63,7 +63,13 @@ class RVTransformationTestCase(unittest.TestCase): def test_Logexp(self): self._test_trans(GPy.constraints.Logexp()) self._test_trans(GPy.constraints.Exponent()) - + self._test_trans(GPy.constraints.LogexpNeg()) + self._test_trans(GPy.constraints.NegativeLogexp()) + self._test_trans(GPy.constraints.LogexpClipped()) + self._test_trans(GPy.constraints.NegativeExponent()) + self._test_trans(GPy.constraints.LogexpNeg()) + self._test_trans(GPy.constraints.Square()) + self._test_trans(GPy.constraints.Logistic()) if __name__ == '__main__': unittest.main()