ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayPrefixHelpers.java
(Generate patch)

Comparing jsr166/src/main/java/util/ArrayPrefixHelpers.java (file contents):
Revision 1.4 by jsr166, Wed Dec 31 07:54:13 2014 UTC vs.
Revision 1.9 by jsr166, Sun Sep 20 17:42:24 2015 UTC

# Line 384 | Line 384 | class ArrayPrefixHelpers {
384  
385          /** Root task constructor */
386          public DoubleCumulateTask(DoubleCumulateTask parent,
387 <                                DoubleBinaryOperator function,
388 <                                double[] array, int lo, int hi) {
387 >                                  DoubleBinaryOperator function,
388 >                                  double[] array, int lo, int hi) {
389              super(parent);
390              this.function = function; this.array = array;
391              this.lo = this.origin = lo; this.hi = this.fence = hi;
# Line 397 | Line 397 | class ArrayPrefixHelpers {
397  
398          /** Subtask constructor */
399          DoubleCumulateTask(DoubleCumulateTask parent, DoubleBinaryOperator function,
400 <                         double[] array, int origin, int fence, int threshold,
401 <                         int lo, int hi) {
400 >                           double[] array, int origin, int fence, int threshold,
401 >                           int lo, int hi) {
402              super(parent);
403              this.function = function; this.array = array;
404              this.origin = origin; this.fence = fence;
# Line 534 | Line 534 | class ArrayPrefixHelpers {
534  
535          /** Root task constructor */
536          public IntCumulateTask(IntCumulateTask parent,
537 <                                IntBinaryOperator function,
538 <                                int[] array, int lo, int hi) {
537 >                               IntBinaryOperator function,
538 >                               int[] array, int lo, int hi) {
539              super(parent);
540              this.function = function; this.array = array;
541              this.lo = this.origin = lo; this.hi = this.fence = hi;
# Line 547 | Line 547 | class ArrayPrefixHelpers {
547  
548          /** Subtask constructor */
549          IntCumulateTask(IntCumulateTask parent, IntBinaryOperator function,
550 <                         int[] array, int origin, int fence, int threshold,
551 <                         int lo, int hi) {
550 >                        int[] array, int origin, int fence, int threshold,
551 >                        int lo, int hi) {
552              super(parent);
553              this.function = function; this.array = array;
554              this.origin = origin; this.fence = fence;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines