]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
5 years agoDocumentation typos fixed in theta_timestepping.h and newton.h 8611/head
Reza Rastak [Wed, 21 Aug 2019 06:39:07 +0000 (23:39 -0700)]
Documentation typos fixed in theta_timestepping.h and newton.h

5 years agoMerge pull request #8599 from bangerth/test
Daniel Arndt [Wed, 21 Aug 2019 02:33:16 +0000 (22:33 -0400)]
Merge pull request #8599 from bangerth/test

Add a test.

5 years agoMerge pull request #8579 from peterrum/pdt_dofhandlerpolicy_generalization
Daniel Arndt [Tue, 20 Aug 2019 22:34:48 +0000 (18:34 -0400)]
Merge pull request #8579 from peterrum/pdt_dofhandlerpolicy_generalization

Generalize DoFHandlerPolicy of p:d:t

5 years agoMerge pull request #8604 from bangerth/21
Daniel Arndt [Tue, 20 Aug 2019 22:29:06 +0000 (18:29 -0400)]
Merge pull request #8604 from bangerth/21

Further edits to the introduction of step-21.

5 years agoMerge pull request #8567 from peterrum/cellid-coarse-id
Wolfgang Bangerth [Tue, 20 Aug 2019 22:08:53 +0000 (16:08 -0600)]
Merge pull request #8567 from peterrum/cellid-coarse-id

Modify the definition of CellId

5 years agoMerge pull request #8608 from masterleinad/fix_tuple_h
Wolfgang Bangerth [Tue, 20 Aug 2019 22:04:38 +0000 (16:04 -0600)]
Merge pull request #8608 from masterleinad/fix_tuple_h

Fix tuple.h

5 years agoFurther edits to the introduction of step-21. 8604/head
Wolfgang Bangerth [Mon, 19 Aug 2019 20:04:33 +0000 (14:04 -0600)]
Further edits to the introduction of step-21.

5 years agoAdd a test. 8599/head
Wolfgang Bangerth [Mon, 19 Aug 2019 03:01:51 +0000 (21:01 -0600)]
Add a test.

5 years agoFix tuple.h 8608/head
Daniel Arndt [Tue, 20 Aug 2019 17:36:34 +0000 (13:36 -0400)]
Fix tuple.h

5 years agoMerge pull request #8605 from masterleinad/fix_optional_optimization_tests
Daniel Arndt [Tue, 20 Aug 2019 12:31:12 +0000 (08:31 -0400)]
Merge pull request #8605 from masterleinad/fix_optional_optimization_tests

Replace boost::none by the std::optional default constructor

5 years agoMerge pull request #8597 from GrahamBenHarper/graham_dev_polynomials_fe
Daniel Arndt [Tue, 20 Aug 2019 12:30:28 +0000 (08:30 -0400)]
Merge pull request #8597 from GrahamBenHarper/graham_dev_polynomials_fe

Remove PolynomialType Template Argument from FE_PolyTensor

5 years agoGeneralize DoFHandlerPolicy of p:d:t 8579/head
Peter Munch [Thu, 15 Aug 2019 04:00:03 +0000 (06:00 +0200)]
Generalize DoFHandlerPolicy of p:d:t

5 years agoModify the definition of CellId 8567/head
peterrum [Wed, 14 Aug 2019 02:20:17 +0000 (04:20 +0200)]
Modify the definition of CellId

Conflicts:
include/deal.II/grid/tria.h

5 years agoMerge pull request #8586 from peterrum/cellid-getcoarsecellid
Daniel Arndt [Tue, 20 Aug 2019 03:34:22 +0000 (23:34 -0400)]
Merge pull request #8586 from peterrum/cellid-getcoarsecellid

Return coarse-cell id by CellId

5 years agoMerge pull request #8600 from peterrum/parallel_triangulationbase
Daniel Arndt [Tue, 20 Aug 2019 03:05:27 +0000 (23:05 -0400)]
Merge pull request #8600 from peterrum/parallel_triangulationbase

Rename parallel::Triangulation to parallel::TriangulationBase

5 years agoMerge pull request #8574 from bangerth/contract
Daniel Arndt [Tue, 20 Aug 2019 02:33:35 +0000 (22:33 -0400)]
Merge pull request #8574 from bangerth/contract

Avoid a couple FP subtractions.

5 years agoRemove template argument from FE_PolyTensor 8597/head
grahambenharper [Sun, 18 Aug 2019 04:06:37 +0000 (22:06 -0600)]
Remove template argument from FE_PolyTensor

5 years agoReplace boost::none by the std::optional default constructor 8605/head
Daniel Arndt [Mon, 19 Aug 2019 21:00:47 +0000 (17:00 -0400)]
Replace boost::none by the std::optional default constructor

5 years agoAdd get_coarse_cell_id to CellID 8586/head
Peter Munch [Fri, 16 Aug 2019 03:11:27 +0000 (05:11 +0200)]
Add get_coarse_cell_id to CellID

Conflicts:
include/deal.II/grid/tria.h

5 years agoMerge pull request #8470 from omosebi1/saturationfix
Wolfgang Bangerth [Mon, 19 Aug 2019 19:56:46 +0000 (13:56 -0600)]
Merge pull request #8470 from omosebi1/saturationfix

Fix for Saturation Equation

5 years agoExplains formulation of the saturation equation 8470/head
Omotayo Omosebi [Mon, 19 Aug 2019 18:06:10 +0000 (14:06 -0400)]
Explains formulation of the saturation equation

5 years agoAvoid a couple FP subtractions. 8574/head
Wolfgang Bangerth [Wed, 14 Aug 2019 23:26:10 +0000 (17:26 -0600)]
Avoid a couple FP subtractions.

By noting that the existing code performs dim subtractions of
terms that are each a product of two values, we can reorder
things in such a way that we first accumulate the products
(which is a dot product) and then subtract the result. This
should allow for some vectorization.

The performance gain is almost certainly completely negligible,
but it makes the code marginally easier to read. The reason
why the indices involved here allow for this is because
'jacobian_pushed_forward_grads[i]' happens to be a
Tensor<3,dim> and 'shape_gradients[k][i]' is a
Tensor<1,dim>. So the types are so that their product
is in fact equivalent to the summation of the last index
as was written before.

5 years agoRename parallel::Triangulation to parallel::TriangulationBase 8600/head
Peter Munch [Mon, 19 Aug 2019 06:33:59 +0000 (08:33 +0200)]
Rename parallel::Triangulation to parallel::TriangulationBase

5 years agoMerge pull request #8542 from maemar/generalized-subdivided-hyperL
Wolfgang Bangerth [Mon, 19 Aug 2019 16:49:15 +0000 (10:49 -0600)]
Merge pull request #8542 from maemar/generalized-subdivided-hyperL

Added the function GridGenerator::subdivided_hyper_L().

5 years agoMerge pull request #8594 from masterleinad/cxx17optional
Wolfgang Bangerth [Mon, 19 Aug 2019 03:04:56 +0000 (21:04 -0600)]
Merge pull request #8594 from masterleinad/cxx17optional

Replace boost::optional by std_cxx17::optional.

5 years agoMerge pull request #8595 from rezarastak/add_inline
Wolfgang Bangerth [Sun, 18 Aug 2019 22:03:09 +0000 (16:03 -0600)]
Merge pull request #8595 from rezarastak/add_inline

added inlined keyword to function definitions in quadrature_point_data.h

5 years agoMerge pull request #8596 from bangerth/exscan
Daniel Arndt [Sun, 18 Aug 2019 13:09:48 +0000 (09:09 -0400)]
Merge pull request #8596 from bangerth/exscan

Use MPI_Exscan instead of MPI_Scan.

5 years agoMerge pull request #8593 from peterrum/dofaccessor_mgdofindices_1D
Daniel Arndt [Sun, 18 Aug 2019 13:08:27 +0000 (09:08 -0400)]
Merge pull request #8593 from peterrum/dofaccessor_mgdofindices_1D

Implement DoFAccessor::set/get_mg_dof_indices for 1D

5 years agoMerge pull request #8585 from rezarastak/doxygen_forward_declarations
Daniel Arndt [Sun, 18 Aug 2019 13:08:01 +0000 (09:08 -0400)]
Merge pull request #8585 from rezarastak/doxygen_forward_declarations

added #ifndef DOXYGEN to forward declarations

5 years agoMerge pull request #8588 from GrahamBenHarper/graham_dev_polynomials_derived
Daniel Arndt [Sun, 18 Aug 2019 04:20:49 +0000 (00:20 -0400)]
Merge pull request #8588 from GrahamBenHarper/graham_dev_polynomials_derived

Change Polynomial Classes to Derive from TensorPolynomialsBase

5 years agoUse MPI_Exscan instead of MPI_Scan. 8596/head
Wolfgang Bangerth [Sun, 18 Aug 2019 03:10:20 +0000 (21:10 -0600)]
Use MPI_Exscan instead of MPI_Scan.

5 years agoMerge pull request #8555 from marcfehling/hp-chainsofconstraints
Daniel Arndt [Sun, 18 Aug 2019 02:24:00 +0000 (22:24 -0400)]
Merge pull request #8555 from marcfehling/hp-chainsofconstraints

New test: Chains of constraints on parallel hp-adaptive applications.

5 years agoReplace boost::optional by std_cxx17::optional 8594/head
Daniel Arndt [Sat, 17 Aug 2019 16:31:54 +0000 (12:31 -0400)]
Replace boost::optional by std_cxx17::optional

5 years agoImplement DoFAccessor::set_mg_dof_indices and get_mg_dof_indices for 1D 8593/head
Peter Munch [Sat, 17 Aug 2019 04:22:18 +0000 (06:22 +0200)]
Implement DoFAccessor::set_mg_dof_indices and get_mg_dof_indices for 1D

5 years agoChange Polynomials classes to derive from TensorPolynomialsBase 8588/head
grahambenharper [Fri, 16 Aug 2019 07:37:23 +0000 (01:37 -0600)]
Change Polynomials classes to derive from TensorPolynomialsBase

5 years agoadded inlined keyword to function definitions in quadrature_point_data.h 8595/head
Reza Rastak [Sat, 17 Aug 2019 19:03:43 +0000 (12:03 -0700)]
added inlined keyword to function definitions in quadrature_point_data.h

5 years agoMerge pull request #8572 from bangerth/cleanups
Daniel Arndt [Sat, 17 Aug 2019 05:08:38 +0000 (01:08 -0400)]
Merge pull request #8572 from bangerth/cleanups

Make a few variables 'const'.

5 years agoforward declatations removed from doxygen in all header files 8585/head
Reza Rastak [Sat, 17 Aug 2019 00:56:07 +0000 (17:56 -0700)]
forward declatations removed from doxygen in all header files

5 years agoMake a few variables 'const'. 8572/head
Wolfgang Bangerth [Wed, 14 Aug 2019 23:22:04 +0000 (17:22 -0600)]
Make a few variables 'const'.

5 years agoMerge pull request #8569 from peterrum/cellaccessor_faceiterators
Wolfgang Bangerth [Fri, 16 Aug 2019 20:40:10 +0000 (14:40 -0600)]
Merge pull request #8569 from peterrum/cellaccessor_faceiterators

Add cell->face_iterators()

5 years agoMerge pull request #8570 from melaniegerault/eccentric_hyper_shell
David Wells [Fri, 16 Aug 2019 15:37:29 +0000 (09:37 -0600)]
Merge pull request #8570 from melaniegerault/eccentric_hyper_shell

Add the links to the figures in the documentation of GridGenerator::eccentric_hyper_shell()

5 years agoMerge pull request #8573 from melaniegerault/master
David Wells [Fri, 16 Aug 2019 15:30:47 +0000 (09:30 -0600)]
Merge pull request #8573 from melaniegerault/master

Exclude MacOS self-generated files from untracked files

5 years agoadded #ifndef DOXYGEN to some forward declarations
Reza Rastak [Fri, 16 Aug 2019 03:01:38 +0000 (20:01 -0700)]
added #ifndef DOXYGEN to some forward declarations

5 years agoMerge pull request #8584 from masterleinad/fix_clang_tidy_symengine
Timo Heister [Fri, 16 Aug 2019 02:28:36 +0000 (20:28 -0600)]
Merge pull request #8584 from masterleinad/fix_clang_tidy_symengine

Fix clang-tidy complaints for Symengine

5 years agoMerge pull request #8580 from masterleinad/mf_additional_ref
Daniel Arndt [Thu, 15 Aug 2019 18:07:29 +0000 (14:07 -0400)]
Merge pull request #8580 from masterleinad/mf_additional_ref

Pass MatrixFree::AdditionalData by reference

5 years agoFix clang-tidy complaints for Symengine 8584/head
Daniel Arndt [Thu, 15 Aug 2019 17:49:59 +0000 (13:49 -0400)]
Fix clang-tidy complaints for Symengine

5 years ago.DS_Store etc. and .swp removed from untracked files 8573/head
Melanie Gerault [Wed, 14 Aug 2019 22:54:15 +0000 (18:54 -0400)]
.DS_Store etc. and .swp removed from untracked files

5 years agoMerge pull request #8576 from peterrum/test_grid_accessor_01
Daniel Arndt [Thu, 15 Aug 2019 15:21:16 +0000 (11:21 -0400)]
Merge pull request #8576 from peterrum/test_grid_accessor_01

Correct variable type in test grid/accessor_01

5 years agoMerge pull request #8582 from simonsticko/fix_parallel_block_vector_warning
Daniel Arndt [Thu, 15 Aug 2019 12:46:53 +0000 (08:46 -0400)]
Merge pull request #8582 from simonsticko/fix_parallel_block_vector_warning

Update deprecated warning message in parallel_block_vector.h.

5 years agoUpdate deprecated warning message in parallel_block_vector.h. 8582/head
Simon Sticko [Thu, 15 Aug 2019 07:14:30 +0000 (09:14 +0200)]
Update deprecated warning message in parallel_block_vector.h.

The warning suggests including a file which doesn't exist. Change the
message to the intended file.

5 years agoPass MatrixFree::AdditionalData by reference 8580/head
Daniel Arndt [Thu, 15 Aug 2019 04:56:10 +0000 (00:56 -0400)]
Pass MatrixFree::AdditionalData by reference

5 years agoMerge pull request #8513 from gassmoeller/change_pack_compression_to_default
Daniel Arndt [Thu, 15 Aug 2019 03:22:00 +0000 (23:22 -0400)]
Merge pull request #8513 from gassmoeller/change_pack_compression_to_default

Add compression options to pack and use default parameters

5 years agoMerge pull request #8522 from gassmoeller/optimize_particle_packing
Daniel Arndt [Thu, 15 Aug 2019 03:21:30 +0000 (23:21 -0400)]
Merge pull request #8522 from gassmoeller/optimize_particle_packing

Implement pack_particles functions

5 years agoCorrect variable type in test grid/accessor_01 8576/head
Peter Munch [Thu, 15 Aug 2019 02:02:40 +0000 (04:02 +0200)]
Correct variable type in test grid/accessor_01

5 years agoAdd cell->face_iterators() 8569/head
Peter Munch [Wed, 14 Aug 2019 13:43:31 +0000 (15:43 +0200)]
Add cell->face_iterators()

5 years agoUpdate to documentation and downsized figures 8570/head
Melanie Gerault [Wed, 14 Aug 2019 21:56:15 +0000 (17:56 -0400)]
Update to documentation and downsized figures

5 years agoMerge pull request #8528 from GrahamBenHarper/graham_dev_polynomials_base
Wolfgang Bangerth [Wed, 14 Aug 2019 21:36:25 +0000 (15:36 -0600)]
Merge pull request #8528 from GrahamBenHarper/graham_dev_polynomials_base

Implement the PolynomialsBase classes

5 years agoMove functions in anonymous namespace 8522/head
Rene Gassmoeller [Wed, 14 Aug 2019 21:12:53 +0000 (14:12 -0700)]
Move functions in anonymous namespace

5 years agoDivided scenario into three separate ones. 8555/head
Marc Fehling [Wed, 14 Aug 2019 19:41:56 +0000 (13:41 -0600)]
Divided scenario into three separate ones.

5 years agoMerge pull request #8430 from masterleinad/reduce_floating_point_division
Wolfgang Bangerth [Wed, 14 Aug 2019 20:03:13 +0000 (14:03 -0600)]
Merge pull request #8430 from masterleinad/reduce_floating_point_division

Reduce floating-point division in operator/

5 years agoNew test: Chains of constraints on parallel hp-adaptive applications.
Marc Fehling [Mon, 12 Aug 2019 22:32:03 +0000 (16:32 -0600)]
New test: Chains of constraints on parallel hp-adaptive applications.

5 years agoAdded the links to the pictures in the documentation of GridGenerator::eccentric_hype...
Melanie Gerault [Wed, 14 Aug 2019 19:00:40 +0000 (15:00 -0400)]
Added the links to the pictures in the documentation of GridGenerator::eccentric_hyper_shell()

5 years agoMerge pull request #8526 from melaniegerault/eccentric_hyper_shell
Matthias Maier [Wed, 14 Aug 2019 18:32:00 +0000 (13:32 -0500)]
Merge pull request #8526 from melaniegerault/eccentric_hyper_shell

Eccentric hyper shell

5 years agoImplement the PolynomialsBase class 8528/head
grahambenharper [Fri, 9 Aug 2019 00:27:26 +0000 (18:27 -0600)]
Implement the PolynomialsBase class

5 years agoFigures for 2D and 3D grids plus edits on grid_generator.cc 8526/head
Melanie Gerault [Fri, 9 Aug 2019 05:34:05 +0000 (23:34 -0600)]
Figures for 2D and 3D grids plus edits on grid_generator.cc

5 years agoUpdate source/grid/grid_generator.cc
Melanie Gerault [Thu, 8 Aug 2019 23:43:29 +0000 (17:43 -0600)]
Update source/grid/grid_generator.cc

Co-Authored-By: David Wells <drwells@email.unc.edu>
5 years agoAdd GridGenerator::eccentric_hyper_shell
Melanie Gerault [Thu, 8 Aug 2019 21:48:19 +0000 (15:48 -0600)]
Add GridGenerator::eccentric_hyper_shell

Add an eccentric hyper shell geometry that is formed by two spheres
with different center points.

5 years agoAdd GridGenerator::eccentric_hyper_shell
Melanie Gerault [Thu, 8 Aug 2019 21:48:19 +0000 (15:48 -0600)]
Add GridGenerator::eccentric_hyper_shell

Add an eccentric hyper shell geometry that is formed by two spheres
with different center points.

5 years agoMerge pull request #8566 from dangars/full_matrix_doxygen
David Wells [Wed, 14 Aug 2019 14:25:37 +0000 (08:25 -0600)]
Merge pull request #8566 from dangars/full_matrix_doxygen

Fix doxygen documentation

5 years agoMerge pull request #8568 from simonsticko/fix_git-hook_instructions
Wolfgang Bangerth [Wed, 14 Aug 2019 12:44:34 +0000 (06:44 -0600)]
Merge pull request #8568 from simonsticko/fix_git-hook_instructions

Update instructions on where to find the pre-commit git-hook.

5 years agoUpdate instructions on where to find the pre-commit git-hook. 8568/head
Simon Sticko [Wed, 14 Aug 2019 12:28:56 +0000 (14:28 +0200)]
Update instructions on where to find the pre-commit git-hook.

5 years agoMerge pull request #8382 from fmilicchio/master
Matthias Maier [Wed, 14 Aug 2019 03:53:39 +0000 (22:53 -0500)]
Merge pull request #8382 from fmilicchio/master

Checking if MPI is enabled to allow both Trilinos and PETSc.

5 years agoFix doxygen documentation 8566/head
Daniel Garcia-Sanchez [Wed, 14 Aug 2019 01:00:48 +0000 (03:00 +0200)]
Fix doxygen documentation

5 years agoUse default compression for Utilities::pack 8513/head
Rene Gassmoeller [Thu, 8 Aug 2019 16:42:17 +0000 (10:42 -0600)]
Use default compression for Utilities::pack

5 years agoMerge pull request #8560 from bangerth/assert
Martin Kronbichler [Tue, 13 Aug 2019 16:58:57 +0000 (18:58 +0200)]
Merge pull request #8560 from bangerth/assert

Fix an assertion that was missing a semicolon.

5 years agoforgot to indent 8542/head
Mae Markowski [Tue, 13 Aug 2019 16:27:12 +0000 (11:27 -0500)]
forgot to indent

5 years agofixed typo, made h array, renamed variable
Mae Markowski [Tue, 13 Aug 2019 16:18:09 +0000 (11:18 -0500)]
fixed typo, made h array, renamed variable

5 years agoMerge pull request #8557 from bangerth/22
Daniel Arndt [Tue, 13 Aug 2019 15:24:20 +0000 (11:24 -0400)]
Merge pull request #8557 from bangerth/22

Update the description in step-8 that uses the new pictures.

5 years agoMerge pull request #8539 from chronictectonic/step-8_figures
Wolfgang Bangerth [Tue, 13 Aug 2019 14:19:50 +0000 (08:19 -0600)]
Merge pull request #8539 from chronictectonic/step-8_figures

Improve resolution in step 8.

5 years agoUpdate the description in step-8 that uses the new pictures. 8557/head
Wolfgang Bangerth [Mon, 12 Aug 2019 23:54:09 +0000 (17:54 -0600)]
Update the description in step-8 that uses the new pictures.

5 years agoFix an assertion that was missing a semicolon. 8560/head
Wolfgang Bangerth [Tue, 13 Aug 2019 03:37:59 +0000 (21:37 -0600)]
Fix an assertion that was missing a semicolon.

5 years agoMerge pull request #8561 from masterleinad/another_mailmap
David Wells [Tue, 13 Aug 2019 13:26:23 +0000 (07:26 -0600)]
Merge pull request #8561 from masterleinad/another_mailmap

Add another .mailmap entry

5 years agoAdd another .mailmap entry 8561/head
Daniel Arndt [Tue, 13 Aug 2019 13:10:21 +0000 (09:10 -0400)]
Add another .mailmap entry

5 years agoMerge pull request #8519 from mjayadharan/grid_tools_debug
Daniel Arndt [Tue, 13 Aug 2019 13:02:21 +0000 (09:02 -0400)]
Merge pull request #8519 from mjayadharan/grid_tools_debug

Grid tools debug

5 years agoMerge pull request #8429 from marcfehling/pd-fetransfer
Daniel Arndt [Tue, 13 Aug 2019 13:01:40 +0000 (09:01 -0400)]
Merge pull request #8429 from marcfehling/pd-fetransfer

Parallel distributed: Communicate active_fe_indices after deserializa…

5 years agoMerge pull request #8559 from bangerth/3
Daniel Arndt [Tue, 13 Aug 2019 03:13:42 +0000 (23:13 -0400)]
Merge pull request #8559 from bangerth/3

Minor update to step-3.

5 years agoMerge pull request #8556 from bangerth/sticked
Daniel Arndt [Tue, 13 Aug 2019 03:01:22 +0000 (23:01 -0400)]
Merge pull request #8556 from bangerth/sticked

Fix a funny comment.

5 years agoCorrect indentation. 8519/head
Wolfgang Bangerth [Tue, 13 Aug 2019 02:56:08 +0000 (20:56 -0600)]
Correct indentation.

5 years agoMerge pull request #8554 from bangerth/doc
Daniel Arndt [Tue, 13 Aug 2019 02:54:08 +0000 (22:54 -0400)]
Merge pull request #8554 from bangerth/doc

Update a piece of documentation to use less jargon.

5 years agoMerge pull request #8514 from User-zwj/step-2-dof-extension
Wolfgang Bangerth [Tue, 13 Aug 2019 00:20:14 +0000 (18:20 -0600)]
Merge pull request #8514 from User-zwj/step-2-dof-extension

Add extension to step2

5 years agoMinor update to step-3. 8559/head
Wolfgang Bangerth [Tue, 13 Aug 2019 00:17:22 +0000 (18:17 -0600)]
Minor update to step-3.

5 years agoFix a funny comment. 8556/head
Wolfgang Bangerth [Mon, 12 Aug 2019 23:43:37 +0000 (17:43 -0600)]
Fix a funny comment.

5 years agoUpdate a piece of documentation to use less jargon. 8554/head
Wolfgang Bangerth [Mon, 12 Aug 2019 23:05:51 +0000 (17:05 -0600)]
Update a piece of documentation to use less jargon.

5 years agoMerge pull request #8547 from kronbichler/fix_mf_ghosting
Daniel Arndt [Mon, 12 Aug 2019 21:54:08 +0000 (17:54 -0400)]
Merge pull request #8547 from kronbichler/fix_mf_ghosting

Fix bug in MatrixFree ghost exchange with faces and FE_Q

5 years agoAdding function subdivided_hyper_L to GridGenerator.
Mae Markowski [Fri, 9 Aug 2019 22:40:44 +0000 (16:40 -0600)]
Adding function subdivided_hyper_L to GridGenerator.

Added changelog entry, replaced call to .at() with [] operator,
fixed lines breaks in documentation.

forgot to fix indentation

changed parameter order

updated log file and error message

5 years agoMerge pull request #8551 from bangerth/doc
David Wells [Mon, 12 Aug 2019 14:37:20 +0000 (08:37 -0600)]
Merge pull request #8551 from bangerth/doc

Update some documentation pieces.

5 years agoMerge pull request #8479 from aggarwal-ashna/step4comments
Wolfgang Bangerth [Mon, 12 Aug 2019 14:05:35 +0000 (08:05 -0600)]
Merge pull request #8479 from aggarwal-ashna/step4comments

step 4: minor documentation edits

5 years agoUpdate some documentation pieces. 8551/head
Wolfgang Bangerth [Mon, 12 Aug 2019 13:20:13 +0000 (07:20 -0600)]
Update some documentation pieces.

5 years agoMerge pull request #8531 from masterleinad/cuda_warnings_always_inline
David Wells [Mon, 12 Aug 2019 13:04:46 +0000 (07:04 -0600)]
Merge pull request #8531 from masterleinad/cuda_warnings_always_inline

Avoid CUDA warnings related to DEAL_II_ALWAYS_INLINE

5 years agoMerge pull request #8549 from drwells/local_branch
Martin Kronbichler [Mon, 12 Aug 2019 10:01:49 +0000 (12:01 +0200)]
Merge pull request #8549 from drwells/local_branch

Add more citations to step-51.


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.