]>
https://gitweb.dealii.org/ - dealii.git/log
Wolfgang Bangerth [Wed, 5 Apr 2017 16:38:11 +0000 (10:38 -0600)]
Implement FE::convert_generalized_support_point_values_to_nodal_values() for FE_Q, FE_DGQ, FE_DGQArbitraryNodes.
Wolfgang Bangerth [Tue, 4 Apr 2017 15:20:23 +0000 (09:20 -0600)]
Merge pull request #4180 from tjhei/add_doi_for_step_57
add step-57 DOI
Timo Heister [Tue, 4 Apr 2017 15:17:50 +0000 (11:17 -0400)]
add step-57 DOI
David Wells [Tue, 4 Apr 2017 02:19:09 +0000 (22:19 -0400)]
Merge pull request #4173 from tjhei/mathjax_new_cdn
change MathJax CDN
Timo Heister [Mon, 3 Apr 2017 14:24:55 +0000 (10:24 -0400)]
Merge pull request #4174 from jppelteret/step-44-doc_update_01
Add DOI citation to step-44
Jean-Paul Pelteret [Mon, 3 Apr 2017 07:09:44 +0000 (09:09 +0200)]
Add DOI citation to step-44
Bruno Turcksin [Sun, 2 Apr 2017 23:49:07 +0000 (19:49 -0400)]
Merge pull request #4139 from kronbichler/cleanup_shape_info
Proper tolerance scaling for gradients and Hessians at high degrees
David Wells [Sun, 2 Apr 2017 23:03:25 +0000 (19:03 -0400)]
Merge pull request #4145 from tjhei/doi_citing
add @dealiiTutorialDOI{} macro for tutorial programs
Timo Heister [Thu, 30 Mar 2017 15:11:01 +0000 (11:11 -0400)]
add @dealiiTutorialDOI{} macro for tutorial programs
Timo Heister [Sun, 2 Apr 2017 17:12:25 +0000 (13:12 -0400)]
change MathJax CDN
https://cdn.mathjax.org is shutting down, so switch to the recommended alternative CDN.
Fixes #4169
Wolfgang Bangerth [Sat, 1 Apr 2017 20:07:15 +0000 (14:07 -0600)]
Merge pull request #4172 from drwells/point-value-history-resize
Resize a vector instead of repeatedly calling push_back.
Martin Kronbichler [Sat, 1 Apr 2017 19:42:58 +0000 (21:42 +0200)]
Merge pull request #4155 from tcclevenger/fix_shared_tria_multigrid_artifical
Fixed setting artificial bug in shared tria, added test
David Wells [Sat, 1 Apr 2017 16:53:46 +0000 (12:53 -0400)]
Resize a vector instead of repeatedly calling push_back.
std::vector<double>(0) creates an empty vector, so we can save some time by just
resizing the vector of vectors instead.
Wolfgang Bangerth [Sat, 1 Apr 2017 15:59:23 +0000 (09:59 -0600)]
Merge pull request #4168 from drwells/add-nonexistent-line-check
Check an index in ConstraintMatrix::add_entry.
David Wells [Fri, 31 Mar 2017 18:46:45 +0000 (14:46 -0400)]
Check an index in ConstraintMatrix::add_entry.
Without this check one can get segmentation faults in debug mode if the
current line is not present.
Bruno Turcksin [Fri, 31 Mar 2017 18:14:23 +0000 (14:14 -0400)]
Merge pull request #4141 from kronbichler/fe_evaluation_cleanup
FEEvaluation: Tidy up selection of templated evaluation calls
Timo Heister [Fri, 31 Mar 2017 16:44:26 +0000 (12:44 -0400)]
Merge pull request #4158 from tamiko/fix_sequential_petsc_on_fedora
CMake: Workaround: Ensure "mpiuni/mpi.h" is reachable
Daniel Arndt [Fri, 31 Mar 2017 15:27:59 +0000 (17:27 +0200)]
Merge pull request #4165 from masterleinad/restrict_parallel_petsc_dev
Restrict tests requiring a parallel PETSc
Daniel Arndt [Fri, 31 Mar 2017 14:03:36 +0000 (16:03 +0200)]
Restrict tests requiring a parallel PETSc
Matthias Maier [Thu, 30 Mar 2017 22:38:47 +0000 (17:38 -0500)]
CMake: Workaround: Ensure "mpiuni/mpi.h" is reachable
In case of a sequential build without mpi support and sequential petsc a
dummy mpi.h file installed by petsc must be reachable in from our final
set of include directories.
Normally this is not an issue - petsc exports such information in the
file "petscvariables" that we parse. But some distributions have chosen
to not install this file...
Closes #4157
Daniel Arndt [Fri, 31 Mar 2017 09:30:37 +0000 (11:30 +0200)]
Merge pull request #4156 from tjhei/cmake_find_mpi_version
fix cmake regex for finding MPI version
Denis Davydov [Fri, 31 Mar 2017 09:12:55 +0000 (11:12 +0200)]
Merge pull request #4163 from davydden/changelog_matrixfree
a changelog for deprecated mpi_communicator in MatrixFree::Additional…
Denis Davydov [Fri, 31 Mar 2017 08:24:39 +0000 (10:24 +0200)]
a changelog for deprecated mpi_communicator in MatrixFree::AdditionalData
David Wells [Fri, 31 Mar 2017 03:40:00 +0000 (23:40 -0400)]
Merge pull request #4160 from tamiko/fix_step_dependency
Examples: Require MPI for step-18
Matthias Maier [Thu, 30 Mar 2017 23:27:51 +0000 (18:27 -0500)]
Merge pull request #4152 from tjhei/fix_step_44_petsc
fix step-55
Matthias Maier [Thu, 30 Mar 2017 23:23:02 +0000 (18:23 -0500)]
Examples: Require MPI for step-18
Timo Heister [Thu, 30 Mar 2017 21:37:53 +0000 (17:37 -0400)]
fix cmake regex for finding MPI version
cmake regex is greedy, which means that the old regex
MPI_VERSION.*([0-9]+)
would only put the last digit of the version into the group \1 because
.* consumes the others. Fix this.
tcclevenger [Thu, 30 Mar 2017 21:05:46 +0000 (17:05 -0400)]
typo
tcclevenger [Thu, 30 Mar 2017 20:51:20 +0000 (16:51 -0400)]
fix shared tria artificial cells bug
Daniel Arndt [Thu, 30 Mar 2017 20:44:26 +0000 (22:44 +0200)]
Merge pull request #4143 from tjhei/test_prm_map
add test for parsing Map pattern in ParameterHandler
Timo Heister [Thu, 30 Mar 2017 19:09:45 +0000 (15:09 -0400)]
fix step-55
This causes crashes with PETSc and solver convergence issues with
Trilinos with more than one rank.
Matthias Maier [Thu, 30 Mar 2017 17:19:39 +0000 (12:19 -0500)]
Merge pull request #4149 from tamiko/require_cmake_2.8.12
CMake: Raise minimal required version to 2.8.12
Matthias Maier [Thu, 30 Mar 2017 16:56:07 +0000 (11:56 -0500)]
CMake: Raise minimal required version to 2.8.12
Almost all distributions with a recent enough compiler come with at
least CMake 2.8.12 which was released November 2013. Let's simply
require this version.
Timo Heister [Thu, 30 Mar 2017 13:53:45 +0000 (09:53 -0400)]
add test for parsing Map pattern in ParameterHandler
I think this makes for a nice usage example.
Martin Kronbichler [Thu, 30 Mar 2017 14:05:40 +0000 (16:05 +0200)]
Merge pull request #4140 from kronbichler/fix_gl_evaluation
FEEvaluation: Fix collocation evaluation path
Timo Heister [Thu, 30 Mar 2017 13:58:23 +0000 (09:58 -0400)]
Merge pull request #4138 from kronbichler/fe_eval_doc_update
Update documentation of FEEvaluation
Wolfgang Bangerth [Thu, 30 Mar 2017 13:34:54 +0000 (07:34 -0600)]
Merge pull request #4142 from kronbichler/fix_compilation_64_bit
Fix compilation with 64 bit indices.
Martin Kronbichler [Thu, 30 Mar 2017 13:32:44 +0000 (15:32 +0200)]
Fix compilation with 64 bit indices.
Martin Kronbichler [Thu, 30 Mar 2017 13:19:39 +0000 (15:19 +0200)]
FEEvaluation: Tidy up selection of templated evaluation calls.
Martin Kronbichler [Thu, 30 Mar 2017 12:35:03 +0000 (14:35 +0200)]
FEEvaluation: Fix collocation evaluation path
Martin Kronbichler [Thu, 30 Mar 2017 11:38:43 +0000 (13:38 +0200)]
Add test
Martin Kronbichler [Thu, 30 Mar 2017 11:38:32 +0000 (13:38 +0200)]
Add proper scaling for gradients and Hessians at high degrees
Martin Kronbichler [Thu, 30 Mar 2017 08:49:04 +0000 (10:49 +0200)]
Update documentation of FEEvaluation
Martin Kronbichler [Thu, 30 Mar 2017 07:33:35 +0000 (09:33 +0200)]
Merge pull request #4111 from kronbichler/fe_evaluation_gather_and_optimization
Two optimizations to FEEvaluation
Martin Kronbichler [Wed, 29 Mar 2017 19:40:40 +0000 (21:40 +0200)]
Improve documentation, make names of data structures uniform
Martin Kronbichler [Wed, 29 Mar 2017 19:44:37 +0000 (21:44 +0200)]
Merge pull request #4067 from tcclevenger/shared_tria_partition
Various partitioning method for parallel::shared::Triangulation
tcclevenger [Wed, 29 Mar 2017 17:17:32 +0000 (13:17 -0400)]
fixed some typos/added settings explanation
Daniel Arndt [Wed, 29 Mar 2017 11:57:09 +0000 (13:57 +0200)]
Merge pull request #4134 from kronbichler/fix_test_abf
Fix test on some platforms
Martin Kronbichler [Wed, 29 Mar 2017 09:51:49 +0000 (11:51 +0200)]
Disable scatter as long as the indices are not fixed
Martin Kronbichler [Wed, 29 Mar 2017 09:18:44 +0000 (11:18 +0200)]
Avoid overly cautious assertions in scatter
Martin Kronbichler [Wed, 29 Mar 2017 07:18:55 +0000 (09:18 +0200)]
Fix test on some platforms
Timo Heister [Tue, 28 Mar 2017 22:49:01 +0000 (18:49 -0400)]
Merge pull request #4131 from drwells/fix-quick-tests
Remove tests.h dependency from the quick tests.
David Wells [Tue, 28 Mar 2017 21:03:55 +0000 (17:03 -0400)]
Remove tests.h dependency from the quick tests.
The release candidates ship without this file.
Timo Heister [Tue, 28 Mar 2017 16:49:29 +0000 (12:49 -0400)]
Merge pull request #4127 from kronbichler/fix_matrix_free_degree_9
Fix bug in matrix-free evaluation kernel for degree 9 in 2D
Martin Kronbichler [Tue, 28 Mar 2017 14:08:07 +0000 (16:08 +0200)]
Make the stack size selection a single parameter
Martin Kronbichler [Tue, 28 Mar 2017 13:40:44 +0000 (15:40 +0200)]
Merge pull request #4126 from simonsticko/fe_nothing_interpolation_matrix
Implement get_interpolation_matrix on FE_Nothing.
Martin Kronbichler [Tue, 28 Mar 2017 13:24:45 +0000 (15:24 +0200)]
Put new code into separate function.
Do not use function pointers.
Martin Kronbichler [Fri, 24 Mar 2017 13:42:59 +0000 (14:42 +0100)]
Add changelog
Martin Kronbichler [Tue, 14 Mar 2017 09:25:25 +0000 (10:25 +0100)]
Use vectorized gather operation if available.
Martin Kronbichler [Tue, 14 Mar 2017 09:24:42 +0000 (10:24 +0100)]
Use simpler code path for quadratic operator evaluation path.
Martin Kronbichler [Tue, 28 Mar 2017 10:11:49 +0000 (12:11 +0200)]
Fix bug in matrix-free evaluation kernel for degree 9 in 2D
Daniel Arndt [Tue, 28 Mar 2017 09:32:09 +0000 (11:32 +0200)]
Merge pull request #4125 from simonsticko/doc_astyle_move
Update documentation on location of astyle.rc.
Simon Sticko [Tue, 28 Mar 2017 08:45:45 +0000 (10:45 +0200)]
Implement get_interpolation_matrix on FE_Nothing.
Simon Sticko [Tue, 28 Mar 2017 07:13:03 +0000 (09:13 +0200)]
Update documentation on location of astyle.rc.
Daniel Arndt [Mon, 27 Mar 2017 22:11:24 +0000 (00:11 +0200)]
Merge pull request #4117 from davydden/matrix_free_remove_depricated
matrix-free: remove deprecated mpi_communicator
Wolfgang Bangerth [Mon, 27 Mar 2017 21:47:47 +0000 (15:47 -0600)]
Merge pull request #4122 from tjhei/multigrid_warnings
Avoid multiple deprecation warnings in steps
Denis Davydov [Mon, 27 Mar 2017 20:29:29 +0000 (23:29 +0300)]
matrix-free: remove EXTRA_DIAGNOSTICS
Timo Heister [Mon, 27 Mar 2017 19:32:56 +0000 (15:32 -0400)]
fix step-41 warning
Timo Heister [Mon, 27 Mar 2017 19:16:41 +0000 (15:16 -0400)]
Avoid multigrid deprecation warnings in step-16/39
Wolfgang Bangerth [Mon, 27 Mar 2017 18:47:35 +0000 (12:47 -0600)]
Merge pull request #4120 from tjhei/fix_doxygen_errors
fix doxygen errors
Timo Heister [Mon, 27 Mar 2017 18:43:09 +0000 (14:43 -0400)]
fix doxygen errors
Denis Davydov [Sun, 26 Mar 2017 20:35:56 +0000 (22:35 +0200)]
fix matrix-free unit tests
Denis Davydov [Sun, 26 Mar 2017 19:33:58 +0000 (21:33 +0200)]
matrix-free: remove depreicated mpi_communicator
Wolfgang Bangerth [Sun, 26 Mar 2017 18:53:09 +0000 (12:53 -0600)]
Merge pull request #4114 from masterleinad/fix_fe_abm
Fix FE_ABF::convert_generalized_support_point_values_to_nodal_values
Daniel Arndt [Sun, 26 Mar 2017 15:44:07 +0000 (17:44 +0200)]
Fix FE_ABF::convert_generalized_support_point_values_to_nodal_values
Wolfgang Bangerth [Fri, 24 Mar 2017 12:23:49 +0000 (06:23 -0600)]
Merge pull request #4108 from kronbichler/fix_mg_transfer_reinit
Make sure to clean all data before filling MG transfer data fields
Martin Kronbichler [Fri, 24 Mar 2017 08:55:25 +0000 (09:55 +0100)]
Make sure to clean all data before filling MG transfer data fields
David Wells [Thu, 23 Mar 2017 23:35:29 +0000 (19:35 -0400)]
Merge pull request #4107 from bangerth/doc-update
Update the documentation of DoFHandler::n_dofs().
Wolfgang Bangerth [Thu, 23 Mar 2017 23:20:12 +0000 (17:20 -0600)]
Update the documentation of DoFHandler::n_dofs().
Matthias Maier [Thu, 23 Mar 2017 19:44:38 +0000 (14:44 -0500)]
Merge pull request #4105 from tjhei/post-8.5-test-versions
post-8.5-version-numbers
Timo Heister [Thu, 23 Mar 2017 19:23:30 +0000 (15:23 -0400)]
post-8.5-version-numbers
Timo Heister [Thu, 23 Mar 2017 19:03:03 +0000 (15:03 -0400)]
update VERSION
Wolfgang Bangerth [Thu, 23 Mar 2017 18:40:24 +0000 (12:40 -0600)]
Merge pull request #4099 from tjhei/doxygen_fixes
8.5 task: doxygen formatting fixes
Wolfgang Bangerth [Thu, 23 Mar 2017 16:29:02 +0000 (10:29 -0600)]
Merge pull request #4100 from tjhei/tag_filename
8.5 task: update TAG file URL
Timo Heister [Thu, 23 Mar 2017 16:28:29 +0000 (12:28 -0400)]
address comment
Timo Heister [Thu, 23 Mar 2017 16:23:39 +0000 (12:23 -0400)]
Merge pull request #4098 from bangerth/update-changes-file
Replace individual files by one changelog for the whole release.
Wolfgang Bangerth [Thu, 23 Mar 2017 16:15:02 +0000 (10:15 -0600)]
Adjust for the upcoming release.
Wolfgang Bangerth [Thu, 23 Mar 2017 15:55:43 +0000 (09:55 -0600)]
Remove now obsolete files.
Wolfgang Bangerth [Thu, 23 Mar 2017 15:56:54 +0000 (09:56 -0600)]
Update the changelog file for the release.
Timo Heister [Thu, 23 Mar 2017 16:14:20 +0000 (12:14 -0400)]
Merge pull request #4101 from bangerth/update-copyright
Update copyright years.
Wolfgang Bangerth [Thu, 23 Mar 2017 16:08:23 +0000 (10:08 -0600)]
Update copyright years.
Timo Heister [Thu, 23 Mar 2017 16:07:21 +0000 (12:07 -0400)]
8.5 task: update TAG file URL
Daniel Arndt [Thu, 23 Mar 2017 16:02:10 +0000 (17:02 +0100)]
Merge pull request #4097 from masterleinad/check_cell_loop
Check array access in MatrixFree::cell_loop
Timo Heister [Thu, 23 Mar 2017 15:57:07 +0000 (11:57 -0400)]
doxygen formatting fixes
- wrong indentation
- code blocks not marked correctly
- some @ref fixes
Daniel Arndt [Thu, 23 Mar 2017 14:39:49 +0000 (15:39 +0100)]
Check array access in MatrixFree::cell_loop
Timo Heister [Thu, 23 Mar 2017 13:44:04 +0000 (09:44 -0400)]
Merge pull request #4096 from kronbichler/fix_clang_warning_mapping
Fix warning with clang compiler
Luca Heltai [Thu, 23 Mar 2017 12:32:30 +0000 (13:32 +0100)]
Merge pull request #4064 from bangerth/replace-FE_interpolate
Replace FE::interpolate() by FE::convert_support_point_values_to_nodal_values().
Martin Kronbichler [Thu, 23 Mar 2017 12:23:21 +0000 (13:23 +0100)]
Add warning with clang compiler
Wolfgang Bangerth [Wed, 22 Mar 2017 21:49:17 +0000 (15:49 -0600)]
Merge pull request #3886 from kronbichler/master
Fix support points on quad for MappingQGeneric and StraightBoundary.
Wolfgang Bangerth [Wed, 22 Mar 2017 21:34:46 +0000 (15:34 -0600)]
Merge pull request #4094 from masterleinad/fix_indexset_asc_etc
Refactor and fix IndexSet::is_ascending_and_one_to_one
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.