| DynamicProgrammingPairwiseAlignerJobWritebackFold Method  | 
            Writes the fold data structure for the block back to the grid cache
            
 
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntaxprotected void WritebackFold(
	int[][] cachedRows,
	int[][] cachedCols,
	int[] fold,
	int blockRow,
	int blockCol,
	int lastRow,
	int lastCol
)
Protected Sub WritebackFold ( 
	cachedRows As Integer()(),
	cachedCols As Integer()(),
	fold As Integer(),
	blockRow As Integer,
	blockCol As Integer,
	lastRow As Integer,
	lastCol As Integer
)
protected:
void WritebackFold(
	array<array<int>^>^ cachedRows, 
	array<array<int>^>^ cachedCols, 
	array<int>^ fold, 
	int blockRow, 
	int blockCol, 
	int lastRow, 
	int lastCol
)
member WritebackFold : 
        cachedRows : int[][] * 
        cachedCols : int[][] * 
        fold : int[] * 
        blockRow : int * 
        blockCol : int * 
        lastRow : int * 
        lastCol : int -> unit 
Parameters
- cachedRows
 - Type: SystemInt32
Cache for the grid rows - cachedCols
 - Type: SystemInt32
Cache for the grid columns - fold
 - Type: SystemInt32
Fold data structure - blockRow
 - Type: SystemInt32
First index of the block within the grid - blockCol
 - Type: SystemInt32
Second index of the block within the grid - lastRow
 - Type: SystemInt32
Last valid row index within the block; rows beyond this index stay uninitialized - lastCol
 - Type: SystemInt32
Last valid column index within the block; columns beyond this index stay uninitialized 
See Also