Package | Description |
---|---|
cern.colt.map |
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
|
cern.colt.matrix.impl |
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix , without subsetting or supersetting. |
Modifier and Type | Class and Description |
---|---|
class |
OpenIntObjectHashMap
Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
|
Modifier and Type | Method and Description |
---|---|
AbstractIntObjectMap |
AbstractIntObjectMap.copy()
Returns a deep copy of the receiver; uses
clone() and casts the result. |
Modifier and Type | Field and Description |
---|---|
protected AbstractIntObjectMap |
SparseObjectMatrix3D.elements |
protected AbstractIntObjectMap |
SparseObjectMatrix1D.elements |
protected AbstractIntObjectMap |
SparseObjectMatrix2D.elements |
Constructor and Description |
---|
SparseObjectMatrix1D(int size,
AbstractIntObjectMap elements,
int offset,
int stride)
Constructs a matrix view with a given number of parameters.
|
SparseObjectMatrix2D(int rows,
int columns,
AbstractIntObjectMap elements,
int rowZero,
int columnZero,
int rowStride,
int columnStride)
Constructs a view with the given parameters.
|
SparseObjectMatrix3D(int slices,
int rows,
int columns,
AbstractIntObjectMap elements,
int sliceZero,
int rowZero,
int columnZero,
int sliceStride,
int rowStride,
int columnStride)
Constructs a view with the given parameters.
|
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.