/* ///////////////////////////////////////////////////////////////////// */
/*! 
  \file  
  \brief ArrayLib main header file.

  Contains most of the useful includes (e.g. mpi.h).

  \author A. Malagoli (University of Chicago)
  \author G. Muscianisi (g.muscianisi@cineca.it)

  \date   Aug 29, 2012
*/
/* ///////////////////////////////////////////////////////////////////// */

#ifndef __AL
#define __AL

#include <mpi.h>

#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <strings.h>
#include <math.h>

#include "al_defs.h"

/* Include AL prototypes */
#include "al_proto.h"

/* Include AL macros and definitions */
#include "al_codes.h"


#endif /* End if __AL */

