mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 13:50:33 +05:00
copy assignment
This commit is contained in:
parent
cb635105e9
commit
ce75b69cd6
@ -78,6 +78,21 @@ namespace ngcore
|
|||||||
if (--(*refcount) == 0)
|
if (--(*refcount) == 0)
|
||||||
MPI_Comm_free(&comm);
|
MPI_Comm_free(&comm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NgMPI_Comm & operator= (const NgMPI_Comm & c)
|
||||||
|
{
|
||||||
|
if (refcount)
|
||||||
|
if (--(*refcount) == 0)
|
||||||
|
MPI_Comm_free(&comm);
|
||||||
|
|
||||||
|
refcount = c.refcount;
|
||||||
|
if (refcount) (*refcount)++;
|
||||||
|
size = c.size;
|
||||||
|
rank = c.rank;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
operator MPI_Comm() const { return comm; }
|
operator MPI_Comm() const { return comm; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user