Copyright (c) 2001-2002 The Trustees of Indiana University.  
                        All rights reserved.
Copyright (c) 1998-2001 University of Notre Dame. 
                        All rights reserved.
Copyright (c) 1994-1998 The Ohio State University.  
                        All rights reserved.

This file is part of the LAM/MPI software package.  For license
information, see the LICENSE file in the top level directory of the
LAM/MPI source distribution.



Mandelbrot is a simple example of the master/slave parallel
programming technique, written in C.  It runs with one master process
and any number of slaves.  Since it is MIMD, it requires an application
schema (see myapp) to run it with mpirun.  The master writes the
computed image into a Sun rasterfile formatted file.  Try viewing
it with X11/xv.

Use "make" to compile this examples.  Make will use mpicc to compile
both programs:

      mpicc -o master master.c
      mpicc -o slave slave.c
