cleanup
This commit is contained in:
parent
b78c3f9aff
commit
c53335074d
3 changed files with 25 additions and 100 deletions
|
|
@ -383,7 +383,7 @@ void FEM_Matrix::Derive_Matrix_Pattern_slow()
|
|||
return;
|
||||
}
|
||||
|
||||
void FEM_Matrix::CalculateLaplaceMult(vector<double> &f)
|
||||
void FEM_Matrix::CalculateLaplace_mult(vector<double> &f)
|
||||
{
|
||||
cout << "\n############ FEM_Matrix::CalculateLaplaceMult ";
|
||||
double tstart = omp_get_wtime(); // OpenMP
|
||||
|
|
@ -394,9 +394,6 @@ void FEM_Matrix::CalculateLaplaceMult(vector<double> &f)
|
|||
for (int k = 0; k < _nrows; ++k) {
|
||||
_sk[k] = 0.0;
|
||||
}
|
||||
for (int k = 0; k < _nrows; ++k) {
|
||||
f[k] = 0.0;
|
||||
}
|
||||
|
||||
double ske[3][3], fe[3];
|
||||
// Loop over all elements
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue