]>
https://gitweb.dealii.org/ - dealii.git/log
Wolfgang Bangerth [Tue, 11 Jan 2022 19:53:09 +0000 (12:53 -0700)]
Merge pull request #12265 from masterleinad/add_readability-implicit-bool-conversion
Add readability-implicit-bool-conversion
Daniel Arndt [Tue, 11 Jan 2022 18:07:56 +0000 (13:07 -0500)]
Merge pull request #13220 from marcfehling/tee-doc
Marc Fehling [Tue, 11 Jan 2022 17:33:37 +0000 (18:33 +0100)]
Fix formatting of table.
Marc Fehling [Tue, 11 Jan 2022 17:17:01 +0000 (18:17 +0100)]
Hide template specialization from doxygen.
Daniel Arndt [Mon, 3 Jan 2022 16:32:07 +0000 (11:32 -0500)]
Fix some more
Daniel Arndt [Mon, 3 Jan 2022 14:31:28 +0000 (09:31 -0500)]
Add clang-tidy check
Daniel Arndt [Tue, 11 Jan 2022 16:32:51 +0000 (11:32 -0500)]
Merge pull request #13214 from bangerth/nbx
Daniel Arndt [Tue, 11 Jan 2022 16:15:39 +0000 (11:15 -0500)]
Merge pull request #13215 from bangerth/nbx-3
David Wells [Tue, 11 Jan 2022 13:28:09 +0000 (08:28 -0500)]
Merge pull request #13217 from kronbichler/adjust_variable_name
Fix some spurious variable names
Marc Fehling [Tue, 11 Jan 2022 13:07:44 +0000 (06:07 -0700)]
Merge pull request #13028 from marcfehling/tee
Generator for `pipe_junction` geometries.
Marc Fehling [Wed, 1 Dec 2021 00:07:28 +0000 (17:07 -0700)]
Generator for `pipe_junction` geometries.
Martin Kronbichler [Tue, 11 Jan 2022 09:29:46 +0000 (10:29 +0100)]
Fix some spurious variable names
Martin Kronbichler [Tue, 11 Jan 2022 08:57:49 +0000 (09:57 +0100)]
Merge pull request #13048 from peterrum/gc_FEEvaluationHangingNodes
Use FEEvaluationHangingNodes in MGTwoLevelTransfer
Wolfgang Bangerth [Tue, 11 Jan 2022 07:23:26 +0000 (00:23 -0700)]
Do not reuse an MPI_Status object.
Wolfgang Bangerth [Tue, 11 Jan 2022 06:35:28 +0000 (23:35 -0700)]
Sort the member functions of ConsensusAlgorithms::NBX.
In particular, sort them in the order in which they are called in the NBX::run() function.
Peter Munch [Wed, 8 Dec 2021 21:22:03 +0000 (22:22 +0100)]
Use FEEvaluationHangingNodes in MGTwoLevelTransfer
Wolfgang Bangerth [Mon, 10 Jan 2022 19:14:30 +0000 (12:14 -0700)]
Merge pull request #13211 from drwells/fix-mass-lumping
Fix a check for zero entries in the lumped mass matrix.
David Wells [Mon, 10 Jan 2022 14:58:59 +0000 (09:58 -0500)]
Fix a check for zero entries in the lumped mass matrix.
Wolfgang Bangerth [Mon, 10 Jan 2022 13:03:50 +0000 (06:03 -0700)]
Merge pull request #13210 from marcfehling/fix-p4est-changelog
Added changelog for p4est installation script.
Marc Fehling [Mon, 10 Jan 2022 12:36:08 +0000 (13:36 +0100)]
Added changelog for p4est installation script.
Matthias Maier [Mon, 10 Jan 2022 10:26:22 +0000 (04:26 -0600)]
Merge pull request #13196 from bangerth/patch-4
Add to the documentation of SymmetricTensor::operator*.
Matthias Maier [Mon, 10 Jan 2022 10:24:50 +0000 (04:24 -0600)]
Merge pull request #13201 from bangerth/patch-2
Do not output the partitioner when pretty-printing Vector objects.
Matthias Maier [Mon, 10 Jan 2022 10:24:16 +0000 (04:24 -0600)]
Merge pull request #13207 from bangerth/patch-7
Cleanups in FETools::extrapolate()
Matthias Maier [Mon, 10 Jan 2022 09:57:48 +0000 (03:57 -0600)]
Merge pull request #13159 from peterrum/PreconditionRelaxation_refactoring_extansion
Extend PreconditionRelaxation
Wolfgang Bangerth [Mon, 10 Jan 2022 01:43:53 +0000 (18:43 -0700)]
Merge pull request #13192 from drwells/fix-manifold-id-simplex-copy
Fix manifold copying on lines when converting hexes to tets.
Timo Heister [Sun, 9 Jan 2022 21:01:24 +0000 (16:01 -0500)]
Merge pull request #13206 from bangerth/fix-extrapolate
Fix a bug: Don't reuse buffers for MPI_Isend.
Wolfgang Bangerth [Sun, 9 Jan 2022 20:29:27 +0000 (13:29 -0700)]
Avoid an unused-variable warning.
Wolfgang Bangerth [Sun, 9 Jan 2022 17:45:52 +0000 (10:45 -0700)]
Let the CellData::pack() function return its data.
Wolfgang Bangerth [Sun, 9 Jan 2022 17:35:47 +0000 (10:35 -0700)]
Make CellData look like our usual style.
Wolfgang Bangerth [Sun, 9 Jan 2022 17:19:55 +0000 (10:19 -0700)]
Add some assertions.
Wolfgang Bangerth [Sun, 9 Jan 2022 17:15:30 +0000 (10:15 -0700)]
Modernize many loops using range-based for.
Wolfgang Bangerth [Sun, 9 Jan 2022 17:06:31 +0000 (10:06 -0700)]
Simplify the WorkPackage struct.
Wolfgang Bangerth [Sun, 9 Jan 2022 18:03:16 +0000 (11:03 -0700)]
Fix a bug: Don't reuse buffers for MPI_Isend.
The intention of the code was clearly to cycle through the existing buffers,
but we never incremented the iterator, and so accidentally reused a send buffer over and
over. This works only because MPI_Isend is specified in the MPI standard as
'standard mode', which means that it may or may not copy the data to be sent
into an MPI-internal buffer before the function returns. Apparently it does in all
implementations we use, but we shouldn't rely on this.
David Wells [Fri, 7 Jan 2022 19:03:47 +0000 (14:03 -0500)]
Add another test that shows some vertex displacement.
David Wells [Fri, 7 Jan 2022 18:50:33 +0000 (13:50 -0500)]
Fix a bug where line manifold ids were not copied correctly.
When we convert hexes to tets, we create three types of lines:
1. lines inside the hex
2. lines on the faces of the hex
3. lines equal to the hex's lines
In the last case we need to copy the manifold and boundary data from the
preexisting lines directly, since they may not be equal to the ids assigned to
the adjacent face.
Jean-Paul Pelteret [Sun, 9 Jan 2022 13:17:37 +0000 (14:17 +0100)]
Merge pull request #13203 from bangerth/43-c
Convert manual references into bibtex ones in step-43.
Jean-Paul Pelteret [Sun, 9 Jan 2022 07:21:21 +0000 (08:21 +0100)]
Merge pull request #13197 from bangerth/patch-5
Document the meaning of jump_in/average_of_* in FEInterfaceValues.
Jean-Paul Pelteret [Sun, 9 Jan 2022 07:20:07 +0000 (08:20 +0100)]
Merge pull request #13199 from bangerth/patch-1
Minor edits to the documentation of SparsityPattern.
Jean-Paul Pelteret [Sun, 9 Jan 2022 07:19:55 +0000 (08:19 +0100)]
Merge pull request #13200 from bangerth/patch-3
Updates to step-10
Jean-Paul Pelteret [Sun, 9 Jan 2022 07:19:41 +0000 (08:19 +0100)]
Merge pull request #13204 from simonsticko/remove_tripple_slash_in_source
Remove occurances of /// in source/
Wolfgang Bangerth [Fri, 7 Jan 2022 18:38:00 +0000 (11:38 -0700)]
Document the meaning of jump_in/average_of_* in FEInterfaceValues.
Simon Sticko [Sat, 8 Jan 2022 20:41:51 +0000 (21:41 +0100)]
Remove occurances of /// in source/
To avoid them from showing up in the documentation.
Wolfgang Bangerth [Fri, 7 Jan 2022 19:52:12 +0000 (12:52 -0700)]
Mention Kahan summation and discuss 'double' vs 'long double'.
Wolfgang Bangerth [Fri, 7 Jan 2022 19:28:55 +0000 (12:28 -0700)]
Replace use of 'long double' by 'double' in step-10.
Wolfgang Bangerth [Fri, 7 Jan 2022 19:19:39 +0000 (12:19 -0700)]
Update step-10 output to current values.
Wolfgang Bangerth [Fri, 7 Jan 2022 22:05:43 +0000 (15:05 -0700)]
Minor edits to the documentation of SparsityPattern.
Wolfgang Bangerth [Fri, 7 Jan 2022 10:33:21 +0000 (03:33 -0700)]
Convert manual references into bibtex ones in step-43.
David Wells [Sat, 8 Jan 2022 16:04:05 +0000 (11:04 -0500)]
Merge pull request #13184 from bangerth/sparsity
Fix serialization of empty SparsityPattern objects
David Wells [Sat, 8 Jan 2022 16:00:57 +0000 (11:00 -0500)]
Merge pull request #13198 from bangerth/patch-6
Be more thoughtful about parallel grain sizes in UMFPACK interfaces.
Peter Munch [Fri, 31 Dec 2021 15:30:21 +0000 (16:30 +0100)]
Extand PreconditionRelaxation
Wolfgang Bangerth [Sat, 8 Jan 2022 04:40:41 +0000 (21:40 -0700)]
Merge pull request #13195 from kronbichler/step-67-movie
Add movie to step-67 tutorial program
Wolfgang Bangerth [Fri, 7 Jan 2022 07:21:26 +0000 (00:21 -0700)]
Add a changelog entry.
Wolfgang Bangerth [Fri, 7 Jan 2022 07:19:54 +0000 (00:19 -0700)]
Add a test.
Wolfgang Bangerth [Fri, 7 Jan 2022 21:37:52 +0000 (14:37 -0700)]
Do not output the partitioner when pretty-printing Vector objects.
Wolfgang Bangerth [Fri, 7 Jan 2022 12:44:13 +0000 (05:44 -0700)]
Be more thoughtful about parallel grain sizes in UMFPACK interfaces.
Wolfgang Bangerth [Fri, 7 Jan 2022 18:51:44 +0000 (11:51 -0700)]
Add to the documentation of SymmetricTensor::operator*.
Martin Kronbichler [Fri, 7 Jan 2022 20:28:38 +0000 (21:28 +0100)]
Merge pull request #13188 from bangerth/43-b
Document a part of step-43 that confused @tjhei.
Martin Kronbichler [Fri, 7 Jan 2022 20:25:41 +0000 (21:25 +0100)]
Add movie to step-67 tutorial program
David Wells [Fri, 7 Jan 2022 20:09:05 +0000 (15:09 -0500)]
Merge pull request #13185 from bangerth/inst
Provide some overloads and instantiations
David Wells [Fri, 7 Jan 2022 18:42:55 +0000 (13:42 -0500)]
Modify a test to show a bug.
Peter Munch [Fri, 7 Jan 2022 17:30:28 +0000 (18:30 +0100)]
Merge pull request #13186 from bangerth/43
Use better variable names in step-43.
Peter Munch [Fri, 7 Jan 2022 17:29:51 +0000 (18:29 +0100)]
Merge pull request #13187 from peterrum/rpe_marked_vertices_false
Fix RemotePointEvalution::marked_vertices for vectors with only false
Peter Munch [Fri, 7 Jan 2022 17:29:40 +0000 (18:29 +0100)]
Merge pull request #13191 from bangerth/21
Simplify initialization of block systems in step-21.
Peter Munch [Fri, 7 Jan 2022 17:29:18 +0000 (18:29 +0100)]
Merge pull request #13190 from bangerth/20
Simplify initialization of block systems in step-20
Peter Munch [Fri, 7 Jan 2022 17:28:52 +0000 (18:28 +0100)]
Merge pull request #13189 from bangerth/52
Fix symbol confusion in step-52.
Wolfgang Bangerth [Fri, 7 Jan 2022 11:03:27 +0000 (04:03 -0700)]
Simplify initialization of block systems in step-21.
Wolfgang Bangerth [Fri, 7 Jan 2022 10:53:46 +0000 (03:53 -0700)]
Simplify initialization of block systems.
Wolfgang Bangerth [Fri, 7 Jan 2022 10:41:31 +0000 (03:41 -0700)]
Fix symbol confusion in step-52.
Peter Munch [Fri, 7 Jan 2022 10:00:11 +0000 (11:00 +0100)]
Fix RemotePointEvalution::marked_vertices for vectors with only false
Wolfgang Bangerth [Fri, 7 Jan 2022 10:06:52 +0000 (03:06 -0700)]
Document a part of step-43 that confused @tjhei.
Wolfgang Bangerth [Fri, 7 Jan 2022 10:06:21 +0000 (03:06 -0700)]
Add a changelog entry.
Wolfgang Bangerth [Fri, 7 Jan 2022 09:49:22 +0000 (02:49 -0700)]
Use better variable names in step-43.
Wolfgang Bangerth [Tue, 4 Jan 2022 20:42:00 +0000 (13:42 -0700)]
Also instantiate TriaAccessor<0,1,spacedim>.
Wolfgang Bangerth [Wed, 29 Dec 2021 16:36:58 +0000 (09:36 -0700)]
Instantiate TriaAccessor<0,1,spacedim>.
Wolfgang Bangerth [Wed, 29 Dec 2021 16:36:41 +0000 (09:36 -0700)]
Provide an overload for TriaAccess<0,1,spacedim>::copy_from().
Wolfgang Bangerth [Fri, 7 Jan 2022 07:19:41 +0000 (00:19 -0700)]
Fix serialization of possibly empty SparsityPattern objects.
Wolfgang Bangerth [Fri, 7 Jan 2022 07:19:23 +0000 (00:19 -0700)]
Fix comparison of objects.
Matthias Maier [Fri, 7 Jan 2022 06:40:04 +0000 (00:40 -0600)]
Merge pull request #13183 from bangerth/simplify
Simplify some code.
Matthias Maier [Fri, 7 Jan 2022 06:39:54 +0000 (00:39 -0600)]
Merge pull request #13182 from drwells/add-index-checks
Add some more index range checks.
Matthias Maier [Fri, 7 Jan 2022 06:39:41 +0000 (00:39 -0600)]
Merge pull request #13178 from peterrum/rpe_marked_vertices
RemotePointEvalution: pass marked_vertices
Wolfgang Bangerth [Tue, 4 Jan 2022 20:31:59 +0000 (13:31 -0700)]
Simplify some code.
Wolfgang Bangerth [Thu, 6 Jan 2022 21:41:38 +0000 (14:41 -0700)]
Merge pull request #13177 from peterrum/point_values_fix_types_2
FEPointEvaluation: fix types for multiple components
Wolfgang Bangerth [Thu, 6 Jan 2022 21:36:34 +0000 (14:36 -0700)]
Merge pull request #13176 from tamiko/add_changelog
OneAPI compatibility: fix most of the API incompatibilities
David Wells [Thu, 6 Jan 2022 20:34:35 +0000 (15:34 -0500)]
Merge pull request #13147 from bangerth/mpi
Add a bit of documentation to MPI::compute_point_to_point_communication_pattern()
David Wells [Thu, 6 Jan 2022 20:30:30 +0000 (15:30 -0500)]
Add some more index range checks.
We presently segmentation fault with #13179 (the draft intel oneAPI patch) here
since ptr and data are both empty.
Jean-Paul Pelteret [Thu, 6 Jan 2022 18:24:54 +0000 (19:24 +0100)]
Merge pull request #13174 from bangerth/44
Update step-44 documentation.
Peter Munch [Thu, 6 Jan 2022 12:47:27 +0000 (13:47 +0100)]
RemotePointEvalution: pass marked_vertices
David Wells [Thu, 6 Jan 2022 16:16:11 +0000 (11:16 -0500)]
Merge pull request #13168 from bangerth/fe-face
Fix a bug in FE_Face.
Matthias Maier [Thu, 6 Jan 2022 14:15:23 +0000 (08:15 -0600)]
provide hash operator to tbb::concurrent_unordered_map
Matthias Maier [Thu, 6 Jan 2022 13:13:41 +0000 (07:13 -0600)]
port workstream.h to oneAPI
Matthias Maier [Thu, 6 Jan 2022 12:36:58 +0000 (06:36 -0600)]
port multithread_info.cc to oneAPI
Daniel Arndt [Thu, 6 Jan 2022 14:25:59 +0000 (09:25 -0500)]
Merge pull request #13175 from bangerth/changelog
Peter Munch [Thu, 6 Jan 2022 12:45:28 +0000 (13:45 +0100)]
FEPointEvaluation: fix types for multiple components
Wolfgang Bangerth [Thu, 6 Jan 2022 11:54:04 +0000 (04:54 -0700)]
Add a changelog entry.
Matthias Maier [Thu, 6 Jan 2022 11:51:29 +0000 (05:51 -0600)]
Merge pull request #13152 from peterrum/PreconditionRelaxation_refactoring
Refactor PreconditionRelaxation
Matthias Maier [Thu, 6 Jan 2022 11:50:27 +0000 (05:50 -0600)]
Merge pull request #13172 from bangerth/length
Use std::string::size() instead of std::string::length().
Wolfgang Bangerth [Thu, 6 Jan 2022 11:49:17 +0000 (04:49 -0700)]
Update step-44 documentation.
Wolfgang Bangerth [Thu, 6 Jan 2022 11:47:44 +0000 (04:47 -0700)]
Update test output.
Wolfgang Bangerth [Thu, 6 Jan 2022 11:03:58 +0000 (04:03 -0700)]
Merge pull request #13173 from peterrum/point_values_fix_types
VectorTools::point_values(): fix types
Wolfgang Bangerth [Thu, 6 Jan 2022 10:50:35 +0000 (03:50 -0700)]
Merge pull request #13170 from jppelteret/filtered_iterator_test_01
Add some more tests for iterator filters
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams
Typeset in
Trocchi and Trocchi Bold Sans Serif.