4#include "fils_struct.hpp"
8using namespace fsi_linear_solver;
10void fsils_spar_mul_ss(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
13void fsils_spar_mul_sv(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
14 const int dof,
const Array<double>& K,
const Vector<double>& U, Array<double>& KU);
16void fsils_spar_mul_vs(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
17 const int dof,
const Array<double>& K,
const Array<double>& U,
Vector<double>& KU);
19void fsils_spar_mul_vv(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
20 const int dof,
const Array<double>& K,
const Array<double>& U, Array<double>& KU);
The Vector template class is used for storing int and double data.
Definition Vector.h:23