]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
8 years agoTest the memory consumption of fundamental types. 1704/head
David Wells [Sun, 4 Oct 2015 19:53:16 +0000 (15:53 -0400)]
Test the memory consumption of fundamental types.

8 years agoMake memory_consumption(T*) more generic.
David Wells [Fri, 2 Oct 2015 18:53:10 +0000 (14:53 -0400)]
Make memory_consumption(T*) more generic.

8 years agoRemove memory_consumption(std::vector<int>) et al.
David Wells [Fri, 2 Oct 2015 18:34:03 +0000 (14:34 -0400)]
Remove memory_consumption(std::vector<int>) et al.

This may be implemented generically now that an implementation of
memory_consumption for all fundamental types is available.

8 years agoMake memory_consumption(int) et al more generic.
David Wells [Fri, 2 Oct 2015 18:27:59 +0000 (14:27 -0400)]
Make memory_consumption(int) et al more generic.

I used SFINAE to write one implementation for memory_consumption() for
fundamental types, instead of the dozen or so present previously.

8 years agoRemove a workaround for an old XLC compiler.
David Wells [Fri, 2 Oct 2015 17:37:41 +0000 (13:37 -0400)]
Remove a workaround for an old XLC compiler.

As far as I can tell, this compiler reached end of life status over ten
years ago.

8 years agoMerge pull request #1703 from bangerth/further-FEValues-cleanups-34
Martin Kronbichler [Fri, 2 Oct 2015 07:40:39 +0000 (09:40 +0200)]
Merge pull request #1703 from bangerth/further-FEValues-cleanups-34

Essentially remove MappingQ1

8 years agoMore doc updates. 1703/head
Wolfgang Bangerth [Fri, 2 Oct 2015 04:26:03 +0000 (23:26 -0500)]
More doc updates.

8 years agoAugment documentation.
Wolfgang Bangerth [Fri, 2 Oct 2015 04:15:19 +0000 (23:15 -0500)]
Augment documentation.

8 years agoImprove documentation of class MappingQ.
Wolfgang Bangerth [Thu, 1 Oct 2015 22:03:46 +0000 (17:03 -0500)]
Improve documentation of class MappingQ.

8 years agoChange compute_mapping_support_points to return its data.
Wolfgang Bangerth [Thu, 1 Oct 2015 21:45:07 +0000 (16:45 -0500)]
Change compute_mapping_support_points to return its data.

The previous version returned the list of points via its last argument,
but this is no longer necessary in times of C++11.

8 years agoReapply a few patches made on mainline while developing this branch.
Wolfgang Bangerth [Thu, 1 Oct 2015 21:31:28 +0000 (16:31 -0500)]
Reapply a few patches made on mainline while developing this branch.

8 years agoFurther simplify code.
Wolfgang Bangerth [Thu, 1 Oct 2015 20:02:51 +0000 (15:02 -0500)]
Further simplify code.

Since MappingQ is now no longer derived from MappingQ1, we can simplify
the implementation of the MappingQ::transform functions.

8 years agoRemove a test.
Wolfgang Bangerth [Thu, 1 Oct 2015 15:21:36 +0000 (10:21 -0500)]
Remove a test.

This test previously ran through but returned a point outside the
reference cell. This was due to a fortuitously chosen initial guess
for the Newton iteration (at the center of the cell, pretty stupid)
whereas we now get an exception. In both cases, the function determines
that the point we are seeking lies outside the given cell. As
stated in the documentation, the function in that case either may
return a set of reference coordinates outside the reference cell,
or may throw an exception. The function previously did the former
and now does the latter.

There are three follow-up tests that check the same situation,
so removing this particular test does no harm.

8 years agoUpdate test output.
Wolfgang Bangerth [Thu, 1 Oct 2015 15:18:43 +0000 (10:18 -0500)]
Update test output.

Test outputs change imperceptably and are generally more accurate now
than they were before (see the last column), but there are two or three
points that lie on interfaces between cells and that are now found
for a different cell. This can be seen by noting that for those cells,
the reference coordinates previously had at least one component equal
to zero or one.

8 years agoMove the remaining pieces of transform_r_to_u() from MappingQ to MappingQGeneric.
Wolfgang Bangerth [Thu, 1 Oct 2015 15:16:51 +0000 (10:16 -0500)]
Move the remaining pieces of transform_r_to_u() from MappingQ to MappingQGeneric.

8 years agoMove the implementation of transform_r_to_u_cell from MappingQ1 to MappingQGeneric.
Wolfgang Bangerth [Sat, 19 Sep 2015 13:03:15 +0000 (08:03 -0500)]
Move the implementation of transform_r_to_u_cell from MappingQ1 to MappingQGeneric.

8 years agoSimplify code.
Wolfgang Bangerth [Fri, 18 Sep 2015 21:45:04 +0000 (16:45 -0500)]
Simplify code.

Instead of setting up an InternalData object everywhere, move this
into the transform_real_to_unit_cell_internal() function.

8 years agoUpdate a few pieces of implementation.
Wolfgang Bangerth [Fri, 18 Sep 2015 20:01:31 +0000 (15:01 -0500)]
Update a few pieces of implementation.

8 years agoSimplify code.
Wolfgang Bangerth [Fri, 18 Sep 2015 16:13:10 +0000 (11:13 -0500)]
Simplify code.

8 years agoRemove a function now no longer needed.
Wolfgang Bangerth [Fri, 18 Sep 2015 16:13:01 +0000 (11:13 -0500)]
Remove a function now no longer needed.

8 years agoMerge pull request #1702 from kronbichler/master
Wolfgang Bangerth [Thu, 1 Oct 2015 19:50:46 +0000 (14:50 -0500)]
Merge pull request #1702 from kronbichler/master

Remove debug output

8 years agoRemove debug output 1702/head
Martin Kronbichler [Thu, 1 Oct 2015 19:44:02 +0000 (21:44 +0200)]
Remove debug output

8 years agoMerge pull request #1701 from kronbichler/master
Wolfgang Bangerth [Thu, 1 Oct 2015 19:40:06 +0000 (14:40 -0500)]
Merge pull request #1701 from kronbichler/master

Reduce test time by cutting away the most expensive cycle.

8 years agoReduce test time by cutting away the most expensive cycle. 1701/head
Martin Kronbichler [Thu, 1 Oct 2015 19:35:42 +0000 (21:35 +0200)]
Reduce test time by cutting away the most expensive cycle.

8 years agoMerge pull request #1699 from bangerth/fix-test-12
Martin Kronbichler [Thu, 1 Oct 2015 15:38:47 +0000 (17:38 +0200)]
Merge pull request #1699 from bangerth/fix-test-12

Fix test output.

8 years agoFix test output. 1699/head
Wolfgang Bangerth [Thu, 1 Oct 2015 14:35:30 +0000 (09:35 -0500)]
Fix test output.

The test output that was originally stored was missing an empty line.

8 years agoMerge pull request #1698 from bangerth/add-output-file
Martin Kronbichler [Thu, 1 Oct 2015 11:39:15 +0000 (13:39 +0200)]
Merge pull request #1698 from bangerth/add-output-file

Add another version of the same output file.

8 years agoAdd another version of the same output file. 1698/head
Wolfgang Bangerth [Thu, 1 Oct 2015 11:30:15 +0000 (06:30 -0500)]
Add another version of the same output file.

Given that METIS produces unpredictable output, we need a second output file.

8 years agoMerge pull request #1694 from Rombur/vertex_to_cell
Wolfgang Bangerth [Thu, 1 Oct 2015 01:45:29 +0000 (20:45 -0500)]
Merge pull request #1694 from Rombur/vertex_to_cell

Add vertex to cells map.

8 years agoAdd 3D test for vertex_to_cell_map function. 1694/head
Bruno Turcksin [Wed, 30 Sep 2015 23:28:05 +0000 (18:28 -0500)]
Add 3D test for vertex_to_cell_map function.

8 years agoFix a bug in 3D.
Bruno Turcksin [Wed, 30 Sep 2015 21:09:23 +0000 (16:09 -0500)]
Fix a bug in 3D.

8 years agoMerge pull request #1696 from maieneuro/instantiate_template_functions
Wolfgang Bangerth [Wed, 30 Sep 2015 21:05:58 +0000 (16:05 -0500)]
Merge pull request #1696 from maieneuro/instantiate_template_functions

instantiated get_function_third_derivatives template functions

8 years agoinstantiated get_function_third_derivatives template functions 1696/head
Maien Hamed [Wed, 30 Sep 2015 20:45:56 +0000 (22:45 +0200)]
instantiated get_function_third_derivatives template functions

8 years agoImprove documentation for the function vertex_to_cell_map.
Bruno Turcksin [Wed, 30 Sep 2015 19:30:08 +0000 (14:30 -0500)]
Improve documentation for the function vertex_to_cell_map.

8 years agoMerge pull request #1695 from tjhei/muparser_pow
Wolfgang Bangerth [Wed, 30 Sep 2015 17:53:17 +0000 (12:53 -0500)]
Merge pull request #1695 from tjhei/muparser_pow

add support for pow(a,b) in FunctionParser

8 years agoadd support for pow(a,b) in FunctionParser 1695/head
Timo Heister [Wed, 30 Sep 2015 17:39:35 +0000 (13:39 -0400)]
add support for pow(a,b) in FunctionParser

it turns out muparser only supports "a^b" out of the box, so we add
"pow(a,b)" as a custom function.

8 years agoAdd vertex to cells map.
Bruno Turcksin [Wed, 30 Sep 2015 17:16:21 +0000 (12:16 -0500)]
Add vertex to cells map.

8 years agoMerge pull request #1688 from tamiko/fulfill_license_terms
Wolfgang Bangerth [Tue, 29 Sep 2015 12:52:51 +0000 (07:52 -0500)]
Merge pull request #1688 from tamiko/fulfill_license_terms

Distribute a valid copy of the LGPL-2.1 license text

8 years agoRevert "Remove instructions on how to apply this license to a project." 1688/head
Matthias Maier [Tue, 29 Sep 2015 07:03:15 +0000 (02:03 -0500)]
Revert "Remove instructions on how to apply this license to a project."

This reverts commit 169d3897c5c0bb52b798bec096497e5cb6bd2a3c.

Quote:

 »Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.«

8 years agoMerge pull request #1671 from jppelteret/subdomain_tools
Wolfgang Bangerth [Mon, 28 Sep 2015 22:03:27 +0000 (17:03 -0500)]
Merge pull request #1671 from jppelteret/subdomain_tools

Implementation of DoFTools::locally_relevant_dofs_per_subdomain

8 years agoMerge pull request #1686 from kronbichler/master
Wolfgang Bangerth [Mon, 28 Sep 2015 15:52:44 +0000 (10:52 -0500)]
Merge pull request #1686 from kronbichler/master

Avoid using ‘typename’ outside of template

8 years agoAvoid using ‘typename’ outside of template 1686/head
Martin Kronbichler [Mon, 28 Sep 2015 15:30:22 +0000 (17:30 +0200)]
Avoid using ‘typename’ outside of template

8 years agoMerge pull request #1684 from kronbichler/master
Wolfgang Bangerth [Mon, 28 Sep 2015 14:22:08 +0000 (09:22 -0500)]
Merge pull request #1684 from kronbichler/master

Fix AVX512 code path

8 years agoFix AVX512 code path 1684/head
Martin Kronbichler [Fri, 25 Sep 2015 20:13:32 +0000 (22:13 +0200)]
Fix AVX512 code path
I compiled deal.II with gcc and -mavx512f.

8 years agoMerge pull request #1680 from tjhei/visual_studio_fix
Timo Heister [Mon, 28 Sep 2015 13:13:03 +0000 (09:13 -0400)]
Merge pull request #1680 from tjhei/visual_studio_fix

fix compilation with MSVC

8 years agoMerge pull request #1685 from gassmoeller/more_precise_error
Timo Heister [Mon, 28 Sep 2015 12:13:07 +0000 (08:13 -0400)]
Merge pull request #1685 from gassmoeller/more_precise_error

More precise error message

8 years agofix compilation with MSVC 1680/head
Timo Heister [Sun, 27 Sep 2015 15:39:35 +0000 (11:39 -0400)]
fix compilation with MSVC

8 years agoMore precise error message 1685/head
Rene Gassmoeller [Mon, 28 Sep 2015 10:32:08 +0000 (12:32 +0200)]
More precise error message

8 years agoMerge pull request #1683 from tamiko/sacado_product_type.h-fixes
Martin Kronbichler [Mon, 28 Sep 2015 09:32:05 +0000 (11:32 +0200)]
Merge pull request #1683 from tamiko/sacado_product_type.h-fixes

Bugfixes for sacado_product_type.h

8 years agoMerge pull request #1682 from tamiko/fix_trilinos_configuration
Martin Kronbichler [Mon, 28 Sep 2015 06:55:00 +0000 (08:55 +0200)]
Merge pull request #1682 from tamiko/fix_trilinos_configuration

CMake: add a check for matching C++11 support with recent trilinos

8 years agoCMake: Add check for matching C++11 support 1682/head
Matthias Maier [Mon, 28 Sep 2015 04:54:51 +0000 (23:54 -0500)]
CMake: Add check for matching C++11 support

8 years agoCMake: Query whether trilinos requires CXX11 support
Matthias Maier [Mon, 28 Sep 2015 04:47:13 +0000 (23:47 -0500)]
CMake: Query whether trilinos requires CXX11 support

8 years agoBugfix: use proper test constraint for sacado_product tests 1683/head
Matthias Maier [Mon, 28 Sep 2015 04:24:08 +0000 (23:24 -0500)]
Bugfix: use proper test constraint for sacado_product tests

8 years agoBugfix: Move DEAL_II_NAMESPACE_CLOSE into define guard
Matthias Maier [Mon, 28 Sep 2015 04:21:43 +0000 (23:21 -0500)]
Bugfix: Move DEAL_II_NAMESPACE_CLOSE into define guard

Otherwise an extraneous closing brace '}' is encountered if
DEAL_II_WITH_TRILINOS is false

8 years agoMerge pull request #1678 from tjhei/compile_fixes
Matthias Maier [Sun, 27 Sep 2015 13:11:53 +0000 (08:11 -0500)]
Merge pull request #1678 from tjhei/compile_fixes

compile warnings and errors

8 years agoremove warnings 1678/head
Timo Heister [Sun, 27 Sep 2015 11:27:38 +0000 (07:27 -0400)]
remove warnings

8 years agocompile warnings and errors
Timo Heister [Sun, 27 Sep 2015 11:14:15 +0000 (07:14 -0400)]
compile warnings and errors

8 years agoMerge pull request #1675 from tamiko/new_cross_product_names
Timo Heister [Sat, 26 Sep 2015 02:03:46 +0000 (22:03 -0400)]
Merge pull request #1675 from tamiko/new_cross_product_names

tensor.h: Rename cross_product to cross_product_2d/3d

8 years agotensor_deprecated.h: Bugfix: Let doxygen pick up function references 1675/head
Matthias Maier [Sat, 26 Sep 2015 01:47:07 +0000 (20:47 -0500)]
tensor_deprecated.h: Bugfix: Let doxygen pick up function references

8 years agoupdate changes.h entry
Matthias Maier [Sat, 26 Sep 2015 00:09:07 +0000 (19:09 -0500)]
update changes.h entry

8 years agoUpdate tests
Matthias Maier [Fri, 25 Sep 2015 22:34:05 +0000 (17:34 -0500)]
Update tests

8 years agoReintroduce deprecated cross_product for 2d
Matthias Maier [Fri, 25 Sep 2015 22:12:24 +0000 (17:12 -0500)]
Reintroduce deprecated cross_product for 2d

8 years agotensor.h: Rename cross_product to cross_product_2d/3d
Matthias Maier [Fri, 25 Sep 2015 22:12:08 +0000 (17:12 -0500)]
tensor.h: Rename cross_product to cross_product_2d/3d

8 years agoMerge pull request #1670 from QiaoLei-88/p4estSmooth
Timo Heister [Fri, 25 Sep 2015 21:44:51 +0000 (17:44 -0400)]
Merge pull request #1670 from QiaoLei-88/p4estSmooth

P4est always limit level difference at vertices across different initial cells

8 years agoadd test distributed_grids/3d_refinement_12 1670/head
Lei Qiao [Thu, 24 Sep 2015 23:20:26 +0000 (18:20 -0500)]
add test distributed_grids/3d_refinement_12

8 years agoadd test distributed_grids/2d_refinement_10
Lei Qiao [Thu, 24 Sep 2015 23:19:19 +0000 (18:19 -0500)]
add test distributed_grids/2d_refinement_10

8 years agoAdded test for DoFTools::locally_relevant_dofs_per_subdomain. 1671/head
Jean-Paul Pelteret [Fri, 25 Sep 2015 15:59:08 +0000 (17:59 +0200)]
Added test for DoFTools::locally_relevant_dofs_per_subdomain.

Note: Usual caveats wrt. METIS apply here (see
https://github.com/dealii/dealii/pull/1412).

8 years agoAdded assert for p::d::Triangulation and removed if statement.
Jean-Paul Pelteret [Fri, 25 Sep 2015 15:11:12 +0000 (17:11 +0200)]
Added assert for p::d::Triangulation and removed if statement.

Assert was added in both DoFTools::locally_owned_dofs_per_subdomain and
DoFTools::locally_relevant_dofs_per_subdomain .

8 years agoMerge pull request #1672 from gassmoeller/type_mismatch_block_number
Wolfgang Bangerth [Fri, 25 Sep 2015 11:28:25 +0000 (06:28 -0500)]
Merge pull request #1672 from gassmoeller/type_mismatch_block_number

Fix type mismatch in block vector

8 years agoFix type mismatch in block vector 1672/head
Rene Gassmoeller [Fri, 25 Sep 2015 10:44:19 +0000 (12:44 +0200)]
Fix type mismatch in block vector

8 years agoImplementation of DoFTools::locally_relevant_dofs_per_subdomain.
Jean-Paul Pelteret [Thu, 24 Sep 2015 13:44:44 +0000 (15:44 +0200)]
Implementation of DoFTools::locally_relevant_dofs_per_subdomain.

Also added Denis' authorship for DofTools::locally_owned_dofs_per_subdomain

8 years agoMerge pull request #1590 from QiaoLei-88/trilinosPrecWrapper
Martin Kronbichler [Fri, 25 Sep 2015 09:17:12 +0000 (11:17 +0200)]
Merge pull request #1590 from QiaoLei-88/trilinosPrecWrapper

Access to  Epetra_Operator in Trilinos preconditioner wrapper

8 years agoMerge pull request #1666 from agrayver/non_affine_test
Wolfgang Bangerth [Thu, 24 Sep 2015 15:14:17 +0000 (10:14 -0500)]
Merge pull request #1666 from agrayver/non_affine_test

Add new test to check FE_PolyTensor on (non-)affine meshes in 3d

8 years agoReindent.. 1666/head
Alexander Grayver [Thu, 24 Sep 2015 14:51:23 +0000 (16:51 +0200)]
Reindent..

8 years agoAdd a test for checking correct behaviour of FE_PolyTensor elements and mapping on...
Alexander Grayver [Thu, 24 Sep 2015 14:49:33 +0000 (16:49 +0200)]
Add a test for checking correct behaviour of FE_PolyTensor elements and mapping on different types of meshes.

8 years agoMerge pull request #1657 from asartori86/fix_sacado
Matthias Maier [Thu, 24 Sep 2015 12:43:20 +0000 (07:43 -0500)]
Merge pull request #1657 from asartori86/fix_sacado

fix sacado overloads as pointed out in #1656

8 years agoMerge pull request #1665 from bangerth/update-doc-38
Timo Heister [Thu, 24 Sep 2015 12:14:05 +0000 (08:14 -0400)]
Merge pull request #1665 from bangerth/update-doc-38

Fix a name in the changelog and test header.

8 years agoFix name of Claire Bruna-Rosso. 1665/head
Wolfgang Bangerth [Thu, 24 Sep 2015 11:25:46 +0000 (06:25 -0500)]
Fix name of Claire Bruna-Rosso.

8 years agoMerge pull request #1664 from kronbichler/master
Matthias Maier [Thu, 24 Sep 2015 05:22:39 +0000 (00:22 -0500)]
Merge pull request #1664 from kronbichler/master

Fix test failures

8 years agoAdd missing instantiations. 1664/head
Martin Kronbichler [Thu, 24 Sep 2015 05:04:57 +0000 (07:04 +0200)]
Add missing instantiations.

8 years agoFix test case
Martin Kronbichler [Thu, 24 Sep 2015 05:04:38 +0000 (07:04 +0200)]
Fix test case

8 years agoMerge pull request #1662 from bangerth/doc-update-37
Wolfgang Bangerth [Thu, 24 Sep 2015 01:38:53 +0000 (20:38 -0500)]
Merge pull request #1662 from bangerth/doc-update-37

Just a couple of minor comment updates.

8 years agoJust a couple of minor comment updates. 1662/head
Wolfgang Bangerth [Wed, 23 Sep 2015 22:22:12 +0000 (17:22 -0500)]
Just a couple of minor comment updates.

8 years agoMerge pull request #1661 from bangerth/reclassify-tutorials
Bruno Turcksin [Wed, 23 Sep 2015 22:23:38 +0000 (17:23 -0500)]
Merge pull request #1661 from bangerth/reclassify-tutorials

Reclassify unfinished tutorials.

8 years agoReclassify unfinished tutorials. 1661/head
Wolfgang Bangerth [Wed, 23 Sep 2015 22:21:17 +0000 (17:21 -0500)]
Reclassify unfinished tutorials.

This way, they show up as open, dashed boxes in the tutorial graph.

8 years agoMerge pull request #1660 from bangerth/fix-solution-transfer-with-fenothing
Bruno Turcksin [Wed, 23 Sep 2015 22:13:54 +0000 (17:13 -0500)]
Merge pull request #1660 from bangerth/fix-solution-transfer-with-fenothing

Fix a place where hp::SolutionTransfer gets confused with FE_Nothing.

8 years agoFix a place where hp::SolutionTransfer gets confused with FE_Nothing. 1660/head
Wolfgang Bangerth [Wed, 23 Sep 2015 18:28:13 +0000 (13:28 -0500)]
Fix a place where hp::SolutionTransfer gets confused with FE_Nothing.

This fixes a testcase reported by Claire Br. on the mailing list.

9 years agoEnable using wrapped trilinos preconditioner with unwrapped solver 1590/head
Lei Qiao [Sun, 13 Sep 2015 01:47:11 +0000 (20:47 -0500)]
Enable using wrapped trilinos preconditioner with unwrapped solver

9 years agoMerge pull request #1659 from Rombur/fix_petsc_readwritevector
Wolfgang Bangerth [Wed, 23 Sep 2015 17:57:33 +0000 (12:57 -0500)]
Merge pull request #1659 from Rombur/fix_petsc_readwritevector

Fix a bug with petsc in readwritevector.

9 years agoFix a bug with petsc in readwritevector. 1659/head
Bruno Turcksin [Wed, 23 Sep 2015 17:55:37 +0000 (12:55 -0500)]
Fix a bug with petsc in readwritevector.

9 years agoremoved overloads 1657/head
alberto sartori [Wed, 23 Sep 2015 15:36:06 +0000 (17:36 +0200)]
removed overloads

9 years agoMerge pull request #1650 from kronbichler/multigrid_for_parallel_vector
Martin Kronbichler [Wed, 23 Sep 2015 15:37:09 +0000 (17:37 +0200)]
Merge pull request #1650 from kronbichler/multigrid_for_parallel_vector

Multigrid for parallel vector

9 years agoEnable using MatrixFree and multigrid together in parallel, including test 1650/head
Martin Kronbichler [Tue, 22 Sep 2015 17:15:10 +0000 (19:15 +0200)]
Enable using MatrixFree and multigrid together in parallel, including test

9 years agoList change
Martin Kronbichler [Tue, 22 Sep 2015 16:19:23 +0000 (18:19 +0200)]
List change

9 years agoEnable MGTransferPrebuilt with parallel::distributed::Vector and Trilinos.
Martin Kronbichler [Tue, 22 Sep 2015 16:17:07 +0000 (18:17 +0200)]
Enable MGTransferPrebuilt with parallel::distributed::Vector and Trilinos.
Fix MGTransfer for 64 bit indices (and computations beyond 32 bit).

9 years agoCompute multigrid dof handler also for distributed policy 3D
Martin Kronbichler [Tue, 22 Sep 2015 16:15:54 +0000 (18:15 +0200)]
Compute multigrid dof handler also for distributed policy 3D

9 years agoAvoid setting the constant mode as a right hand side
Martin Kronbichler [Sat, 15 Aug 2015 08:46:57 +0000 (10:46 +0200)]
Avoid setting the constant mode as a right hand side
(works also in distributed computation case)
Adjust tolerance and update test

9 years agoMerge pull request #1514 from Rombur/new-vector-interfaces
Wolfgang Bangerth [Wed, 23 Sep 2015 11:23:32 +0000 (06:23 -0500)]
Merge pull request #1514 from Rombur/new-vector-interfaces

New vector interfaces

9 years agoMerge pull request #1654 from maieneuro/doc_fix
Martin Kronbichler [Wed, 23 Sep 2015 07:47:30 +0000 (09:47 +0200)]
Merge pull request #1654 from maieneuro/doc_fix

removed no-longer-applicable comment in FE_Nedelec

9 years agoremoved no-longer-applicable comment in FE_Nedelec 1654/head
Maien Hamed [Wed, 23 Sep 2015 07:29:45 +0000 (09:29 +0200)]
removed no-longer-applicable comment in FE_Nedelec


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.