svMultiPhysics
Loading...
Searching...
No Matches
lhs.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#include "Vector.h"
8
9#ifndef FSI_LINEAR_SOLVER_LHS_H
10#define FSI_LINEAR_SOLVER_LHS_H
11
12namespace fsi_linear_solver {
13
14void fsils_lhs_create(FSILS_lhsType& lhs, FSILS_commuType& commu, int gnNo, int nNo, int nnz, Vector<int>& gNodes,
15 Vector<int>&rowPtr, Vector<int>&colPtr, int nFaces);
16
17void fsils_lhs_free(FSILS_lhsType& lhs);
18
19};
20
21#endif
22
23
The Vector template class is used for storing int and double data.
Definition Vector.h:23