[ 
https://issues.apache.org/jira/browse/MATH-1597?focusedWorklogId=618927&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-618927
 ]

ASF GitHub Bot logged work on MATH-1597:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 06/Jul/21 07:28
            Start Date: 06/Jul/21 07:28
    Worklog Time Spent: 10m 
      Work Description: coveralls commented on pull request #190:
URL: https://github.com/apache/commons-math/pull/190#issuecomment-874527665


   
   [![Coverage 
Status](https://coveralls.io/builds/41136546/badge)](https://coveralls.io/builds/41136546)
   
   Coverage increased (+0.009%) to 90.436% when pulling 
**187bd46d986d5222deaa891c0a690a5f93876815 on samyBadjoudj:feature/MATH-1597** 
into **7f425354fb4eed78832bbcb37b81acfd21879ab0 on apache:master**.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 618927)
    Time Spent: 1.5h  (was: 1h 20m)

> Low-discrepancy sequence
> ------------------------
>
>                 Key: MATH-1597
>                 URL: https://issues.apache.org/jira/browse/MATH-1597
>             Project: Commons Math
>          Issue Type: Sub-task
>            Reporter: Gilles Sadowski
>            Priority: Minor
>             Fix For: 4.0
>
>          Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> Two low-discrepancy sequences are implemented in Commons Math (in package 
> {{o.a.c.math4.legacy.random}}:
> * {{SobolSequenceGenerator}}
> * {{HaltonSequenceGenerator}}
> They both provide several methods:
> * {{nextVector()}}
> * {{skipTo(int)}}
> * {{getNextIndex()}}
> of which only the first is part of their common API through the 
> {{RandomVectorGenerator}}.
> I propose to create an interface that would better represent the specific 
> concept (and avoid the confusion with pseudo-random generators):
> {code}
> public interface LowDiscrepancySequence extends Supplier<double[]> { /* ... 
> */}
> {code}
> Thus, instead of class {{SobolSequenceGenerator}} we'd have:
> {code}
> public class SobolSequence implements LowDiscrepancySequence {
>     // ...
> }
> {code}
> This functionality could be moved to a new {{o.a.c.m.legacy.quasirandom}} 
> package (?).
> Method {{skipTo}} could be replaced with an API similar to Commons RNG 
> {{JumpableUniformRandomProvider}} (?).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to