]>
https://gitweb.dealii.org/ - dealii.git/log
Luca Heltai [Tue, 12 Sep 2017 11:43:43 +0000 (13:43 +0200)]
Moved options to AdditionalData. Fixed doc.
Luca Heltai [Fri, 8 Sep 2017 14:45:02 +0000 (16:45 +0200)]
Use GrowingVectorMemory in IDA + example in doc.
Luca Heltai [Wed, 6 Sep 2017 12:38:46 +0000 (14:38 +0200)]
Renamed IDAInterface to IDA.
Luca Heltai [Wed, 6 Sep 2017 12:22:03 +0000 (14:22 +0200)]
More sensible defaults, and document optional functions.
Luca Heltai [Wed, 6 Sep 2017 11:33:36 +0000 (13:33 +0200)]
Renamed reset_dae and improved documentation.
Luca Heltai [Wed, 6 Sep 2017 11:32:56 +0000 (13:32 +0200)]
Added AssertIDA macro.
Luca Heltai [Tue, 5 Sep 2017 14:26:26 +0000 (16:26 +0200)]
Added quicktest.
Luca Heltai [Mon, 14 Aug 2017 23:25:03 +0000 (17:25 -0600)]
Starting point for SUNDIALS IDA interface.
Denis Davydov [Fri, 15 Sep 2017 12:20:45 +0000 (14:20 +0200)]
Merge pull request #5052 from Rombur/python_triangulation
Python wrappers
Luca Heltai [Fri, 15 Sep 2017 12:09:34 +0000 (14:09 +0200)]
Merge pull request #5087 from drwells/timer-multithreaded-fixes
Timer multithreaded fixes
Luca Heltai [Fri, 15 Sep 2017 12:06:56 +0000 (14:06 +0200)]
Merge pull request #5091 from bangerth/doc-update
Fix grammar.
Daniel Arndt [Thu, 14 Sep 2017 23:02:28 +0000 (01:02 +0200)]
Merge pull request #5083 from masterleinad/replace_single_character
Replace single character strings
Wolfgang Bangerth [Thu, 14 Sep 2017 22:13:31 +0000 (16:13 -0600)]
Fix grammar.
Wolfgang Bangerth [Thu, 14 Sep 2017 20:11:19 +0000 (14:11 -0600)]
Merge pull request #5089 from tjhei/fix_boost_serialize_header_missing_2
second try in fixing boost serialization missing header
Timo Heister [Thu, 14 Sep 2017 20:01:34 +0000 (16:01 -0400)]
second try in fixing boost serialization missing header
Wolfgang Bangerth [Thu, 14 Sep 2017 19:55:57 +0000 (13:55 -0600)]
Merge pull request #5055 from masterleinad/move_finite_element
Implement move constructors for FiniteElement and FESystem
Matthias Maier [Thu, 14 Sep 2017 19:52:21 +0000 (14:52 -0500)]
Merge pull request #5075 from bangerth/invalid-accessor
Introduce a class that can't be used.
David Wells [Thu, 14 Sep 2017 18:24:29 +0000 (14:24 -0400)]
Exit the given subsection in TimerOutput::Scope.
The current implementation doesn't work in a multithreaded context.
Consider the following sequence of events:
Thread 1: start and create Scope scope_1(timer_output, "1")
Thread 2: start and create Scope scope_2(timer_output, "2")
Thread 1: call ~scope_1() and join
Thread 2: call ~scope_2() and join
The current implementation of ~Scope() exits the most recent subsection,
so when ~scope_1() is called we leave subsection "2" and when ~scope_2()
is called we leave subsection "1". We can get around this by always
explicitly exiting the subsection in which we started.
David Wells [Thu, 14 Sep 2017 18:22:22 +0000 (14:22 -0400)]
Use last lap times for TimerOutput accumulation.
The methods Timer::wall_time() and Timer::cpu_time() (i.e.,
Timer::operator()()) return cumulative times instead of times over the
last lap.
Wolfgang Bangerth [Thu, 14 Sep 2017 17:51:31 +0000 (11:51 -0600)]
Merge pull request #5026 from masterleinad/variadic_constructor_fe_system
Variadic constructor for FESystem
Wolfgang Bangerth [Thu, 14 Sep 2017 17:47:29 +0000 (11:47 -0600)]
Merge pull request #5071 from masterleinad/fix_clang_5_0_0
Fix warnings for clang-5.0.0
Wolfgang Bangerth [Thu, 14 Sep 2017 17:46:59 +0000 (11:46 -0600)]
Merge pull request #5081 from masterleinad/use_const_ref
Use const& instead of const where applicable
Wolfgang Bangerth [Thu, 14 Sep 2017 17:23:00 +0000 (11:23 -0600)]
Merge pull request #5086 from tjhei/fix_boost_serialize_header_missing
add missing header file needed for boost 1.65
Timo Heister [Thu, 14 Sep 2017 17:20:29 +0000 (13:20 -0400)]
add missing header file needed for boost 1.65
Wolfgang Bangerth [Thu, 14 Sep 2017 14:49:20 +0000 (08:49 -0600)]
Merge pull request #5084 from GivAlz/ErrorPoint
Corrected error in documentation of point input operator
GivAlz [Thu, 14 Sep 2017 16:44:12 +0000 (16:44 +0000)]
Corrected error in documentation
Wolfgang Bangerth [Thu, 14 Sep 2017 14:11:47 +0000 (08:11 -0600)]
Merge pull request #5082 from masterleinad/use_nullptr
Use nullptr instead of NULL
Timo Heister [Thu, 14 Sep 2017 13:44:19 +0000 (09:44 -0400)]
Merge pull request #5068 from bangerth/hp-fixes
More parallel hp fixes
Daniel Arndt [Thu, 14 Sep 2017 13:36:17 +0000 (15:36 +0200)]
Replace single character strings
Daniel Arndt [Thu, 14 Sep 2017 13:35:31 +0000 (15:35 +0200)]
Use nullptr instead of NULL
Daniel Arndt [Thu, 14 Sep 2017 13:34:30 +0000 (15:34 +0200)]
Use const& instead of const where applicable
Timo Heister [Thu, 14 Sep 2017 13:39:54 +0000 (09:39 -0400)]
Merge pull request #5079 from bangerth/doc-update
Update the C++11 page.
Wolfgang Bangerth [Thu, 14 Sep 2017 13:35:18 +0000 (07:35 -0600)]
Update the C++11 page.
Daniel Arndt [Thu, 14 Sep 2017 13:13:53 +0000 (15:13 +0200)]
Merge pull request #5070 from bangerth/prep-work
Prep work
Daniel Arndt [Thu, 14 Sep 2017 07:30:59 +0000 (09:30 +0200)]
Merge pull request #5065 from bangerth/fix-richardson
Avoid raw pointers in favor of VectorMemory::Pointer in SolverRichardson.
Denis Davydov [Thu, 14 Sep 2017 06:16:37 +0000 (08:16 +0200)]
Merge pull request #5076 from bangerth/simplify
Simplify some function calls now that we have hp::DoFHandler::get_fe(index)
Wolfgang Bangerth [Wed, 13 Sep 2017 22:12:36 +0000 (16:12 -0600)]
Simplify some function calls now that we have hp::DoFHandler::get_fe(index).
Daniel Arndt [Wed, 13 Sep 2017 16:00:16 +0000 (18:00 +0200)]
Fix warnings for clang-5.0.0
Wolfgang Bangerth [Wed, 13 Sep 2017 18:45:49 +0000 (12:45 -0600)]
Update some documentation.
Wolfgang Bangerth [Wed, 13 Sep 2017 18:45:34 +0000 (12:45 -0600)]
Introduce a class that can't be used.
Specifically, declare DoFInvalidAccessor that is the accessor
for cases where dim>spacedim -- i.e., things that can't logically
happen, but that at times do happen in code like
for (quad=0; quad<GeometryInfo<dim>::quads_per_cell; ++quad)
cell->quad(quad)->do_something();
Here, the code is not executed in 1d, but we want it to be syntactically
correct so that we can compile the function. Having a DoFInvalidAccessor
then serves the same purpose that InvalidAccessor already does for
tria accessor functions: such objects cannot be created but rather
throw an exception, but they provide the correct syntax.
Timo Heister [Wed, 13 Sep 2017 17:42:30 +0000 (13:42 -0400)]
Merge pull request #5066 from tamiko/bzip2_dir
CMake: Respect BZIP2_DIR in FindBZIP2.cmake
Wolfgang Bangerth [Wed, 13 Sep 2017 03:08:02 +0000 (21:08 -0600)]
Make the set_dof_indices() function more general.
Wolfgang Bangerth [Tue, 12 Sep 2017 22:48:05 +0000 (16:48 -0600)]
Wrap a bunch of comments.
Wolfgang Bangerth [Wed, 13 Sep 2017 15:32:20 +0000 (09:32 -0600)]
Add a changelog entry.
Wolfgang Bangerth [Tue, 12 Sep 2017 01:03:29 +0000 (19:03 -0600)]
Avoid raw pointers in favor of VectorMemory::Pointer.
Wolfgang Bangerth [Tue, 12 Sep 2017 00:45:48 +0000 (18:45 -0600)]
Remove an unused variable.
Wolfgang Bangerth [Tue, 12 Sep 2017 00:44:42 +0000 (18:44 -0600)]
Make SolverRichardson::criterion() be self contained.
Specifically, pass everything the function needs as argument. Also make it 'const'
by not letting it set a variable that is otherwise never read anywhere.
Wolfgang Bangerth [Tue, 12 Sep 2017 00:37:09 +0000 (18:37 -0600)]
Remove an unnecessary include file.
Timo Heister [Wed, 13 Sep 2017 14:53:42 +0000 (10:53 -0400)]
Merge pull request #5069 from bangerth/doc-updates
Doc updates
Wolfgang Bangerth [Wed, 13 Sep 2017 13:44:13 +0000 (07:44 -0600)]
Add to the documentation.
Wolfgang Bangerth [Wed, 13 Sep 2017 13:42:15 +0000 (07:42 -0600)]
Explain a code example better.
Wolfgang Bangerth [Tue, 12 Sep 2017 22:47:30 +0000 (16:47 -0600)]
Fix a bug in hp DoF unification.
Specifically, in the first phase of DoF distribution, we only
enumerate DoF indices on locally owned cells. Thus, after
unification when we renumber, we need to ignore DoFs on
ghost cells. In that case, we need to pass the correct
'check_validity' flag to the renumbering routines.
Wolfgang Bangerth [Tue, 12 Sep 2017 19:42:59 +0000 (13:42 -0600)]
Limit renumbering hp DoFs to non-artificial cells.
Wolfgang Bangerth [Tue, 12 Sep 2017 19:40:57 +0000 (13:40 -0600)]
Limit updating DoF indices to cells where this is possible.
Martin Kronbichler [Wed, 13 Sep 2017 07:00:00 +0000 (09:00 +0200)]
Merge pull request #5062 from bangerth/convert-arrayview
Automatically allow converting std::vector to ArrayView.
Martin Kronbichler [Wed, 13 Sep 2017 06:57:19 +0000 (08:57 +0200)]
Merge pull request #5067 from bangerth/hp-fixes
Two small parallel hp fixes
Bruno Turcksin [Tue, 12 Sep 2017 21:14:23 +0000 (17:14 -0400)]
Merge pull request #5064 from bangerth/cleanup-logstream
Some minor cleanups of LogStream.
Bruno Turcksin [Tue, 12 Sep 2017 21:12:44 +0000 (17:12 -0400)]
Merge pull request #5058 from tjhei/fix_readwritevector_test
fix tests/readwritevector_0x
Wolfgang Bangerth [Tue, 12 Sep 2017 18:56:48 +0000 (12:56 -0600)]
Only update DoF indices on active cells in the non-MG renumbering.
Wolfgang Bangerth [Tue, 12 Sep 2017 18:54:00 +0000 (12:54 -0600)]
Do not set directly active_fe_indices on ghost cells.
Matthias Maier [Tue, 12 Sep 2017 15:45:51 +0000 (10:45 -0500)]
CMake: Respect BZIP2_DIR in FindBZIP2.cmake
Wolfgang Bangerth [Mon, 11 Sep 2017 23:24:07 +0000 (17:24 -0600)]
Add changelog entry.
Wolfgang Bangerth [Mon, 11 Sep 2017 23:23:59 +0000 (17:23 -0600)]
Add test.
Wolfgang Bangerth [Mon, 11 Sep 2017 23:23:48 +0000 (17:23 -0600)]
Automatically allow converting std::vector to ArrayView.
Wolfgang Bangerth [Tue, 12 Sep 2017 12:37:58 +0000 (06:37 -0600)]
Some minor cleanups of LogStream.
In particular, move some functions into the .cc file -- surely, these
functions do not need to be 'inline' in the header file.
Daniel Arndt [Tue, 12 Sep 2017 08:39:19 +0000 (10:39 +0200)]
Merge pull request #5061 from bangerth/fix-minres
Avoid raw pointers in favor of VectorMemory::Pointer in SolverMinRes.
Timo Heister [Tue, 12 Sep 2017 01:13:00 +0000 (21:13 -0400)]
Merge pull request #5060 from bangerth/fix-grammar
Fix grammar in documentation.
Matthias Maier [Tue, 12 Sep 2017 00:36:26 +0000 (19:36 -0500)]
Merge pull request #5059 from tamiko/make_clang_5.0_happy
CMake: Avoid -Wunknown-warning-option warnings
Matthias Maier [Mon, 11 Sep 2017 21:14:51 +0000 (16:14 -0500)]
CMake: Avoid -Wunknown-warning-option warnings
Clang 5.0.0 complains about unknown warning options in GCC pragma
directives. This causes a lot of spurious warnings whenever the macro
DEAL_II_DISABLE_EXTRA_DIAGNOSTICS
is encountered. Add a pragma directive to disable warnings about unknown
warnings to silence this.
Wolfgang Bangerth [Mon, 11 Sep 2017 22:19:53 +0000 (16:19 -0600)]
Avoid raw pointers in favor of VectorMemory::Pointer.
Wolfgang Bangerth [Mon, 11 Sep 2017 22:12:45 +0000 (16:12 -0600)]
Fix grammar.
Wolfgang Bangerth [Mon, 11 Sep 2017 22:10:33 +0000 (16:10 -0600)]
Mark an empty destructor as '=default'.
Wolfgang Bangerth [Mon, 11 Sep 2017 20:59:48 +0000 (14:59 -0600)]
Merge pull request #4723 from drwells/manifold-arrayview-compat
Break the Manifold interface for performance.
Timo Heister [Mon, 11 Sep 2017 20:08:03 +0000 (16:08 -0400)]
fix tests/readwritevector_0x
David Wells [Mon, 11 Sep 2017 02:52:54 +0000 (22:52 -0400)]
Add a changelog entry for the Manifold incompatibities.
David Wells [Mon, 11 Sep 2017 02:52:27 +0000 (22:52 -0400)]
Rename add_new_points as get_new_points.
This function no longer appends new points to a vector so a name change is in
order.
David Wells [Fri, 11 Aug 2017 04:49:22 +0000 (00:49 -0400)]
Directly create an ArrayView from a table.
David Wells [Tue, 8 Aug 2017 17:38:55 +0000 (13:38 -0400)]
Mark methods as 'override'.
David Wells [Fri, 21 Jul 2017 13:31:43 +0000 (09:31 -0400)]
Break the Manifold interface for performance.
This commit changes the interfaces of
Manifolds::get_default_points_and_weights
Manifold::project_to_manifold
Manifold::get_new_point
Manifold::add_new_points
to use ArrayView instead of std::vector. In addition, the interface of
add_new_points has been changed to populate the ArrayView argument
instead of appending to the end of the array.
This breaks the public interface of Manifold for the sake of improving
performance by about 30%: profiling indicates that, when creating a grid
with a Manifold, we spend about 30% of our time purely calling new and
delete since we must create and destroy so many std::vectors.
Daniel Arndt [Mon, 4 Sep 2017 23:40:40 +0000 (01:40 +0200)]
Changelog entry
Daniel Arndt [Mon, 4 Sep 2017 23:33:32 +0000 (01:33 +0200)]
Add tests
Daniel Arndt [Mon, 4 Sep 2017 23:31:55 +0000 (01:31 +0200)]
Implement variadic template constructor and std::initializer_list constructor for FESystem
Daniel Arndt [Mon, 11 Sep 2017 15:38:50 +0000 (17:38 +0200)]
Implement move constructors for FiniteElement and FESystem
Timo Heister [Mon, 11 Sep 2017 14:28:55 +0000 (10:28 -0400)]
Merge pull request #5053 from tjhei/document_parallel_grid_tools
document parallel::GridTools namespace
Timo Heister [Mon, 11 Sep 2017 13:14:18 +0000 (09:14 -0400)]
document parallel::GridTools namespace
otherwise the functions won't show up in doxygen
Bruno Turcksin [Sun, 10 Sep 2017 21:51:46 +0000 (17:51 -0400)]
Merge pull request #5047 from kronbichler/improve_tensor_product_polynomials
Rewrite TensorProductPolynomials::compute for more performance
Bruno Turcksin [Sun, 10 Sep 2017 21:49:44 +0000 (17:49 -0400)]
Add changelog.
Bruno Turcksin [Sun, 10 Sep 2017 21:44:17 +0000 (17:44 -0400)]
Add python tests
Wolfgang Bangerth [Sun, 10 Sep 2017 21:35:39 +0000 (15:35 -0600)]
Merge pull request #5051 from tjhei/doxygen_fixes
fix doxygen formatting mistakes
Bruno Turcksin [Sun, 10 Sep 2017 21:22:13 +0000 (17:22 -0400)]
Add python wrappers to generate more meshes and to flatten triangulations
Timo Heister [Sun, 10 Sep 2017 16:52:34 +0000 (12:52 -0400)]
fix doxygen formatting mistakes
Martin Kronbichler [Sun, 10 Sep 2017 05:48:43 +0000 (07:48 +0200)]
Merge pull request #5050 from tjhei/fix_grid_tools_include
Fix self-inclusion in distributed/grid_tools.h
Timo Heister [Sun, 10 Sep 2017 03:03:29 +0000 (23:03 -0400)]
Fix self-inclusion in distributed/grid_tools.h
Why would you want to do that? I hope that this is the cause for doxygen not
showing the documentation of this header.
Timo Heister [Sat, 9 Sep 2017 22:18:48 +0000 (18:18 -0400)]
Merge pull request #5049 from drwells/update-windows-timer
Fix a bug in the Windows CPU time calculation.
David Wells [Sat, 9 Sep 2017 02:11:10 +0000 (22:11 -0400)]
Fix a bug in the Windows CPU time calculation.
The function GetProcessTImes() returns a value in units of 100 nanoseconds, so
we were previously off by a factor of 10.
Timo Heister [Fri, 8 Sep 2017 15:24:56 +0000 (11:24 -0400)]
Merge pull request #5048 from tjhei/fix_mesh_loop_test
fix tests/meshworker/step-11-mesh_loop
Wolfgang Bangerth [Fri, 8 Sep 2017 14:41:04 +0000 (08:41 -0600)]
Merge pull request #5005 from tamiko/fe_nedelec_bug
Fix FE_Nedelec::convert_generalized_support_point_values_to_dof_values (kind of)
Martin Kronbichler [Fri, 8 Sep 2017 07:02:25 +0000 (09:02 +0200)]
Rewrite TensorProductPolynomials::compute for more performance
Timo Heister [Fri, 8 Sep 2017 13:31:51 +0000 (09:31 -0400)]
fix tests/meshworker/step-11-mesh_loop
Martin Kronbichler [Fri, 8 Sep 2017 08:36:41 +0000 (10:36 +0200)]
Merge pull request #5032 from drwells/timer-rename-variables-2
Clean up some variable names in the Timer class.
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.