Uses of Class
org.ojalgo.array.SegmentedArray
-
Packages that use SegmentedArray Package Description org.ojalgo.array -
-
Uses of SegmentedArray in org.ojalgo.array
Methods in org.ojalgo.array that return SegmentedArray Modifier and Type Method Description (package private) SegmentedArray<N>
SegmentedArray. grow()
Will either grow the last segment to be the same size as all the others, or add another segment (with the same size).(package private) SegmentedArray<N>
ArrayFactory. makeSegmented(long... structure)
(package private) SegmentedArray<java.lang.Double>
BufferArray.MappedFileFactory. makeSegmented(long... structure)
(package private) SegmentedArray<N>
ArrayFactory. wrapAsSegments(BasicArray<N>... segments)
There are several requirements on the segments: All segments, except possibly the last, must have the same length/size/count. That size must be a power of 2. The size of the last segment must be <= "the segment size".
-