Skip to content

Commit 3a61395

Browse files
committed
ParsedFEMFunction copy construction+assignment
1 parent 73d58f2 commit 3a61395

File tree

1 file changed

+46
-5
lines changed

1 file changed

+46
-5
lines changed

include/numerics/parsed_fem_function.h

+46-5
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,16 @@ class ParsedFEMFunction : public FEMFunctionBase<Output>
6969
const std::vector<Output> * initial_vals=nullptr);
7070

7171
/**
72-
* Special functions
73-
* - This class contains a const reference so it can't be copy or move-assigned.
74-
* - This class contains unique_ptrs so it can't be default copy constructed.
72+
* Constructors
73+
* - This class contains a const reference so it can't be default
74+
* copy or move-assigned. We manually implement the former
75+
* - This class contains unique_ptrs so it can't be default copy
76+
* constructed or assigned.
77+
* - It can still be default moved and deleted.
7578
*/
76-
ParsedFEMFunction & operator= (const ParsedFEMFunction &) = delete;
79+
ParsedFEMFunction & operator= (const ParsedFEMFunction &);
7780
ParsedFEMFunction & operator= (ParsedFEMFunction &&) = delete;
78-
ParsedFEMFunction (const ParsedFEMFunction &) = delete;
81+
ParsedFEMFunction (const ParsedFEMFunction &);
7982
ParsedFEMFunction (ParsedFEMFunction &&) = default;
8083
virtual ~ParsedFEMFunction () = default;
8184

@@ -215,6 +218,44 @@ ParsedFEMFunction<Output>::ParsedFEMFunction (const System & sys,
215218
}
216219

217220

221+
template <typename Output>
222+
inline
223+
ParsedFEMFunction<Output>::ParsedFEMFunction (const ParsedFEMFunction<Output> & other) :
224+
FEMFunctionBase<Output>(),
225+
_sys(other._sys)
226+
{
227+
*this = other;
228+
}
229+
230+
231+
template <typename Output>
232+
inline
233+
ParsedFEMFunction<Output> &
234+
ParsedFEMFunction<Output>::operator= (const ParsedFEMFunction<Output> & other)
235+
{
236+
libmesh_assert(&_sys == &other._sys);
237+
238+
this->_expression = other._expression;
239+
this->_n_vars = other._n_vars;
240+
this->_n_requested_vars = other._n_requested_vars;
241+
this->_n_requested_grad_components = other._n_requested_grad_components;
242+
this->_n_requested_hess_components = other._n_requested_hess_components;
243+
this->_requested_normals = other._requested_normals;
244+
this->_need_var = other._need_var;
245+
this->_need_var_grad = other._need_var_grad;
246+
#ifdef LIBMESH_ENABLE_SECOND_DERIVATIVES
247+
this->_need_var_hess = other._need_var_hess;
248+
#endif // LIBMESH_ENABLE_SECOND_DERIVATIVES
249+
this->_additional_vars = other._additional_vars;
250+
this->_initial_vals = other._initial_vals;
251+
252+
// parsers can be generated from scratch by reparsing expression
253+
this->reparse(_expression);
254+
255+
return *this;
256+
}
257+
258+
218259
template <typename Output>
219260
inline
220261
void

0 commit comments

Comments
 (0)