Page MenuHomec4science

error.h
No OneTemporary

File Metadata

Created
Sun, Sep 15, 03:16
#ifndef ERROR_H
#define ERROR_H
#include <mpi.h>
class Error {
public:
Error(MPI_Comm);
void all(const char *);
void one(const char *);
void warning(const char *);
private:
MPI_Comm comm;
int me;
};
#endif

Event Timeline