Skip to content

Commit

Permalink
reorder AMR class
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Sep 10, 2024
1 parent f731bec commit c712104
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/matrixFreePDE.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,6 @@ class MatrixFreePDE : public Subscriptor
void
applyBCs(unsigned int fieldIndex);

/*AMR methods*/
AdaptiveRefinement<dim, degree> AMR;

/*Method to compute the right hand side (RHS) residual vectors*/
void
computeExplicitRHS();
Expand Down Expand Up @@ -480,6 +477,9 @@ class MatrixFreePDE : public Subscriptor
double integrated_var;
unsigned int integral_index;
std::mutex assembler_lock;

/*AMR methods*/
AdaptiveRefinement<dim, degree> AMR;
};

#endif

0 comments on commit c712104

Please sign in to comment.