-
Updated
Jan 12, 2022 - Python
fenics
Here are 90 public repositories matching this topic...
The actual ghostUpdate is truly needed only in very few places, for most local operations one knows the value for ghosts without communication.
This
u.vector.copy(result=u0.vector)
u0.vector.ghostUpdate(addv=PETSc.InsertMode.INSERT, mode=PETSc.ScatterMode.FORWARD)could become
with u0.vector.localForm() as loc0, u.vector.localForm() as loc:
loc.copy(loc0)
``-
Updated
Jan 3, 2022 - MATLAB
While converting the developer docs docuemnt to markdown I stumbled
upon the envvar directive. I think it would be nice to use that generally,
but it needs some work. For one all variables from environment.rst show
up as second level TOC entries in the main navigation now. Which is something
we do not want. The developer docs should also use the referencing mechanism
and maybe we want to add a
-
Updated
Oct 28, 2021 - Python
-
Updated
Jan 25, 2022 - Python
-
Updated
Dec 2, 2021 - Julia
-
Updated
Nov 11, 2021 - Python
-
Updated
Jan 3, 2022 - Python
-
Updated
Nov 9, 2021 - Jupyter Notebook
-
Updated
Jan 30, 2020 - Python
-
Updated
Jan 25, 2022 - Python
-
Updated
Feb 12, 2020 - Python
-
Updated
Mar 7, 2021 - Python
-
Updated
Jun 7, 2021 - Python
-
Updated
May 30, 2021 - Python
-
Updated
Jan 1, 2022 - Python
-
Updated
Mar 19, 2021 - Python
-
Updated
Jan 24, 2022 - Python
-
Updated
Jan 24, 2022 - Jupyter Notebook
-
Updated
Jan 14, 2022 - C++
-
Updated
Jan 24, 2022 - Python
-
Updated
Mar 21, 2021 - Julia
-
Updated
Dec 21, 2021 - Python
-
Updated
Jan 2, 2020 - Python
Improve this page
Add a description, image, and links to the fenics topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the fenics topic, visit your repo's landing page and select "manage topics."


utils::ptr_vector<T>serves a similar purpose like smart pointers fromstd. We should remove this implementation in favor of smart pointers fromstd.I already took care of replacing
utils::ptr_vector<T>withstd::unique_ptrin precice/precice#1159, but there are many more places, whereutils::ptr_vector<T>is used.