]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
6 years agoFixed comments by Denis
Luca Heltai [Thu, 26 Oct 2017 12:48:26 +0000 (14:48 +0200)]
Fixed comments by Denis

6 years agoNew tuple pattern.
Luca Heltai [Thu, 26 Oct 2017 10:10:35 +0000 (12:10 +0200)]
New tuple pattern.

6 years agoMerge pull request #5310 from nicola-giuliani/telles_bug
Daniel Arndt [Thu, 26 Oct 2017 07:12:44 +0000 (09:12 +0200)]
Merge pull request #5310 from nicola-giuliani/telles_bug

typo in qtelles

6 years agoMerge pull request #5315 from gassmoeller/fix_vector_tools_interpolate
Daniel Arndt [Thu, 26 Oct 2017 06:57:38 +0000 (08:57 +0200)]
Merge pull request #5315 from gassmoeller/fix_vector_tools_interpolate

Fix VectorTools::interpolate for parallel computations

6 years agoMerge pull request #5325 from bangerth/fix-exceptions
Daniel Arndt [Wed, 25 Oct 2017 23:42:52 +0000 (01:42 +0200)]
Merge pull request #5325 from bangerth/fix-exceptions

Add a check when comparing iterators.

6 years agoMerge pull request #5328 from tjhei/exc_messages
Bruno Turcksin [Wed, 25 Oct 2017 20:36:45 +0000 (16:36 -0400)]
Merge pull request #5328 from tjhei/exc_messages

add exception messages

6 years agoFix VectorTools::interpolate 5315/head
Rene Gassmoeller [Tue, 24 Oct 2017 17:52:20 +0000 (11:52 -0600)]
Fix VectorTools::interpolate

6 years agoMerge pull request #5233 from bangerth/function-template-arg
Martin Kronbichler [Wed, 25 Oct 2017 18:47:41 +0000 (20:47 +0200)]
Merge pull request #5233 from bangerth/function-template-arg

Rename the scalar template type of Function and derived classes.

6 years agoMerge pull request #5326 from tamiko/fix_numdiff_check
Timo Heister [Wed, 25 Oct 2017 17:12:22 +0000 (13:12 -0400)]
Merge pull request #5326 from tamiko/fix_numdiff_check

Avoid numdiff check race condition in test

6 years agoadd exception messages 5328/head
Timo Heister [Wed, 25 Oct 2017 17:01:34 +0000 (13:01 -0400)]
add exception messages

towards #610

6 years agoMerge pull request #5327 from masterleinad/fix_typo_cmake_doc
Wolfgang Bangerth [Wed, 25 Oct 2017 16:58:35 +0000 (10:58 -0600)]
Merge pull request #5327 from masterleinad/fix_typo_cmake_doc

Fix typo in description of CMake setup for packages

6 years agoFix typo 5327/head
Daniel Arndt [Wed, 25 Oct 2017 16:56:03 +0000 (18:56 +0200)]
Fix typo

6 years agoAvoid numdiff check race condition in test 5326/head
Matthias Maier [Wed, 25 Oct 2017 15:43:43 +0000 (10:43 -0500)]
Avoid numdiff check race condition in test

Use randomly generated file names for collision free (concurrent) checks
for numdiff support.

Otherwise, if a test subproject is configured concurrently (which might
happen if ctest accidentally triggers a reconfigure due to changed files
in the main project), the following error might occur:
    "The detected numdiff executable was not able to pass a simple relative
    tolerance test."

6 years agoRevert "Avoid numdiff check race condition in test"
Matthias Maier [Wed, 25 Oct 2017 15:40:27 +0000 (10:40 -0500)]
Revert "Avoid numdiff check race condition in test"

This reverts commit 41d4678230e24635583eb892fdf473c5d6847a05.

6 years agoMerge pull request #5323 from tjhei/test_numdiff_race_condition
Wolfgang Bangerth [Wed, 25 Oct 2017 15:30:32 +0000 (09:30 -0600)]
Merge pull request #5323 from tjhei/test_numdiff_race_condition

Avoid numdiff check race condition in test

6 years agoMerge pull request #5312 from jppelteret/tests-sacado
Wolfgang Bangerth [Wed, 25 Oct 2017 15:13:00 +0000 (09:13 -0600)]
Merge pull request #5312 from jppelteret/tests-sacado

Add some modified Sacado::Fad::DFad examples to the testsuite

6 years agoMerge pull request #5319 from davydden/lapack-add
Wolfgang Bangerth [Wed, 25 Oct 2017 15:11:27 +0000 (09:11 -0600)]
Merge pull request #5319 from davydden/lapack-add

add LAPACKFullMatrix::add()

6 years agoMerge pull request #5324 from tjhei/zlib_test_output
Wolfgang Bangerth [Wed, 25 Oct 2017 15:02:36 +0000 (09:02 -0600)]
Merge pull request #5324 from tjhei/zlib_test_output

fix zlib tests

6 years agoAdd a check when comparing iterators. 5325/head
Wolfgang Bangerth [Wed, 25 Oct 2017 00:05:10 +0000 (18:05 -0600)]
Add a check when comparing iterators.

Right now, comparing iterators only compares their level and index, but surprisingly
not the triangulation pointers. There is an assertion higher up that makes sure
that if the triangulation pointers of both objects are both non-nullptr, that they
are the same, but it is conceivable that one of the objects in invalid and the
other has a valid pointer. Internally, if that is the case, we have the invariant
that for iterators for which the triangulation pointer is nullptr, that the
level and index values are also invalid, and so nothing bad can happen (TM) with
the current code.

But it still seems prudent to also compare triangulation pointers, even if we know
that if one only of the pointers is nullptr, then the other comparisons for equality
must necessarily also fail because of the invariant -- we should just err on the
side of safety.

I've thought whether the pointers should be compared first or last. I put it first
because I think that the common case is to compare 'cell != endc', and in that
case one has a valid pointer and the other does not, so the first check will
already fail.

6 years agofix zlib tests 5324/head
Timo Heister [Wed, 25 Oct 2017 14:27:53 +0000 (10:27 -0400)]
fix zlib tests

6 years agoAvoid numdiff check race condition in test 5323/head
Timo Heister [Wed, 25 Oct 2017 14:07:22 +0000 (10:07 -0400)]
Avoid numdiff check race condition in test

Do not remove the test files to avoid a race condition if
cmake decides to rerun in a concurrent situation. Otherwise this would
trigger the following error:
"The detected numdiff executable was not able to pass a simple relative
tolerance test."

6 years agoadded test for singular integration 5310/head
Nicola Giuliani [Wed, 25 Oct 2017 13:15:01 +0000 (15:15 +0200)]
added test for singular integration

6 years agotypo in qtelles
Nicola Giuliani [Tue, 24 Oct 2017 09:35:27 +0000 (11:35 +0200)]
typo in qtelles

6 years agoadd LAPACKFullMatrix::add() 5319/head
Denis Davydov [Wed, 25 Oct 2017 11:32:02 +0000 (13:32 +0200)]
add LAPACKFullMatrix::add()

6 years agoMerge pull request #5316 from bangerth/fix-exceptions
Daniel Arndt [Wed, 25 Oct 2017 10:06:55 +0000 (12:06 +0200)]
Merge pull request #5316 from bangerth/fix-exceptions

Avoid exceptions without message.

6 years agoMerge pull request #5308 from bangerth/change-signature
Daniel Arndt [Wed, 25 Oct 2017 07:12:14 +0000 (09:12 +0200)]
Merge pull request #5308 from bangerth/change-signature

Change argument of DoFRenumbering::downstream() to Tensor<1,dim>.

6 years agoAdd some modified Sacado::Fad::DFad examples to the testsuite 5312/head
Jean-Paul Pelteret [Tue, 24 Oct 2017 15:06:34 +0000 (17:06 +0200)]
Add some modified Sacado::Fad::DFad examples to the testsuite

6 years agoAdjust tests. 5308/head
Wolfgang Bangerth [Tue, 24 Oct 2017 13:54:39 +0000 (07:54 -0600)]
Adjust tests.

6 years agoAvoid exceptions without message. 5316/head
Wolfgang Bangerth [Tue, 24 Oct 2017 00:21:04 +0000 (18:21 -0600)]
Avoid exceptions without message.

6 years agoMerge pull request #5267 from davydden/unit_tests_docu
Timo Heister [Tue, 24 Oct 2017 19:04:34 +0000 (15:04 -0400)]
Merge pull request #5267 from davydden/unit_tests_docu

extend example of user projects testsuite to contain header files

6 years agoMerge pull request #5311 from kronbichler/avoid_vector_view
Denis Davydov [Tue, 24 Oct 2017 18:57:15 +0000 (20:57 +0200)]
Merge pull request #5311 from kronbichler/avoid_vector_view

Replace use of VectorView in library

6 years agomention how to include the main header 5267/head
Denis Davydov [Tue, 24 Oct 2017 18:33:40 +0000 (20:33 +0200)]
mention how to include the main header

6 years agoMerge pull request #5313 from gassmoeller/fix_mapping_cartesian
Martin Kronbichler [Tue, 24 Oct 2017 18:22:00 +0000 (20:22 +0200)]
Merge pull request #5313 from gassmoeller/fix_mapping_cartesian

Fix mapping cartesian update inverse jacobian

6 years agoFix mapping cartesian 5313/head
Rene Gassmoeller [Tue, 24 Oct 2017 15:40:05 +0000 (09:40 -0600)]
Fix mapping cartesian

6 years agoAdd changelog. 5311/head
Martin Kronbichler [Tue, 24 Oct 2017 10:42:19 +0000 (12:42 +0200)]
Add changelog.

6 years agoMerge pull request #5150 from gassmoeller/add_distributed_refinement_signal
Daniel Arndt [Tue, 24 Oct 2017 15:21:45 +0000 (17:21 +0200)]
Merge pull request #5150 from gassmoeller/add_distributed_refinement_signal

Add distributed refinement/coarsening/serialization signals

6 years agoMatch instantiation to declaration.
Wolfgang Bangerth [Tue, 24 Oct 2017 13:54:31 +0000 (07:54 -0600)]
Match instantiation to declaration.

6 years agoAdd changelog.
Wolfgang Bangerth [Tue, 24 Oct 2017 04:04:04 +0000 (22:04 -0600)]
Add changelog.

6 years agoChange argument of DoFRenumbering::downstream() to Tensor<1,dim>.
Wolfgang Bangerth [Tue, 24 Oct 2017 04:03:57 +0000 (22:03 -0600)]
Change argument of DoFRenumbering::downstream() to Tensor<1,dim>.

That's because this kind of argument indicates a *direction*, not a point, and
for the former Tensor<1,dim> is the correct data type.

6 years agoAvoid VectorView in favor of copy_locally_owned_data_from.
Martin Kronbichler [Tue, 24 Oct 2017 10:38:27 +0000 (12:38 +0200)]
Avoid VectorView in favor of copy_locally_owned_data_from.

Optimize copy_to/from_mg for another frequent case.

6 years agoUse LA::d::Vector::copy_locally_owned_data_from rather than operator=
Martin Kronbichler [Tue, 24 Oct 2017 10:37:21 +0000 (12:37 +0200)]
Use LA::d::Vector::copy_locally_owned_data_from rather than operator=

6 years agoAvoid VectorView in matrix-free operators.
Martin Kronbichler [Tue, 24 Oct 2017 10:36:25 +0000 (12:36 +0200)]
Avoid VectorView in matrix-free operators.

6 years agoIntroduce LA::d::Vector::copy_locally_owned_data_from.
Martin Kronbichler [Tue, 24 Oct 2017 10:35:36 +0000 (12:35 +0200)]
Introduce LA::d::Vector::copy_locally_owned_data_from.

6 years agoMerge pull request #5302 from GivAlz/test_compute_pt_loc
Martin Kronbichler [Tue, 24 Oct 2017 10:13:53 +0000 (12:13 +0200)]
Merge pull request #5302 from GivAlz/test_compute_pt_loc

Add test for Functions::FEFieldFunction::compute_point_locations

6 years agoAdded test for Functions::FEFieldFunction::compute_point_locations 5302/head
Giovanni Alzetta [Mon, 23 Oct 2017 13:58:31 +0000 (13:58 +0000)]
Added test for Functions::FEFieldFunction::compute_point_locations

6 years agoMerge pull request #5309 from bangerth/minor-cleanups
Martin Kronbichler [Tue, 24 Oct 2017 10:12:58 +0000 (12:12 +0200)]
Merge pull request #5309 from bangerth/minor-cleanups

Minor cleanups and doc updates.

6 years agoAdd a note to the documentation. 5309/head
Wolfgang Bangerth [Tue, 24 Oct 2017 04:24:14 +0000 (22:24 -0600)]
Add a note to the documentation.

6 years agoUse C++11-style initialization of a std::map.
Wolfgang Bangerth [Tue, 24 Oct 2017 04:21:43 +0000 (22:21 -0600)]
Use C++11-style initialization of a std::map.

6 years agoReindent a line.
Wolfgang Bangerth [Tue, 24 Oct 2017 04:19:13 +0000 (22:19 -0600)]
Reindent a line.

6 years agoRemove an unnecessary empty line.
Wolfgang Bangerth [Tue, 24 Oct 2017 04:18:59 +0000 (22:18 -0600)]
Remove an unnecessary empty line.

6 years agoMerge pull request #5307 from Rombur/cuda_fix
Wolfgang Bangerth [Tue, 24 Oct 2017 03:44:29 +0000 (21:44 -0600)]
Merge pull request #5307 from Rombur/cuda_fix

Add missing include in cuda_vector.h

6 years agoAdd missing include in cuda_vector.h 5307/head
Bruno Turcksin [Tue, 24 Oct 2017 01:05:26 +0000 (21:05 -0400)]
Add missing include in cuda_vector.h

6 years agoMerge pull request #5303 from kronbichler/fix_partitioner_import_ghosts
Daniel Arndt [Mon, 23 Oct 2017 23:14:47 +0000 (01:14 +0200)]
Merge pull request #5303 from kronbichler/fix_partitioner_import_ghosts

Make sure to actually zero the ghost entries in partitioner import call.

6 years agoMerge pull request #5306 from bangerth/cleanup
Daniel Arndt [Mon, 23 Oct 2017 23:11:22 +0000 (01:11 +0200)]
Merge pull request #5306 from bangerth/cleanup

Clean up code in MGLevelGlobalTransfer::fill_and_communicate_copy_indices.

6 years agoMerge pull request #5304 from bangerth/rename-member
Daniel Arndt [Mon, 23 Oct 2017 23:09:17 +0000 (01:09 +0200)]
Merge pull request #5304 from bangerth/rename-member

Make Vector::values a std::unique_ptr.

6 years agoClean up code in MGLevelGlobalTransfer::fill_and_communicate_copy_indices. 5306/head
Wolfgang Bangerth [Mon, 23 Oct 2017 19:03:47 +0000 (13:03 -0600)]
Clean up code in MGLevelGlobalTransfer::fill_and_communicate_copy_indices.

6 years agoMake Vector::values a std::unique_ptr. 5304/head
Wolfgang Bangerth [Fri, 20 Oct 2017 22:32:01 +0000 (16:32 -0600)]
Make Vector::values a std::unique_ptr.

6 years agoMerge pull request #5305 from tjhei/readme_qt_styles
Denis Davydov [Mon, 23 Oct 2017 14:45:07 +0000 (16:45 +0200)]
Merge pull request #5305 from tjhei/readme_qt_styles

add note on how to install qtcreator style files

6 years agoadd note on how to install qtcreator style files 5305/head
Timo Heister [Mon, 23 Oct 2017 14:42:49 +0000 (10:42 -0400)]
add note on how to install qtcreator style files

6 years agoMake sure to actually zero the ghost entries in partitioner import call. 5303/head
Martin Kronbichler [Mon, 23 Oct 2017 13:39:15 +0000 (15:39 +0200)]
Make sure to actually zero the ghost entries in partitioner import call.

6 years agoMerge pull request #5275 from bangerth/doc-update-2
Denis Davydov [Mon, 23 Oct 2017 05:42:14 +0000 (07:42 +0200)]
Merge pull request #5275 from bangerth/doc-update-2

Update some discussion in DataOutFilter.

6 years agoMerge pull request #5288 from bangerth/remove-includes
David Wells [Mon, 23 Oct 2017 02:53:54 +0000 (22:53 -0400)]
Merge pull request #5288 from bangerth/remove-includes

Remove unnecessary #include statements.

6 years agoRemove unnecessary #include statements. 5288/head
Wolfgang Bangerth [Fri, 20 Oct 2017 22:07:42 +0000 (16:07 -0600)]
Remove unnecessary #include statements.

These are all in files that don't actually make use of the classes so #included.

6 years agoMerge pull request #5291 from drwells/vector-operation-header
Wolfgang Bangerth [Mon, 23 Oct 2017 00:19:32 +0000 (18:19 -0600)]
Merge pull request #5291 from drwells/vector-operation-header

Move VectorOperation into its own header.

6 years agoMerge pull request #5296 from masterleinad/use_emplace_back
Wolfgang Bangerth [Mon, 23 Oct 2017 00:18:54 +0000 (18:18 -0600)]
Merge pull request #5296 from masterleinad/use_emplace_back

Prefer using emplace_back

6 years agoMerge pull request #5300 from masterleinad/fix_unused
Wolfgang Bangerth [Sun, 22 Oct 2017 23:27:27 +0000 (17:27 -0600)]
Merge pull request #5300 from masterleinad/fix_unused

Fix unused variables, functions and parameters (with clang)

6 years agoMove VectorOperation into its own header. 5291/head
David Wells [Sat, 21 Oct 2017 04:28:20 +0000 (00:28 -0400)]
Move VectorOperation into its own header.

6 years agoMerge pull request #5301 from davydden/cylind_manifold_assert
Timo Heister [Sun, 22 Oct 2017 19:13:00 +0000 (15:13 -0400)]
Merge pull request #5301 from davydden/cylind_manifold_assert

change static_assert into Assert for CylindricalManifold to make it e…

6 years agoMerge pull request #5287 from bangerth/doc-update
Timo Heister [Sun, 22 Oct 2017 19:09:47 +0000 (15:09 -0400)]
Merge pull request #5287 from bangerth/doc-update

Update a formula.

6 years agochange static_assert into Assert for CylindricalManifold to make it easier writing... 5301/head
Denis Davydov [Sun, 22 Oct 2017 15:37:28 +0000 (17:37 +0200)]
change static_assert into Assert for CylindricalManifold to make it easier writing dimension independent code

6 years agoMerge pull request #5299 from davydden/mapping_test_bugfix
Daniel Arndt [Sun, 22 Oct 2017 14:43:33 +0000 (16:43 +0200)]
Merge pull request #5299 from davydden/mapping_test_bugfix

fix wrong operator in mapping_q_eulerian_09

6 years agoCircumvent declaring an unused variable 5300/head
Daniel Arndt [Sun, 22 Oct 2017 13:16:38 +0000 (15:16 +0200)]
Circumvent declaring an unused variable

6 years agoDetect unused variables and unused functions with clang
Daniel Arndt [Sun, 22 Oct 2017 13:12:30 +0000 (15:12 +0200)]
Detect unused variables and unused functions with clang

6 years agoRemove unused named parameter in bundled boost
Daniel Arndt [Sun, 22 Oct 2017 13:06:09 +0000 (15:06 +0200)]
Remove unused named parameter in bundled boost

6 years agoMerge pull request #5283 from tjhei/dof_remove_custom_exc
Daniel Arndt [Sat, 21 Oct 2017 22:07:09 +0000 (00:07 +0200)]
Merge pull request #5283 from tjhei/dof_remove_custom_exc

remove hp::DoFHandler::ExcInvalidTriangulation

6 years agoremove hp::DoFHandler::ExcInvalidTriangulation 5283/head
Timo Heister [Fri, 20 Oct 2017 18:57:22 +0000 (14:57 -0400)]
remove hp::DoFHandler::ExcInvalidTriangulation

for #610

6 years agoMerge pull request #5295 from masterleinad/use_bool_literals
Martin Kronbichler [Sat, 21 Oct 2017 18:12:09 +0000 (20:12 +0200)]
Merge pull request #5295 from masterleinad/use_bool_literals

Use bool literals instead of integer values

6 years agoMerge pull request #5297 from masterleinad/use_nullptr
Martin Kronbichler [Sat, 21 Oct 2017 18:11:18 +0000 (20:11 +0200)]
Merge pull request #5297 from masterleinad/use_nullptr

Prefer using nullptr over 0 or NULL

6 years agofix wrong operator in mapping_q_eulerian_09 5299/head
Denis Davydov [Sat, 21 Oct 2017 17:02:42 +0000 (19:02 +0200)]
fix wrong operator in mapping_q_eulerian_09

6 years agoMerge pull request #5205 from tjhei/child_fe
Daniel Arndt [Sat, 21 Oct 2017 14:40:01 +0000 (16:40 +0200)]
Merge pull request #5205 from tjhei/child_fe

add FiniteElement::get_sub_fe

6 years agoPrefer nullptr 5297/head
Daniel Arndt [Sat, 21 Oct 2017 14:25:36 +0000 (16:25 +0200)]
Prefer nullptr

6 years agoPrefer using emplace_back 5296/head
Daniel Arndt [Sat, 21 Oct 2017 14:15:45 +0000 (16:15 +0200)]
Prefer using emplace_back

6 years agoUse bool literals 5295/head
Daniel Arndt [Sat, 21 Oct 2017 13:56:12 +0000 (15:56 +0200)]
Use bool literals

6 years agoMerge pull request #5273 from bangerth/use-unique-ptrs
Martin Kronbichler [Sat, 21 Oct 2017 13:44:18 +0000 (15:44 +0200)]
Merge pull request #5273 from bangerth/use-unique-ptrs

Use std::unique_ptr for parallel::Vector::val

6 years agoMerge pull request #5292 from masterleinad/fix_perf_1
Daniel Arndt [Sat, 21 Oct 2017 13:38:41 +0000 (15:38 +0200)]
Merge pull request #5292 from masterleinad/fix_perf_1

Take IndexSet by const&

6 years agoMerge pull request #5290 from masterleinad/fix_perf_4
David Wells [Sat, 21 Oct 2017 12:32:44 +0000 (08:32 -0400)]
Merge pull request #5290 from masterleinad/fix_perf_4

Smaller fixes for ParameterAcceptor

6 years agoMerge pull request #5294 from masterleinad/fix_perf_3
David Wells [Sat, 21 Oct 2017 12:30:09 +0000 (08:30 -0400)]
Merge pull request #5294 from masterleinad/fix_perf_3

Mark more variables const (reference)

6 years agoMerge pull request #5293 from masterleinad/fix_perf_2
David Wells [Sat, 21 Oct 2017 12:28:48 +0000 (08:28 -0400)]
Merge pull request #5293 from masterleinad/fix_perf_2

Take hp objects by const (reference) access

6 years agoMark more variables const 5294/head
Daniel Arndt [Fri, 20 Oct 2017 23:40:37 +0000 (01:40 +0200)]
Mark more variables const

6 years agoTake hp objects by const (reference) access 5293/head
Daniel Arndt [Fri, 20 Oct 2017 23:38:25 +0000 (01:38 +0200)]
Take hp objects by const (reference) access

6 years agoTake IndexSet by const& 5292/head
Daniel Arndt [Fri, 20 Oct 2017 23:37:09 +0000 (01:37 +0200)]
Take IndexSet by const&

6 years agoMerge pull request #5282 from bangerth/rename-member
Denis Davydov [Sat, 21 Oct 2017 06:04:14 +0000 (08:04 +0200)]
Merge pull request #5282 from bangerth/rename-member

Rename Vector::val to Vector::values.

6 years agoMerge pull request #5281 from tjhei/dof_tria_assert
Denis Davydov [Sat, 21 Oct 2017 05:16:05 +0000 (07:16 +0200)]
Merge pull request #5281 from tjhei/dof_tria_assert

assert having Triangulation in DoFHandler

6 years agoMerge pull request #5284 from tjhei/smart_ptr_nullptr
Denis Davydov [Sat, 21 Oct 2017 05:13:49 +0000 (07:13 +0200)]
Merge pull request #5284 from tjhei/smart_ptr_nullptr

SmartPointer: use nullptr instead of 0

6 years agoFix ParameterAcceptor 5290/head
Daniel Arndt [Fri, 20 Oct 2017 23:39:46 +0000 (01:39 +0200)]
Fix ParameterAcceptor

6 years agoMerge pull request #5286 from tjhei/std_func_ref
Daniel Arndt [Fri, 20 Oct 2017 23:07:33 +0000 (01:07 +0200)]
Merge pull request #5286 from tjhei/std_func_ref

pass std::function by const reference

6 years agoMerge pull request #5279 from tjhei/doc_fixes
Wolfgang Bangerth [Fri, 20 Oct 2017 21:58:45 +0000 (15:58 -0600)]
Merge pull request #5279 from tjhei/doc_fixes

small documentation fixes

6 years agoRearrange terms in the formula. 5287/head
Wolfgang Bangerth [Fri, 20 Oct 2017 21:51:19 +0000 (15:51 -0600)]
Rearrange terms in the formula.

6 years agoMerge pull request #5285 from jppelteret/doc_fix_02
Timo Heister [Fri, 20 Oct 2017 21:06:44 +0000 (17:06 -0400)]
Merge pull request #5285 from jppelteret/doc_fix_02

Documentation fixes for the Physics::Notation::Kelvin namespace.

6 years agopass std::function by const reference 5286/head
Timo Heister [Fri, 20 Oct 2017 21:01:47 +0000 (17:01 -0400)]
pass std::function by const reference

I think a std::function should be passed by const reference, unless we
are planning on storing a copy (then by value and move).


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.