[This is preliminary documentation and is subject to change.]
Computes the fixed point of the subquery f applied to this collection.
Namespace: Microsoft.Research.Naiad.Frameworks.DifferentialDataflow
Assembly: Microsoft.Research.Naiad.DifferentialDataflow (in Microsoft.Research.Naiad.DifferentialDataflow.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
Collection<TRecord, TTime> FixedPoint( Func<LoopContext<TTime>, Collection<TRecord, IterationIn<TTime>>, Collection<TRecord, IterationIn<TTime>>> f, int maxIterations )
Parameters
- f
- Type: SystemFuncLoopContextTTime, CollectionTRecord, IterationInTTime, CollectionTRecord, IterationInTTime
The subquery to apply iteratively. - maxIterations
- Type: SystemInt32
The maximum number of iterations to compute.
Return Value
Type: CollectionTRecord, TTimeThe result of applying f to this collection maxIterations times, or until fixed point is reached, whichever is earlier.
See Also