SCVT_MPI is a C++ program which carries out a procedure that produces Centroidal Voronoi Tessellations (CVT's) on the surface of a sphere.
A CVT is a kind of mesh. Such meshes can be used for weather or climate modeling on the Earth's surface, for instance.
The program uses Jonathan Shewchuk's triangle library, which can triangulate a set of points in the plane.
The program uses the boost library of high-quality arithmetic procedures, in particular, it refers to the boost mpi and boost serialization libraries.
The program relies on the boost mpi library to implement the parallel execution of the algorithm.
The program relies on the boost serialization library to encode a C++ structure as a sequence of bytes that can be recorded in a file or transmitted as a message, which can then be decoded by a receiving program to recover the original C++ structure.
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
SCVT_MPI is available in a C++ version.
BOOST, C++ programs which demonstrate the use of the Boost libraries;
MPI, C++ programs which illustrate the use of the MPI application program interface for carrying out parallel computations in a distributed memory environment.
TRIANGLE, a C program which computes a triangulation of a geometric region, by Jonathan Shewchuk.
You can go up one level to the C++ source codes.