svMultiPhysics
Loading...
Searching...
No Matches
commu.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#include "fsils.hpp"
5#include "CmMod.h"
6
7#ifndef FSI_LINEAR_SOLVER_COMMU_H
8#define FSI_LINEAR_SOLVER_COMMU_H
9
10namespace fsi_linear_solver {
11
12void fsils_commu_create(FSILS_commuType& commu, cm_mod::MpiCommWorldType commi);
13
14void fsils_commu_free(FSILS_commuType& commu);
15
16};
17
18#endif
19
20