Prev Up Next
Go backward to Lolita
Go up to Large Parallel Applications
Go forward to Accident Blackspots

Linsolv

Linsolv is a linear equation solver, and a typical example of a parallel symbolic program. It uses the multiple homomorphic images approach which is often used in computer algebra algorithms [Lauer, 1982]: first the elements of the input matrix and vector are mapped from Z into several images Zp (where each p is a prime number); then the system is solved in each of these images, and finally the overall result is constructed by combining these solutions using the Chinese Remainder Algorithm. This divide-and-conquer structure is depicted by Figure .

Detailed Structure of Lolita
Algorithm Structure

Strategic code for the matrix determinant part of the solver is given in Section * (the whole algorithm is discussed in [Loidl et al., 1995]). Precise control of the dynamic behaviour is required at two critical places in the program. This behaviour can be described by combining generic strategies.


{trinder,hwloidl,simonpj}@dcs.gla.ac.uk, kh@dcs.st-and.ac.uk

Prev Up Next