File tree 6 files changed +10
-8
lines changed
6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 4
4
#include " distrelaxation.hpp"
5
5
6
6
#include < mfem.hpp>
7
- #include < general/forall.hpp>
7
+ #include < mfem/ general/forall.hpp>
8
8
#include " linalg/chebyshev.hpp"
9
9
#include " linalg/rap.hpp"
10
10
Original file line number Diff line number Diff line change 3
3
4
4
#include " jacobi.hpp"
5
5
6
- #include < general/forall.hpp>
6
+ #include < mfem/ general/forall.hpp>
7
7
8
8
namespace palace
9
9
{
Original file line number Diff line number Diff line change 3
3
4
4
#include " operator.hpp"
5
5
6
- #include < general/forall.hpp>
6
+ #include < mfem/ general/forall.hpp>
7
7
#include " linalg/slepc.hpp"
8
8
#include " utils/communication.hpp"
9
9
Original file line number Diff line number Diff line change 3
3
4
4
#include " rap.hpp"
5
5
6
- #include < general/forall.hpp>
6
+ #include < mfem/ general/forall.hpp>
7
7
8
8
namespace palace
9
9
{
@@ -152,6 +152,7 @@ mfem::HypreParMatrix &ParOperator::ParallelAssemble()
152
152
{
153
153
MFEM_ABORT (" Unable to assemble the local operator for parallel assembly of "
154
154
" BilinearForm!" );
155
+ lA = nullptr ;
155
156
}
156
157
#else
157
158
MFEM_VERIFY (bfA->HasSpMat (),
@@ -191,15 +192,16 @@ mfem::HypreParMatrix &ParOperator::ParallelAssemble()
191
192
{
192
193
lA = &mbfA->SpMat ();
193
194
}
194
- else if (bfA ->HasExt ())
195
+ else if (mbfA ->HasExt ())
195
196
{
196
- lA = mfem::ceed::CeedOperatorFullAssemble (*bfA );
197
+ lA = mfem::ceed::CeedOperatorFullAssemble (*mbfA );
197
198
own_lA = true ;
198
199
}
199
200
else
200
201
{
201
202
MFEM_ABORT (" Unable to assemble the local operator for parallel assembly of "
202
203
" MixedBilinearForm!" );
204
+ lA = nullptr ;
203
205
}
204
206
#else
205
207
MFEM_VERIFY (
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ StrumpackSolverBase<StrumpackSolverType>::StrumpackSolverBase(
101
101
this ->SetCompressionRelTol (lr_tol);
102
102
break ;
103
103
case config::LinearSolverData::CompressionType::NONE:
104
- default :
104
+ case config::LinearSolverData::CompressionType::INVALID :
105
105
break ;
106
106
}
107
107
}
Original file line number Diff line number Diff line change 5
5
6
6
#include < cstdint>
7
7
#include < random>
8
- #include < general/forall.hpp>
8
+ #include < mfem/ general/forall.hpp>
9
9
10
10
namespace palace
11
11
{
You can’t perform that action at this time.
0 commit comments