Pure Mpi.NET Library
ReductionOperation<(Of <(T>)>) Delegate
NamespacesMpiReductionOperation<(Of <(T>)>)
Delegate method that will reduce the data. The method wil take in two data variables and reduce them to another data variable, resulting in a Log2(comm.Size) number of reductions when used in the communication reduction methods.
Declaration Syntax
C#Visual BasicVisual C++
public delegate T ReductionOperation<T>(
	T left,
	T right
)
Public Delegate Function ReductionOperation(Of T) ( _
	left As T, _
	right As T _
) As T
generic<typename T>
public delegate T ReductionOperation(
	T left, 
	T right
)
Generic Template Parameters
T
type of data
Parameters
left (T)
left intput parameter
right (T)
right input parameter
Return Value
reduction of the inputs

Assembly: Mpi (Module: Mpi) Version: 1.0.0.3 (1.0.0.3)