From 79d538ba49ebbdf08c11fcddfef259f1899f451c Mon Sep 17 00:00:00 2001 From: apete Date: Thu, 10 Oct 2024 08:07:22 +0200 Subject: [PATCH] Update HypergeometricFunctionTest.java --- .../org/ojalgo/function/special/HypergeometricFunctionTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/java/org/ojalgo/function/special/HypergeometricFunctionTest.java b/src/test/java/org/ojalgo/function/special/HypergeometricFunctionTest.java index a6302d609..465c66ad6 100644 --- a/src/test/java/org/ojalgo/function/special/HypergeometricFunctionTest.java +++ b/src/test/java/org/ojalgo/function/special/HypergeometricFunctionTest.java @@ -25,6 +25,7 @@ import java.util.Random; +import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import org.ojalgo.TestUtils; @@ -89,6 +90,7 @@ public void testSpecialArguments121() { } @Test + @Tag("unstable") public void testSpecialArguments122() { RANDOM.doubles(10).forEach(x -> { TestUtils.assertEquals(ONE / (ONE - x), HypergeometricFunction.hypergeometric(ONE, TWO, TWO, x));