31#include "fils_struct.hpp"
35using namespace fsi_linear_solver;
37void fsils_spar_mul_ss(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
40void fsils_spar_mul_sv(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
41 const int dof,
const Array<double>& K,
const Vector<double>& U, Array<double>& KU);
43void fsils_spar_mul_vs(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
44 const int dof,
const Array<double>& K,
const Array<double>& U,
Vector<double>& KU);
46void fsils_spar_mul_vv(FSILS_lhsType& lhs,
const Array<int>& rowPtr,
const Vector<int>& colPtr,
47 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:50