On 6/14/20 7:09 PM, Oleg Kmechak wrote:
Solver(Model *model):
dof_handler(triangulation)
{
model = model;
Oleg,
I have not tried too carefully to look at what you're doing, but this line
doesn't look right. It is equivalent to
this->model = this->model;
which I don't think is what you want to do.
I should not that we occasionally use the following style in constructors:
Solver (Model *model)
: model (model)
{ ... }
which is initializing this->model with the given argument 'model'. But that
only works in the initializer list of a class.
You are correct that the error messages you see result from the fact that
somewhere in the Python interfaces, it is trying to create a copy
operator/constructor for the Model class, but that that doesn't exist because
the copy operations for Triangulation and DoFHandler are not allowed. That has
nothing to do with the issue above.
Best
W.
--
------------------------------------------------------------------------
Wolfgang Bangerth email: [email protected]
www: http://www.math.colostate.edu/~bangerth/
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see
https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/dealii/36b4fbb9-9b0a-9ff6-850e-2ba967ceca52%40colostate.edu.