svMultiPhysics
Loading...
Searching...
No Matches
bcast.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 "fils_struct.hpp"
5
6namespace bcast {
7
8using namespace fsi_linear_solver;
9
10void fsils_bcast(double& u, FSILS_commuType& commu);
11
12void fsils_bcast_v(const int n, Vector<double>& u, FSILS_commuType& commu);
13
14};
The Vector template class is used for storing int and double data.
Definition Vector.h:23