svMultiPhysics
Loading...
Searching...
No Matches
fsils_std.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4// This file reproduces FSILS_STD.h.
5
6#ifndef FILS_STD_H
7#define FILS_STD_H
8
9#include "mpi.h"
10
11namespace fsi_linear_solver {
12
13// Set MPI data type names.
14const decltype(MPI_LOGICAL) mplog = MPI_LOGICAL;
15const decltype(MPI_INTEGER) mpint = MPI_INTEGER;
16const decltype(MPI_DOUBLE_PRECISION) mpreal = MPI_DOUBLE_PRECISION;
17const decltype(MPI_CHARACTER) mpchar = MPI_CHARACTER;
18//const decltype(MPI_STATUS_SIZE) mpsts = MPI_STATUS_SIZE;
19
20};
21
22#endif
23
24