@@ -69,13 +69,16 @@ class ParsedFEMFunction : public FEMFunctionBase<Output>
69
69
const std::vector<Output> * initial_vals=nullptr );
70
70
71
71
/* *
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.
75
78
*/
76
- ParsedFEMFunction & operator = (const ParsedFEMFunction &) = delete ;
79
+ ParsedFEMFunction & operator = (const ParsedFEMFunction &);
77
80
ParsedFEMFunction & operator = (ParsedFEMFunction &&) = delete ;
78
- ParsedFEMFunction (const ParsedFEMFunction &) = delete ;
81
+ ParsedFEMFunction (const ParsedFEMFunction &);
79
82
ParsedFEMFunction (ParsedFEMFunction &&) = default ;
80
83
virtual ~ParsedFEMFunction () = default ;
81
84
@@ -215,6 +218,44 @@ ParsedFEMFunction<Output>::ParsedFEMFunction (const System & sys,
215
218
}
216
219
217
220
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
+
218
259
template <typename Output>
219
260
inline
220
261
void
0 commit comments