]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
7 years agoFixed compilation issue in serial. 4852/head
Luca Heltai [Fri, 15 Sep 2017 22:44:25 +0000 (00:44 +0200)]
Fixed compilation issue in serial.

7 years agoChangelog.
Luca Heltai [Tue, 12 Sep 2017 11:49:09 +0000 (13:49 +0200)]
Changelog.

7 years agoMoved options to AdditionalData. Fixed doc.
Luca Heltai [Tue, 12 Sep 2017 11:43:43 +0000 (13:43 +0200)]
Moved options to AdditionalData. Fixed doc.

7 years agoUse GrowingVectorMemory in IDA + example in doc.
Luca Heltai [Fri, 8 Sep 2017 14:45:02 +0000 (16:45 +0200)]
Use GrowingVectorMemory in IDA + example in doc.

7 years agoRenamed IDAInterface to IDA.
Luca Heltai [Wed, 6 Sep 2017 12:38:46 +0000 (14:38 +0200)]
Renamed IDAInterface to IDA.

7 years agoMore sensible defaults, and document optional functions.
Luca Heltai [Wed, 6 Sep 2017 12:22:03 +0000 (14:22 +0200)]
More sensible defaults, and document optional functions.

7 years agoRenamed reset_dae and improved documentation.
Luca Heltai [Wed, 6 Sep 2017 11:33:36 +0000 (13:33 +0200)]
Renamed reset_dae and improved documentation.

7 years agoAdded AssertIDA macro.
Luca Heltai [Wed, 6 Sep 2017 11:32:56 +0000 (13:32 +0200)]
Added AssertIDA macro.

7 years agoAdded quicktest.
Luca Heltai [Tue, 5 Sep 2017 14:26:26 +0000 (16:26 +0200)]
Added quicktest.

7 years agoStarting point for SUNDIALS IDA interface.
Luca Heltai [Mon, 14 Aug 2017 23:25:03 +0000 (17:25 -0600)]
Starting point for SUNDIALS IDA interface.

7 years agoMerge pull request #5052 from Rombur/python_triangulation
Denis Davydov [Fri, 15 Sep 2017 12:20:45 +0000 (14:20 +0200)]
Merge pull request #5052 from Rombur/python_triangulation

Python wrappers

7 years agoMerge pull request #5087 from drwells/timer-multithreaded-fixes
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

7 years agoMerge pull request #5091 from bangerth/doc-update
Luca Heltai [Fri, 15 Sep 2017 12:06:56 +0000 (14:06 +0200)]
Merge pull request #5091 from bangerth/doc-update

Fix grammar.

7 years agoMerge pull request #5083 from masterleinad/replace_single_character
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

7 years agoFix grammar. 5091/head
Wolfgang Bangerth [Thu, 14 Sep 2017 22:13:31 +0000 (16:13 -0600)]
Fix grammar.

7 years agoMerge pull request #5089 from tjhei/fix_boost_serialize_header_missing_2
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

7 years agosecond try in fixing boost serialization missing header 5089/head
Timo Heister [Thu, 14 Sep 2017 20:01:34 +0000 (16:01 -0400)]
second try in fixing boost serialization missing header

7 years agoMerge pull request #5055 from masterleinad/move_finite_element
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

7 years agoMerge pull request #5075 from bangerth/invalid-accessor
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.

7 years agoExit the given subsection in TimerOutput::Scope. 5087/head
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.

7 years agoUse last lap times for TimerOutput accumulation.
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.

7 years agoMerge pull request #5026 from masterleinad/variadic_constructor_fe_system
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

7 years agoMerge pull request #5071 from masterleinad/fix_clang_5_0_0
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

7 years agoMerge pull request #5081 from masterleinad/use_const_ref
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

7 years agoMerge pull request #5086 from tjhei/fix_boost_serialize_header_missing
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

7 years agoadd missing header file needed for boost 1.65 5086/head
Timo Heister [Thu, 14 Sep 2017 17:20:29 +0000 (13:20 -0400)]
add missing header file needed for boost 1.65

7 years agoMerge pull request #5084 from GivAlz/ErrorPoint
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

7 years agoCorrected error in documentation 5084/head
GivAlz [Thu, 14 Sep 2017 16:44:12 +0000 (16:44 +0000)]
Corrected error in documentation

7 years agoMerge pull request #5082 from masterleinad/use_nullptr
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

7 years agoMerge pull request #5068 from bangerth/hp-fixes
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

7 years agoReplace single character strings 5083/head
Daniel Arndt [Thu, 14 Sep 2017 13:36:17 +0000 (15:36 +0200)]
Replace single character strings

7 years agoUse nullptr instead of NULL 5082/head
Daniel Arndt [Thu, 14 Sep 2017 13:35:31 +0000 (15:35 +0200)]
Use nullptr instead of NULL

7 years agoUse const& instead of const where applicable 5081/head
Daniel Arndt [Thu, 14 Sep 2017 13:34:30 +0000 (15:34 +0200)]
Use const& instead of const where applicable

7 years agoMerge pull request #5079 from bangerth/doc-update
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.

7 years agoUpdate the C++11 page. 5079/head
Wolfgang Bangerth [Thu, 14 Sep 2017 13:35:18 +0000 (07:35 -0600)]
Update the C++11 page.

7 years agoMerge pull request #5070 from bangerth/prep-work
Daniel Arndt [Thu, 14 Sep 2017 13:13:53 +0000 (15:13 +0200)]
Merge pull request #5070 from bangerth/prep-work

Prep work

7 years agoMerge pull request #5065 from bangerth/fix-richardson
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.

7 years agoMerge pull request #5076 from bangerth/simplify
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)

7 years agoSimplify some function calls now that we have hp::DoFHandler::get_fe(index). 5076/head
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).

7 years agoFix warnings for clang-5.0.0 5071/head
Daniel Arndt [Wed, 13 Sep 2017 16:00:16 +0000 (18:00 +0200)]
Fix warnings for clang-5.0.0

7 years agoUpdate some documentation. 5075/head
Wolfgang Bangerth [Wed, 13 Sep 2017 18:45:49 +0000 (12:45 -0600)]
Update some documentation.

7 years agoIntroduce a class that can't be used.
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.

7 years agoMerge pull request #5066 from tamiko/bzip2_dir
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

7 years agoMake the set_dof_indices() function more general. 5070/head
Wolfgang Bangerth [Wed, 13 Sep 2017 03:08:02 +0000 (21:08 -0600)]
Make the set_dof_indices() function more general.

7 years agoWrap a bunch of comments.
Wolfgang Bangerth [Tue, 12 Sep 2017 22:48:05 +0000 (16:48 -0600)]
Wrap a bunch of comments.

7 years agoAdd a changelog entry. 5065/head
Wolfgang Bangerth [Wed, 13 Sep 2017 15:32:20 +0000 (09:32 -0600)]
Add a changelog entry.

7 years agoAvoid raw pointers in favor of VectorMemory::Pointer.
Wolfgang Bangerth [Tue, 12 Sep 2017 01:03:29 +0000 (19:03 -0600)]
Avoid raw pointers in favor of VectorMemory::Pointer.

7 years agoRemove an unused variable.
Wolfgang Bangerth [Tue, 12 Sep 2017 00:45:48 +0000 (18:45 -0600)]
Remove an unused variable.

7 years agoMake SolverRichardson::criterion() be self contained.
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.

7 years agoRemove an unnecessary include file.
Wolfgang Bangerth [Tue, 12 Sep 2017 00:37:09 +0000 (18:37 -0600)]
Remove an unnecessary include file.

7 years agoMerge pull request #5069 from bangerth/doc-updates
Timo Heister [Wed, 13 Sep 2017 14:53:42 +0000 (10:53 -0400)]
Merge pull request #5069 from bangerth/doc-updates

Doc updates

7 years agoAdd to the documentation. 5069/head
Wolfgang Bangerth [Wed, 13 Sep 2017 13:44:13 +0000 (07:44 -0600)]
Add to the documentation.

7 years agoExplain a code example better.
Wolfgang Bangerth [Wed, 13 Sep 2017 13:42:15 +0000 (07:42 -0600)]
Explain a code example better.

7 years agoFix a bug in hp DoF unification. 5068/head
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.

7 years agoLimit renumbering hp DoFs to non-artificial cells.
Wolfgang Bangerth [Tue, 12 Sep 2017 19:42:59 +0000 (13:42 -0600)]
Limit renumbering hp DoFs to non-artificial cells.

7 years agoLimit updating DoF indices to cells where this is possible.
Wolfgang Bangerth [Tue, 12 Sep 2017 19:40:57 +0000 (13:40 -0600)]
Limit updating DoF indices to cells where this is possible.

7 years agoMerge pull request #5062 from bangerth/convert-arrayview
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.

7 years agoMerge pull request #5067 from bangerth/hp-fixes
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

7 years agoMerge pull request #5064 from bangerth/cleanup-logstream
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.

7 years agoMerge pull request #5058 from tjhei/fix_readwritevector_test
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

7 years agoOnly update DoF indices on active cells in the non-MG renumbering. 5067/head
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.

7 years agoDo not set directly active_fe_indices on ghost cells.
Wolfgang Bangerth [Tue, 12 Sep 2017 18:54:00 +0000 (12:54 -0600)]
Do not set directly active_fe_indices on ghost cells.

7 years agoCMake: Respect BZIP2_DIR in FindBZIP2.cmake 5066/head
Matthias Maier [Tue, 12 Sep 2017 15:45:51 +0000 (10:45 -0500)]
CMake: Respect BZIP2_DIR in FindBZIP2.cmake

7 years agoAdd changelog entry. 5062/head
Wolfgang Bangerth [Mon, 11 Sep 2017 23:24:07 +0000 (17:24 -0600)]
Add changelog entry.

7 years agoAdd test.
Wolfgang Bangerth [Mon, 11 Sep 2017 23:23:59 +0000 (17:23 -0600)]
Add test.

7 years agoAutomatically allow converting std::vector to ArrayView.
Wolfgang Bangerth [Mon, 11 Sep 2017 23:23:48 +0000 (17:23 -0600)]
Automatically allow converting std::vector to ArrayView.

7 years agoSome minor cleanups of LogStream. 5064/head
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.

7 years agoMerge pull request #5061 from bangerth/fix-minres
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.

7 years agoMerge pull request #5060 from bangerth/fix-grammar
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.

7 years agoMerge pull request #5059 from tamiko/make_clang_5.0_happy
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

7 years agoCMake: Avoid -Wunknown-warning-option warnings 5059/head
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.

7 years agoAvoid raw pointers in favor of VectorMemory::Pointer. 5061/head
Wolfgang Bangerth [Mon, 11 Sep 2017 22:19:53 +0000 (16:19 -0600)]
Avoid raw pointers in favor of VectorMemory::Pointer.

7 years agoFix grammar. 5060/head
Wolfgang Bangerth [Mon, 11 Sep 2017 22:12:45 +0000 (16:12 -0600)]
Fix grammar.

7 years agoMark an empty destructor as '=default'.
Wolfgang Bangerth [Mon, 11 Sep 2017 22:10:33 +0000 (16:10 -0600)]
Mark an empty destructor as '=default'.

7 years agoMerge pull request #4723 from drwells/manifold-arrayview-compat
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.

7 years agofix tests/readwritevector_0x 5058/head
Timo Heister [Mon, 11 Sep 2017 20:08:03 +0000 (16:08 -0400)]
fix tests/readwritevector_0x

7 years agoAdd a changelog entry for the Manifold incompatibities. 4723/head
David Wells [Mon, 11 Sep 2017 02:52:54 +0000 (22:52 -0400)]
Add a changelog entry for the Manifold incompatibities.

7 years agoRename add_new_points as get_new_points.
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.

7 years agoDirectly create an ArrayView from a table.
David Wells [Fri, 11 Aug 2017 04:49:22 +0000 (00:49 -0400)]
Directly create an ArrayView from a table.

7 years agoMark methods as 'override'.
David Wells [Tue, 8 Aug 2017 17:38:55 +0000 (13:38 -0400)]
Mark methods as 'override'.

7 years agoBreak the Manifold interface for performance.
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.

7 years agoChangelog entry 5026/head
Daniel Arndt [Mon, 4 Sep 2017 23:40:40 +0000 (01:40 +0200)]
Changelog entry

7 years agoAdd tests
Daniel Arndt [Mon, 4 Sep 2017 23:33:32 +0000 (01:33 +0200)]
Add tests

7 years agoImplement variadic template constructor and std::initializer_list constructor for...
Daniel Arndt [Mon, 4 Sep 2017 23:31:55 +0000 (01:31 +0200)]
Implement variadic template constructor and std::initializer_list constructor for FESystem

7 years agoImplement move constructors for FiniteElement and FESystem 5055/head
Daniel Arndt [Mon, 11 Sep 2017 15:38:50 +0000 (17:38 +0200)]
Implement move constructors for FiniteElement and FESystem

7 years agoMerge pull request #5053 from tjhei/document_parallel_grid_tools
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

7 years agodocument parallel::GridTools namespace 5053/head
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

7 years agoMerge pull request #5047 from kronbichler/improve_tensor_product_polynomials
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

7 years agoAdd changelog. 5052/head
Bruno Turcksin [Sun, 10 Sep 2017 21:49:44 +0000 (17:49 -0400)]
Add changelog.

7 years agoAdd python tests
Bruno Turcksin [Sun, 10 Sep 2017 21:44:17 +0000 (17:44 -0400)]
Add python tests

7 years agoMerge pull request #5051 from tjhei/doxygen_fixes
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

7 years agoAdd python wrappers to generate more meshes and to flatten triangulations
Bruno Turcksin [Sun, 10 Sep 2017 21:22:13 +0000 (17:22 -0400)]
Add python wrappers to generate more meshes and to flatten triangulations

7 years agofix doxygen formatting mistakes 5051/head
Timo Heister [Sun, 10 Sep 2017 16:52:34 +0000 (12:52 -0400)]
fix doxygen formatting mistakes

7 years agoMerge pull request #5050 from tjhei/fix_grid_tools_include
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

7 years agoFix self-inclusion in distributed/grid_tools.h 5050/head
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.

7 years agoMerge pull request #5049 from drwells/update-windows-timer
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.

7 years agoFix a bug in the Windows CPU time calculation. 5049/head
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.

7 years agoMerge pull request #5048 from tjhei/fix_mesh_loop_test
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

7 years agoMerge pull request #5005 from tamiko/fe_nedelec_bug
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)

7 years agoRewrite TensorProductPolynomials::compute for more performance 5047/head
Martin Kronbichler [Fri, 8 Sep 2017 07:02:25 +0000 (09:02 +0200)]
Rewrite TensorProductPolynomials::compute for more performance


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.