svMultiPhysics
Loading...
Searching...
No Matches
bicgs.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 bicgs {
7
8void bicgsv(fsi_linear_solver::FSILS_lhsType& lhs, fsi_linear_solver::FSILS_subLsType& ls, const int dof,
9 const Array<double>& K, Array<double>& R);
10
11void bicgss(fsi_linear_solver::FSILS_lhsType& lhs, fsi_linear_solver::FSILS_subLsType& ls, const Vector<double>& K, Vector<double>& R);
12
13};
The Vector template class is used for storing int and double data.
Definition Vector.h:23