| 331 | //---------------------------------------------------------------------------- |
| 332 | template <class DeciderT, class AborterT> |
| 333 | VectorMatchingProcessor<DeciderT&, AborterT&> MakeVectorMatchingProcessor( |
| 334 | double toleranceFactor, DeciderT& decider, AborterT& aborter) |
| 335 | { |
| 336 | return VectorMatchingProcessor<DeciderT&, AborterT&>(toleranceFactor, decider, aborter); |
| 337 | } |
| 338 | |
| 339 | //============================================================================ |
| 340 | template <int N, class ArrayT1, class ArrayT2, class ArrayMapperT1, class ArrayMapperT2, |
no outgoing calls
no test coverage detected