Serialized Form
-
Package cern.colt
-
Class cern.colt.PersistentObject extends Object implements Serializable
- serialVersionUID:
- 1020L
-
-
Package cern.colt.list
-
Class cern.colt.list.AbstractByteList extends AbstractList implements Serializable
- serialVersionUID:
- -4155111539166470359L
-
Serialized Fields
-
size
int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.
-
-
Class cern.colt.list.AbstractCollection extends PersistentObject implements Serializable
- serialVersionUID:
- -6366648067698431127L
-
Class cern.colt.list.AbstractDoubleList extends AbstractList implements Serializable
- serialVersionUID:
- 3719792620708791294L
-
Serialized Fields
-
size
int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.
-
-
Class cern.colt.list.AbstractFloatList extends AbstractList implements Serializable
- serialVersionUID:
- 8903324182319104507L
-
Serialized Fields
-
size
int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.
-
-
Class cern.colt.list.AbstractIntList extends AbstractList implements Serializable
- serialVersionUID:
- 7179602306618893633L
-
Serialized Fields
-
size
int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.
-
-
Class cern.colt.list.AbstractList extends AbstractCollection implements Serializable
- serialVersionUID:
- -475297140870140110L
-
Class cern.colt.list.AbstractLongList extends AbstractList implements Serializable
- serialVersionUID:
- -8982359275700901261L
-
Serialized Fields
-
size
int size
The size of the list. This is a READ_ONLY variable for all methods but setSizeRaw(int newSize) !!! If you violate this principle in subclasses, you should exactly know what you are doing.
-
-
Class cern.colt.list.ByteArrayList extends AbstractByteList implements Serializable
- serialVersionUID:
- -8391726644100623677L
-
Serialized Fields
-
elements
byte[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.
-
-
Class cern.colt.list.DoubleArrayList extends AbstractDoubleList implements Serializable
- serialVersionUID:
- -6725404600922123212L
-
Serialized Fields
-
elements
double[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.
-
-
Class cern.colt.list.FloatArrayList extends AbstractFloatList implements Serializable
- serialVersionUID:
- 5992103504392608235L
-
Serialized Fields
-
elements
float[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.
-
-
Class cern.colt.list.IntArrayList extends AbstractIntList implements Serializable
- serialVersionUID:
- -620479664202544508L
-
Serialized Fields
-
elements
int[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.
-
-
Class cern.colt.list.LongArrayList extends AbstractLongList implements Serializable
- serialVersionUID:
- -3173719221008416954L
-
Serialized Fields
-
elements
long[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer.
-
-
Class cern.colt.list.ObjectArrayList extends AbstractList implements Serializable
- serialVersionUID:
- 6309467743929950013L
-
Serialized Fields
-
elements
T[] elements
The array buffer into which the elements of the list are stored. The capacity of the list is the length of this array buffer. -
size
int size
The size of the list.
-
-
-
Package cern.colt.map
-
Class cern.colt.map.AbstractDoubleIntMap extends AbstractMap implements Serializable
- serialVersionUID:
- 5355187988046637245L
-
Class cern.colt.map.AbstractIntDoubleMap extends AbstractMap implements Serializable
- serialVersionUID:
- -6053319547982091037L
-
Class cern.colt.map.AbstractIntIntMap extends AbstractMap implements Serializable
- serialVersionUID:
- -3601316311886346385L
-
Class cern.colt.map.AbstractIntObjectMap extends AbstractMap implements Serializable
- serialVersionUID:
- 8861193396926198578L
-
Class cern.colt.map.AbstractLongDoubleMap extends AbstractMap implements Serializable
- serialVersionUID:
- -6053319547982091037L
-
Class cern.colt.map.AbstractLongObjectMap extends AbstractMap implements Serializable
- serialVersionUID:
- 9118697206729516087L
-
Class cern.colt.map.AbstractMap extends PersistentObject implements Serializable
- serialVersionUID:
- -5385809797236464343L
-
Serialized Fields
-
distinct
int distinct
The number of distinct associations in the map; its "size()". -
highWaterMark
int highWaterMark
-
lowWaterMark
int lowWaterMark
The table capacity c=table.length always satisfies the invariantc * minLoadFactor <= s <= c * maxLoadFactor
, where s=size() is the number of associations currently contained. The term "c * minLoadFactor" is called the "lowWaterMark", "c * maxLoadFactor" is called the "highWaterMark". In other words, the table capacity (and proportionally the memory used by this class) oscillates within these constraints. The terms are precomputed and cached to avoid recalculating them each time put(..) or removeKey(...) is called. -
maxLoadFactor
double maxLoadFactor
The maximum load factor for the hashtable. -
minLoadFactor
double minLoadFactor
The minimum load factor for the hashtable.
-
-
Class cern.colt.map.OpenDoubleIntHashMap extends AbstractDoubleIntMap implements Serializable
- serialVersionUID:
- -7504887429926664162L
-
Serialized Fields
-
freeEntries
int freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
double[] table
The hash table keys. -
values
int[] values
The hash table values.
-
-
Class cern.colt.map.OpenIntDoubleHashMap extends AbstractIntDoubleMap implements Serializable
- serialVersionUID:
- -6994113634672494086L
-
Serialized Fields
-
freeEntries
int freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
int[] table
The hash table keys. -
values
double[] values
The hash table values.
-
-
Class cern.colt.map.OpenIntIntHashMap extends AbstractIntIntMap implements Serializable
- serialVersionUID:
- -8463017321108882602L
-
Serialized Fields
-
freeEntries
int freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
int[] table
The hash table keys. -
values
int[] values
The hash table values.
-
-
Class cern.colt.map.OpenIntObjectHashMap extends AbstractIntObjectMap<T> implements Serializable
- serialVersionUID:
- 5924851224248082646L
-
Serialized Fields
-
freeEntries
int freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
int[] table
The hash table keys. -
values
T[] values
The hash table values.
-
-
Class cern.colt.map.OpenLongDoubleHashMap extends AbstractLongDoubleMap implements Serializable
- serialVersionUID:
- -6994113634672494086L
-
Serialized Fields
-
freeEntries
long freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
long[] table
The hash table keys. -
values
double[] values
The hash table values.
-
-
Class cern.colt.map.OpenLongObjectHashMap extends AbstractLongObjectMap<T> implements Serializable
- serialVersionUID:
- 6109389327648599065L
-
Serialized Fields
-
freeEntries
int freeEntries
The number of table entries in state==FREE. -
state
byte[] state
The state of each hash table entry (FREE, FULL, REMOVED). -
table
long[] table
The hash table keys. -
values
T[] values
The hash table values.
-
-
Class cern.colt.map.QuickOpenIntIntHashMap extends OpenIntIntHashMap implements Serializable
- serialVersionUID:
- 6620938260464452515L
-
Serialized Fields
-
totalProbesSaved
int totalProbesSaved
-
-
-
Package cern.jet.random
-
Class cern.jet.random.AbstractContinousDistribution extends AbstractDistribution implements Serializable
- serialVersionUID:
- -6076386102892935656L
-
Class cern.jet.random.AbstractDistribution extends PersistentObject implements Serializable
- serialVersionUID:
- -5226193316569798444L
-
Serialized Fields
-
randomGenerator
RandomEngine randomGenerator
-
-
Class cern.jet.random.Uniform extends AbstractContinousDistribution implements Serializable
- serialVersionUID:
- 3494509643171209578L
-
Serialized Fields
-
max
double max
-
min
double min
-
-
-
Package cern.jet.random.engine
-
Class cern.jet.random.engine.DRand extends RandomEngine implements Serializable
- serialVersionUID:
- 5178042285087796468L
-
Serialized Fields
-
current
int current
-
-
Class cern.jet.random.engine.MersenneTwister extends RandomEngine implements Serializable
- serialVersionUID:
- -3924937606119729891L
-
Serialized Fields
-
mt
int[] mt
-
mti
int mti
-
-
Class cern.jet.random.engine.RandomEngine extends PersistentObject implements Serializable
- serialVersionUID:
- -1305884440694600782L
-
-
Package org.nuiton.math.matrix
-
Class org.nuiton.math.matrix.AbstractMatrixND extends Object implements Serializable
- serialVersionUID:
- -6838751468730930727L
-
Class org.nuiton.math.matrix.MatrixException extends RuntimeException implements Serializable
- serialVersionUID:
- 1917420713781767581L
-
Class org.nuiton.math.matrix.MatrixNDImpl extends AbstractMatrixND implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
matrix
BasicMatrix matrix
-
-
Class org.nuiton.math.matrix.MatrixProxy extends AbstractMatrixND implements Serializable
- serialVersionUID:
- 2338394722090201478L
-
Serialized Fields
-
matrixProvider
MatrixProvider matrixProvider
-
-
Class org.nuiton.math.matrix.MatrixSemanticsDecorator extends Object implements Serializable
-
Serialized Fields
-
cacheSemantics
List[] cacheSemantics
-
decorator
SemanticsDecorator decorator
-
matrix
MatrixND matrix
-
-
-
Class org.nuiton.math.matrix.SubMatrix extends AbstractMatrixND implements Serializable
- serialVersionUID:
- 4092234115185263506L
-
Serialized Fields
-
converter
SubMatrix.DimensionConverter converter
-
matrix
MatrixND matrix
-
-
Class org.nuiton.math.matrix.SubMatrix.MappingConverter extends Object implements Serializable
- serialVersionUID:
- -6367416559713556559L
-
Serialized Fields
-
dim
int dim
-
elem
int[] elem
-
-
Class org.nuiton.math.matrix.SubMatrix.ShiftConverter extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dim
int dim
-
nb
int nb
-
start
int start
-
-