DynamicProgrammingPairwiseAlignerJobWeightFunction Delegate |
Algorith-specific weight function
Namespace: Bio.Algorithms.AlignmentAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax protected delegate int WeightFunction(
int i,
int j,
int Iij,
int Dij,
int Cij
)
Protected Delegate Function WeightFunction (
i As Integer,
j As Integer,
Iij As Integer,
Dij As Integer,
Cij As Integer
) As Integer
protected delegate int WeightFunction(
int i,
int j,
int Iij,
int Dij,
int Cij
)
type WeightFunction =
delegate of
i : int *
j : int *
Iij : int *
Dij : int *
Cij : int -> int
Parameters
- i
- Type: SystemInt32
First index within the block - j
- Type: SystemInt32
Second index within the block - Iij
- Type: SystemInt32
Cost of Insertion - Dij
- Type: SystemInt32
Cost of Deletion - Cij
- Type: SystemInt32
Cost of Match
Return Value
Type:
Int32See Also