[
https://issues.apache.org/jira/browse/MATH-1647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gilles Sadowski resolved MATH-1647.
-----------------------------------
Resolution: Fixed
bq. [...] PR [...]
Thanks.
Commit 97191fc73cda17794ac44cf2fcae629695001999 in "master".
> HaltonSequenceGenerator.skipTo() not throwing proper NotPositiveException
> -------------------------------------------------------------------------
>
> Key: MATH-1647
> URL: https://issues.apache.org/jira/browse/MATH-1647
> Project: Commons Math
> Issue Type: Bug
> Affects Versions: 3.6.1
> Reporter: Elia Bertolina
> Priority: Major
> Fix For: 4.0
>
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> HaltonSequenceGenerator.skipTo(int index) does not throw a
> NotPositiveException when the parameter is negative.In the documentation it
> is stated that an NotPositiveException will be thrown if the parameter value
> is less than zero.
> However, in this test case:
> {code:java}
> public class HaltonSequenceGenerator_Test{
> public void test() throws Throwable{
> HaltonSequenceGenerator haltonSequenceGenerator = new
> HaltonSequenceGenerator(1);
> try {
> double[] doubleArray =
> haltonSequenceGenerator.skipTo((-4584));
> org.junit.Assert.fail();
> } catch
> (org.apache.commons.math3.exception.NotPositiveException e){
> //NotPositiveException caught and test successful
> }
> }
> } {code}
> The int parameter is negative and a NotPositiveException should be thrown,
> however the method executes normally, and test case fails.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)