com.multicorebsp.util
Class IntegerData

java.lang.Object
  extended by com.multicorebsp.util.MatrixData<IntegerData>
      extended by com.multicorebsp.util.IntegerData
All Implemented Interfaces:
com.multicorebsp.core.CompulsaryCloneable<IntegerData>, java.lang.Cloneable

public class IntegerData
extends MatrixData<IntegerData>

Enables storage of integer data in matrices.


Field Summary
 int[] values
          Stores the real values in double precision.
 
Constructor Summary
  IntegerData()
          Base constructor, all data arrays remain null.
  IntegerData(int length)
          Base constructor, initialises zero data.
  IntegerData(int[] _R)
          Base constructor, copies data handle by reference(!).
protected IntegerData(IntegerData toCopy)
          Deep copy constructor.
 
Method Summary
 void add(int i, int j)
          Adds the values of two nonzeroes and saves it at the last index available.
 int[] convertBase(int i, int j)
          Converts base of integer-valued array.
 void parseAndWrite(int i, java.util.Scanner s)
          Parses an input stream and writes the contect to the i'th index.
 void removeDuplicates(int nr)
          Removes duplicates from the data structure.
 IntegerData safeClone()
           
 IntegerData safeClone(int i, int j)
          Clones only a subset of the data.
 void swap(int i, int j)
          Swaps data elements.
 
Methods inherited from class com.multicorebsp.util.MatrixData
clone
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

values

public int[] values
Stores the real values in double precision.

Constructor Detail

IntegerData

public IntegerData()
Base constructor, all data arrays remain null.


IntegerData

public IntegerData(int length)
Base constructor, initialises zero data.


IntegerData

public IntegerData(int[] _R)
Base constructor, copies data handle by reference(!).


IntegerData

protected IntegerData(IntegerData toCopy)
Deep copy constructor.

Method Detail

add

public void add(int i,
                int j)
Description copied from class: MatrixData
Adds the values of two nonzeroes and saves it at the last index available.

Specified by:
add in class MatrixData<IntegerData>
Parameters:
i - First nonzero index (will remain unchanged).
j - Second nonzero index (will be replaced by sum).

removeDuplicates

public void removeDuplicates(int nr)
Description copied from class: MatrixData
Removes duplicates from the data structure. Assumed is all duplicates reside at the last part of the data structure.

Specified by:
removeDuplicates in class MatrixData<IntegerData>
Parameters:
nr - Number of elements to remove.

swap

public void swap(int i,
                 int j)
Description copied from class: MatrixData
Swaps data elements.

Specified by:
swap in class MatrixData<IntegerData>
Parameters:
i - First index
j - Second index

safeClone

public IntegerData safeClone()

safeClone

public IntegerData safeClone(int i,
                             int j)
Description copied from class: MatrixData
Clones only a subset of the data.

Specified by:
safeClone in class MatrixData<IntegerData>
Parameters:
i - Lower bound of the index to copy.
j - Upper bound on the index to copy.
Returns:
Partial clone of the current object.

parseAndWrite

public void parseAndWrite(int i,
                          java.util.Scanner s)
Description copied from class: MatrixData
Parses an input stream and writes the contect to the i'th index.

Specified by:
parseAndWrite in class MatrixData<IntegerData>
Parameters:
i - At what index to save input.
s - Where to get the input from.

convertBase

public int[] convertBase(int i,
                         int j)
Converts base of integer-valued array.

Parameters:
i - Original base.
j - Target base.
Returns:
Handle to the converted raw array.