[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-19 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 20/Jun/21 02:30
Start Date: 20/Jun/21 02:30
Worklog Time Spent: 10m 
  Work Description: asfgit merged pull request #97:
URL: https://github.com/apache/commons-numbers/pull/97


   


-- 
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.

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


Issue Time Tracking
---

Worklog Id: (was: 612338)
Time Spent: 1h 20m  (was: 1h 10m)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
> Attachments: FMA.java, Sum.java
>
>  Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-19 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 19/Jun/21 12:39
Start Date: 19/Jun/21 12:39
Worklog Time Spent: 10m 
  Work Description: coveralls commented on pull request #97:
URL: https://github.com/apache/commons-numbers/pull/97#issuecomment-864401053


   
   [![Coverage 
Status](https://coveralls.io/builds/40719389/badge)](https://coveralls.io/builds/40719389)
   
   Coverage decreased (-0.007%) to 99.659% when pulling 
**06a613d29c950acff30feb06ac95d54c0d5151ea on darkma773r:numbers-163-sum** into 
**d4c00eb68544f3adf258d09ab2c7daf3feb1f8c3 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.

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


Issue Time Tracking
---

Worklog Id: (was: 612296)
Time Spent: 1h 10m  (was: 1h)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
> Attachments: FMA.java, Sum.java
>
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-19 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 19/Jun/21 12:35
Start Date: 19/Jun/21 12:35
Worklog Time Spent: 10m 
  Work Description: darkma773r closed pull request #95:
URL: https://github.com/apache/commons-numbers/pull/95


   


-- 
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.

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


Issue Time Tracking
---

Worklog Id: (was: 612294)
Time Spent: 50m  (was: 40m)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
> Attachments: FMA.java, Sum.java
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-19 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 19/Jun/21 12:35
Start Date: 19/Jun/21 12:35
Worklog Time Spent: 10m 
  Work Description: darkma773r commented on pull request #95:
URL: https://github.com/apache/commons-numbers/pull/95#issuecomment-864400600


   Replaced with https://github.com/apache/commons-numbers/pull/97


-- 
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.

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


Issue Time Tracking
---

Worklog Id: (was: 612295)
Time Spent: 1h  (was: 50m)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
> Attachments: FMA.java, Sum.java
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-19 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 19/Jun/21 12:34
Start Date: 19/Jun/21 12:34
Worklog Time Spent: 10m 
  Work Description: darkma773r opened a new pull request #97:
URL: https://github.com/apache/commons-numbers/pull/97


   


-- 
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.

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


Issue Time Tracking
---

Worklog Id: (was: 612293)
Time Spent: 40m  (was: 0.5h)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
> Attachments: FMA.java, Sum.java
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-14 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 14/Jun/21 16:10
Start Date: 14/Jun/21 16:10
Worklog Time Spent: 10m 
  Work Description: coveralls edited a comment on pull request #95:
URL: https://github.com/apache/commons-numbers/pull/95#issuecomment-860599924


   
   [![Coverage 
Status](https://coveralls.io/builds/40564790/badge)](https://coveralls.io/builds/40564790)
   
   Coverage increased (+0.003%) to 99.665% when pulling 
**30e8afb29eb11039e5780112c3de91421e8d4632 on darkma773r:numbers-163** into 
**19899e7124dcd182fb3ebe31f17405c15be6cd19 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.

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


Issue Time Tracking
---

Worklog Id: (was: 610754)
Time Spent: 0.5h  (was: 20m)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-14 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 14/Jun/21 11:08
Start Date: 14/Jun/21 11:08
Worklog Time Spent: 10m 
  Work Description: coveralls commented on pull request #95:
URL: https://github.com/apache/commons-numbers/pull/95#issuecomment-860599924


   
   [![Coverage 
Status](https://coveralls.io/builds/40556505/badge)](https://coveralls.io/builds/40556505)
   
   Coverage increased (+0.002%) to 99.665% when pulling 
**0d6bb9f0689e2c8a326c2a25244e7ff0f27f283a on darkma773r:numbers-163** into 
**19899e7124dcd182fb3ebe31f17405c15be6cd19 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.

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


Issue Time Tracking
---

Worklog Id: (was: 610630)
Time Spent: 20m  (was: 10m)

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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


[jira] [Work logged] (NUMBERS-163) Summation and LinearCombination Accumulators

2021-06-14 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot logged work on NUMBERS-163:
--

Author: ASF GitHub Bot
Created on: 14/Jun/21 11:02
Start Date: 14/Jun/21 11:02
Worklog Time Spent: 10m 
  Work Description: darkma773r opened a new pull request #95:
URL: https://github.com/apache/commons-numbers/pull/95


   Adding Summation.Accumulator and LinearCombination.Accumulator.


-- 
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.

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


Issue Time Tracking
---

Worklog Id: (was: 610629)
Remaining Estimate: 0h
Time Spent: 10m

> Summation and LinearCombination Accumulators
> 
>
> Key: NUMBERS-163
> URL: https://issues.apache.org/jira/browse/NUMBERS-163
> Project: Commons Numbers
>  Issue Type: New Feature
>Reporter: Matt Juntunen
>Priority: Major
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> It would be useful to have simple accumulator classes in {{Summation}} and 
> {{LinearCombination}} to perform extended precision operations on arbitrary 
> collections of values without requiring conversion to {{double[]}}. Ex:
> {code:java}
> Summation.Accumulator sum= Summation.accumulator(1d);
> sum.add(x)
> .add(y)
> .add(z)
>.add(w);
> double sumResult = sum.get();
> LinearCombination.Accumulator comb = LinearCombination.accumulator(1d);
> comb.add(x, scale)
> .add(y, scale)
> .add(z, scale)
> .add(w, scale);
> double combResult = comb.get();
> {code}



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