Package fr.lip6.kernel

Package containing generic kernels on vectors.

See:
          Description

Class Summary
CMKernel<T> Generic kernel with a matrix based cache policy.
Kernel<T> Base class for kernels
ThreadedKernel<T> Simple multithreaded implementation over a given Kernel.
 

Package fr.lip6.kernel Description

Package containing generic kernels on vectors.

Kernel are designed to work on generic types. In other words, a Kernel shall work on all subclasses of MyType. This is very convenient in two ways.
First, very generic kernels are allowed. For instance a Kernel will work for all vectors, whatever thetype of the backing array. Second, since a kernel machine does not need to know the type the kernel is working on, very generic kernel machines can easily be built.