]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
9 years agofix SparseMIC 602/head
Timo Heister [Wed, 25 Feb 2015 13:56:22 +0000 (08:56 -0500)]
fix SparseMIC

We need to initialize the decomposition before we can look at this->m()
and this->n(). Bug got introduced in 27b50d8.

9 years agoMerge pull request #597 from bangerth/add-test-4
Wolfgang Bangerth [Wed, 25 Feb 2015 13:02:45 +0000 (07:02 -0600)]
Merge pull request #597 from bangerth/add-test-4

Update Utilities::split_string_list

9 years agoAdd another test. Update another. 597/head
Wolfgang Bangerth [Tue, 24 Feb 2015 23:46:55 +0000 (17:46 -0600)]
Add another test. Update another.

9 years agoClarify some of the corner cases of the split_string_list() function.
Wolfgang Bangerth [Tue, 24 Feb 2015 23:45:39 +0000 (17:45 -0600)]
Clarify some of the corner cases of the split_string_list() function.

9 years agoMerge pull request #197 from rosskynch/fix_project_bv_curl_conf
Wolfgang Bangerth [Tue, 24 Feb 2015 23:41:36 +0000 (17:41 -0600)]
Merge pull request #197 from rosskynch/fix_project_bv_curl_conf

Fix project bv curl conf

9 years agoMerge pull request #595 from mfherbst/master
Wolfgang Bangerth [Tue, 24 Feb 2015 23:30:50 +0000 (17:30 -0600)]
Merge pull request #595 from mfherbst/master

Use AlignedVector::size_type in all of table.h

9 years agoMerge pull request #596 from tjhei/petsc_mat_compress
Wolfgang Bangerth [Tue, 24 Feb 2015 23:28:23 +0000 (17:28 -0600)]
Merge pull request #596 from tjhei/petsc_mat_compress

PETSc mat compress

9 years agofix a few broken tests 596/head
Timo Heister [Tue, 24 Feb 2015 17:51:50 +0000 (12:51 -0500)]
fix a few broken tests

Looks like somebody messed up the VectorOperation in compress() in many
places.

9 years agoAdd a test for a patch by Menno Fraters this morning.
Wolfgang Bangerth [Tue, 24 Feb 2015 22:33:33 +0000 (16:33 -0600)]
Add a test for a patch by Menno Fraters this morning.

9 years agoadd compress() error checks for PETSc vectors
Timo Heister [Tue, 24 Feb 2015 15:10:30 +0000 (10:10 -0500)]
add compress() error checks for PETSc vectors

9 years agoremove compress without args from all PETSc sparse matrix types
Timo Heister [Tue, 24 Feb 2015 14:45:01 +0000 (09:45 -0500)]
remove compress without args from all PETSc sparse matrix types

- compress() without arguments was deprecated and now got remove
- replace redundant LastAction enum in by VectorOperation
- add additional compress() check.

9 years agoMerge branch 'master' of https://github.com/dealii/dealii 595/head
Michael F. Herbst [Tue, 24 Feb 2015 15:14:04 +0000 (16:14 +0100)]
Merge branch 'master' of https://github.com/dealii/dealii

9 years agoUse AlignedVector::size_type in all of table.h
Michael F. Herbst [Tue, 24 Feb 2015 15:07:59 +0000 (16:07 +0100)]
Use AlignedVector::size_type in all of table.h

In all classes of table.h the type Use AlignedVector::size_type is now
used for the calculation of indices for the values vector and the
indexing of elements in the values vector.

Note: This commit changes the interface of the n_elements function
in TableBase<N,T>

9 years agoMerge pull request #594 from MFraters/patch-1
Wolfgang Bangerth [Tue, 24 Feb 2015 14:21:51 +0000 (08:21 -0600)]
Merge pull request #594 from MFraters/patch-1

empty string in split_string_list fix

9 years agoAdded project_boundary_values_curl_conforming_l2() to VectorTools for 197/head
Ross Kynch [Tue, 14 Oct 2014 13:54:57 +0000 (14:54 +0100)]
Added project_boundary_values_curl_conforming_l2() to VectorTools for
use with FE_Nedelec elements in 2D & 3D.

This includes a test code included in tests/deal.II to check it works correctly.

This new function uses an L2-projection on edges and
faces (only edges in 2D, both for 3D) to compute
the constaints and factors in the residual from the edge
projection when computing the face constraints. The original
function project_boundary_values_curl_conforming() has
problems with non-rectangular faces, this one does not. The
function assumes that the face orientations are standard (e.g. a
sphere may cause problems due to mismatched face orientations).

The test shows that project_boundary_curl_conforming_l2() works on a
distorted cube (non-rectangular faces) for a simple test case
(polynomial function).

9 years agoMerge pull request #593 from bangerth/remove-deprecated-functions-13
Martin Kronbichler [Tue, 24 Feb 2015 13:42:17 +0000 (14:42 +0100)]
Merge pull request #593 from bangerth/remove-deprecated-functions-13

Remove deprecated function SparseLUDecomposition::decompose.

9 years agoChanged evaluation order 594/head
MFraters [Tue, 24 Feb 2015 13:38:40 +0000 (14:38 +0100)]
Changed evaluation order

9 years agoUpdate documentation. 593/head
Wolfgang Bangerth [Tue, 24 Feb 2015 13:37:42 +0000 (07:37 -0600)]
Update documentation.

9 years agoRemove the SparseLUDecomposition::decomposed variable.
Wolfgang Bangerth [Tue, 24 Feb 2015 13:27:40 +0000 (07:27 -0600)]
Remove the SparseLUDecomposition::decomposed variable.

It is only ever written to, never read.

9 years agoUse AlignedVector::size_type in Table::operator()
Michael F. Herbst [Tue, 24 Feb 2015 11:57:18 +0000 (12:57 +0100)]
Use AlignedVector::size_type in Table::operator()

Use AlignedVector<T>::size_type as the integer type to carry out the
calculation of the index in the values AlignedVector object for the
various operator() and el() functions of Table<N,T> and its explicit
specialisations.

9 years agoempty string in split_string_list fix
MFraters [Tue, 24 Feb 2015 10:32:07 +0000 (11:32 +0100)]
empty string in split_string_list fix

When an empty string or a string with only spaces is given to this function, the split_string_list function will ask in line 222 for name[-1], which will result in unpredictable behaviour. I propose to prevent this by adding a condition that the length of the string may not be 0.

9 years agoMerge pull request #576 from dakshinai/master
Martin Kronbichler [Tue, 24 Feb 2015 08:11:05 +0000 (09:11 +0100)]
Merge pull request #576 from dakshinai/master

modified filtered_matrix tests to work with square matrices only

9 years agoRemove deprecated function SparseLUDecomposition::decompose.
Wolfgang Bangerth [Tue, 24 Feb 2015 03:23:27 +0000 (21:23 -0600)]
Remove deprecated function SparseLUDecomposition::decompose.

9 years agoMerge pull request #591 from tjhei/wrapcomments
Wolfgang Bangerth [Mon, 23 Feb 2015 21:31:27 +0000 (15:31 -0600)]
Merge pull request #591 from tjhei/wrapcomments

wrapcomments

9 years agoMerge pull request #592 from tjhei/ez_const_fix
Wolfgang Bangerth [Mon, 23 Feb 2015 21:31:18 +0000 (15:31 -0600)]
Merge pull request #592 from tjhei/ez_const_fix

add missing const

9 years agoadd missing const 592/head
Timo Heister [Mon, 23 Feb 2015 21:27:45 +0000 (16:27 -0500)]
add missing const

Doxygen was rightfully complaining

9 years agosneak in documentation improvements 591/head
Timo Heister [Mon, 23 Feb 2015 21:25:20 +0000 (16:25 -0500)]
sneak in documentation improvements

9 years agorun wrapcomments
Timo Heister [Mon, 23 Feb 2015 21:20:40 +0000 (16:20 -0500)]
run wrapcomments

9 years agomanual edits to doxygen comments
Timo Heister [Mon, 23 Feb 2015 21:06:01 +0000 (16:06 -0500)]
manual edits to doxygen comments

9 years agoupdate wrapcomments script
Timo Heister [Mon, 23 Feb 2015 20:58:12 +0000 (15:58 -0500)]
update wrapcomments script

handle many additional doxygen commands correctly

9 years agoMerge pull request #588 from bangerth/unique_ptr
Timo Heister [Mon, 23 Feb 2015 14:58:15 +0000 (09:58 -0500)]
Merge pull request #588 from bangerth/unique_ptr

Add a workaround class for std::unique_ptr that can also be used in the ...

9 years agoMerge pull request #590 from kronbichler/master
Wolfgang Bangerth [Mon, 23 Feb 2015 14:34:16 +0000 (08:34 -0600)]
Merge pull request #590 from kronbichler/master

Comment on the behavior of FE_TraceQ as compared to FE_Q.

9 years agoMerge pull request #589 from mfherbst/master
Wolfgang Bangerth [Mon, 23 Feb 2015 14:32:37 +0000 (08:32 -0600)]
Merge pull request #589 from mfherbst/master

Use AlignedVector::size_type in TableBase::position

9 years agoComment on the behavior of FE_TraceQ as compared to FE_Q. 590/head
Martin Kronbichler [Mon, 23 Feb 2015 14:29:36 +0000 (15:29 +0100)]
Comment on the behavior of FE_TraceQ as compared to FE_Q.

9 years agoMerge remote-tracking branch 'upstream/master' 589/head
Michael F. Herbst [Mon, 23 Feb 2015 14:28:07 +0000 (15:28 +0100)]
Merge remote-tracking branch 'upstream/master'

9 years agoUse AlignedVector::size_type in TableBase::position
Michael F. Herbst [Mon, 23 Feb 2015 13:59:05 +0000 (14:59 +0100)]
Use AlignedVector::size_type in TableBase::position

Use AlignedVector<T>::size_type as the integer type to carry out the
calculation of the position of the element indicated by the
TableIndices<N> object.

This has the advantage that a potential integer overflow for Tables
with sizes less than max long int in each dimension, but with more than
max long int entries is prevented.

9 years agoMerge pull request #585 from kronbichler/master
Martin Kronbichler [Mon, 23 Feb 2015 12:09:42 +0000 (13:09 +0100)]
Merge pull request #585 from kronbichler/master

Enable make_hanging_node_constraints with FE_TraceQ.

9 years agoAdd test case for static condensation with FE_TraceQ. 585/head
Martin Kronbichler [Mon, 23 Feb 2015 12:04:19 +0000 (13:04 +0100)]
Add test case for static condensation with FE_TraceQ.

9 years agoEnable make_hanging_node_constraints with FE_TraceQ.
Martin Kronbichler [Sat, 21 Feb 2015 17:31:45 +0000 (18:31 +0100)]
Enable make_hanging_node_constraints with FE_TraceQ.

Patch by Anton Evgrafov.

9 years agoAdd a workaround class for std::unique_ptr that can also be used in the non-C++11... 588/head
Wolfgang Bangerth [Mon, 23 Feb 2015 04:58:52 +0000 (22:58 -0600)]
Add a workaround class for std::unique_ptr that can also be used in the non-C++11 context.

9 years agoMerge pull request #581 from bangerth/doc-update-8
Timo Heister [Mon, 23 Feb 2015 02:33:59 +0000 (21:33 -0500)]
Merge pull request #581 from bangerth/doc-update-8

Better document FESystem.

9 years agoMerge pull request #587 from bangerth/add-value_type-for-IndexSet
Timo Heister [Mon, 23 Feb 2015 02:29:52 +0000 (21:29 -0500)]
Merge pull request #587 from bangerth/add-value_type-for-IndexSet

Add a local typedef IndexSet::value_type.

9 years agoFix typo. 587/head
Wolfgang Bangerth [Mon, 23 Feb 2015 00:14:40 +0000 (18:14 -0600)]
Fix typo.

9 years agoAdd a local typedef IndexSet::value_type.
Wolfgang Bangerth [Sun, 22 Feb 2015 22:10:21 +0000 (16:10 -0600)]
Add a local typedef IndexSet::value_type.

9 years agoMerge pull request #584 from drwells/add-data-filter-to-hdf5-test
Wolfgang Bangerth [Sun, 22 Feb 2015 19:30:41 +0000 (13:30 -0600)]
Merge pull request #584 from drwells/add-data-filter-to-hdf5-test

Add data filter to hdf5 test

9 years agoMerge pull request #586 from tjhei/doc_updates
Wolfgang Bangerth [Sun, 22 Feb 2015 04:42:14 +0000 (22:42 -0600)]
Merge pull request #586 from tjhei/doc_updates

documentation updates

9 years agoimprove TrilinosWrappers::PreconditionILU documentation 586/head
Timo Heister [Sun, 22 Feb 2015 02:01:33 +0000 (21:01 -0500)]
improve TrilinosWrappers::PreconditionILU documentation

9 years agodocument SparsityPattern::bandwidth
Timo Heister [Sun, 22 Feb 2015 02:00:20 +0000 (21:00 -0500)]
document SparsityPattern::bandwidth

9 years agoImproved the style. 584/head
David Wells [Sat, 21 Feb 2015 17:06:44 +0000 (12:06 -0500)]
Improved the style.
I ran astyle (deleted trailing whitespace) and removed some
commented-out code.

9 years agoRemoved deprecated call to `write_hdf5_parallel`.
David Wells [Sat, 21 Feb 2015 17:04:21 +0000 (12:04 -0500)]
Removed deprecated call to `write_hdf5_parallel`.
This function has been superceded by one with the same name that
requires an additional parameter.

9 years agoUse correct doxygen tag for video lectures. 581/head
Wolfgang Bangerth [Sat, 21 Feb 2015 02:52:15 +0000 (20:52 -0600)]
Use correct doxygen tag for video lectures.

9 years agoAdd a testcase.
Wolfgang Bangerth [Fri, 20 Feb 2015 23:38:13 +0000 (17:38 -0600)]
Add a testcase.

9 years agoFigure out and document a way to call the FESystem constructor with multiple base...
Wolfgang Bangerth [Fri, 20 Feb 2015 23:37:41 +0000 (17:37 -0600)]
Figure out and document a way to call the FESystem constructor with multiple base elements.

This is non-trivial in C++ before C++11 and in particular if one wants to
avoid memory leaks.

9 years agoReference video lectures.
Wolfgang Bangerth [Fri, 20 Feb 2015 22:30:32 +0000 (16:30 -0600)]
Reference video lectures.

9 years agoUpdate a few comments.
Wolfgang Bangerth [Fri, 20 Feb 2015 22:29:50 +0000 (16:29 -0600)]
Update a few comments.

9 years agoMerge pull request #520 from Rombur/threads_init
Timo Heister [Fri, 20 Feb 2015 19:29:57 +0000 (14:29 -0500)]
Merge pull request #520 from Rombur/threads_init

Add set_thread_limit in step-9.

9 years agoAdd set_thread_limit in step-9. 520/head
Bruno Turcksin [Fri, 20 Feb 2015 17:14:29 +0000 (11:14 -0600)]
Add set_thread_limit in step-9.

9 years agoMerge pull request #580 from bangerth/step-7-update
Timo Heister [Fri, 20 Feb 2015 16:32:57 +0000 (11:32 -0500)]
Merge pull request #580 from bangerth/step-7-update

Update the documentation of step-7.

In particular, name the Method of Manufactured Solutions in the documentation.

9 years agoUpdate the documentation of step-7. 580/head
Wolfgang Bangerth [Fri, 20 Feb 2015 16:21:19 +0000 (10:21 -0600)]
Update the documentation of step-7.

In particular, name the Method of Manufactured Solutions in the documentation.

9 years agoMerge pull request #575 from kronbichler/master
Wolfgang Bangerth [Thu, 19 Feb 2015 22:01:07 +0000 (16:01 -0600)]
Merge pull request #575 from kronbichler/master

Improve documentation of VectorMemory in Solver

9 years agoMerge pull request #578 from tamiko/fix_bundled_umfpack
Wolfgang Bangerth [Thu, 19 Feb 2015 21:58:49 +0000 (15:58 -0600)]
Merge pull request #578 from tamiko/fix_bundled_umfpack

CMake: Bugfix: Also install bundled Umfpack headers

9 years agoCMake: Bugfix: Also install bundled Umfpack headers 578/head
Matthias Maier [Thu, 19 Feb 2015 19:17:05 +0000 (20:17 +0100)]
CMake: Bugfix: Also install bundled Umfpack headers

With "sparse_direct.h" directly including "umfpack.h" we also have to make
sure to install the bundled header files...

9 years agoMerge pull request #577 from tjhei/mpi_file_fixes
Bruno Turcksin [Thu, 19 Feb 2015 19:11:44 +0000 (13:11 -0600)]
Merge pull request #577 from tjhei/mpi_file_fixes

fix status parameter in MPI_File_write

9 years agofix status parameter in MPI_File_write 577/head
Timo Heister [Thu, 19 Feb 2015 18:27:09 +0000 (13:27 -0500)]
fix status parameter in MPI_File_write

Reported by Thomas Geenen. Setting the MPI_Status* parameter to NULL is
not correct and fails with intel MPI. The correct argument to pass is
MPI_STATUS_IGNORE.

9 years agoImprove documentation 575/head
Martin Kronbichler [Thu, 19 Feb 2015 13:58:11 +0000 (14:58 +0100)]
Improve documentation

9 years agoMerge pull request #574 from bangerth/doc-update-7
Martin Kronbichler [Thu, 19 Feb 2015 13:40:14 +0000 (14:40 +0100)]
Merge pull request #574 from bangerth/doc-update-7

Improve error messages.

9 years agoImprove error messages. 574/head
Wolfgang Bangerth [Thu, 19 Feb 2015 13:34:07 +0000 (07:34 -0600)]
Improve error messages.

Using bare exceptions without any explanatory text in so many places was a bad idea right from the beginning, though nobody seems to have noticed for a long time. This replaces a bare exception with an ExcMessage in a couple of places.

9 years agoMerge pull request #572 from kronbichler/cleanup_mapping
Wolfgang Bangerth [Thu, 19 Feb 2015 11:57:12 +0000 (05:57 -0600)]
Merge pull request #572 from kronbichler/cleanup_mapping

Remove a few 1D specializations for mapping.

9 years agoRemove a few 1D specializations for mapping. 572/head
Martin Kronbichler [Thu, 19 Feb 2015 09:50:55 +0000 (10:50 +0100)]
Remove a few 1D specializations for mapping.

The old implementation of MappingQEulerian only moved the vertices
in 1D, not interior points for higher order mappings. While it might
be debatable how useful non-linear mappings are in 1D, this was not
documented and lead to surprising behavior. By making the class more
general we can actually make our code base simpler because we can remove
a few template specialization and use the same code as in higher
dimensions.

9 years agoMerge pull request #566 from kronbichler/fix_vector_memory
Matthias Maier [Thu, 19 Feb 2015 10:04:37 +0000 (11:04 +0100)]
Merge pull request #566 from kronbichler/fix_vector_memory

Put implementation (Growing)VectorMemory into .templates.h file

9 years agoMerge pull request #571 from kronbichler/tensor_vs_point_fix
Matthias Maier [Thu, 19 Feb 2015 10:03:31 +0000 (11:03 +0100)]
Merge pull request #571 from kronbichler/tensor_vs_point_fix

More Point vs Tensor fixes

9 years agoMore Point vs Tensor fixes 571/head
Martin Kronbichler [Thu, 19 Feb 2015 07:50:40 +0000 (08:50 +0100)]
More Point vs Tensor fixes

9 years agomodified filtered_matrix tests to work with square matrices only 576/head
Dakshina Ilangovan [Thu, 19 Feb 2015 02:57:26 +0000 (20:57 -0600)]
modified filtered_matrix tests to work with square matrices only

modified filtered_matrix tests to work with square matrices only

9 years agoPut implementation (Growing)VectorMemory into .templates.h file 566/head
Martin Kronbichler [Wed, 18 Feb 2015 16:35:18 +0000 (17:35 +0100)]
Put implementation (Growing)VectorMemory into .templates.h file

This enables users to provide instantiations of the class for non-deal.II
vector types and their use in Solver classes.

Reported by Karl Ljungkvist.

9 years agoMerge pull request #568 from bangerth/further-tensor-fixes
Martin Kronbichler [Wed, 18 Feb 2015 21:01:43 +0000 (22:01 +0100)]
Merge pull request #568 from bangerth/further-tensor-fixes

More Point vs Tensor fixes.

9 years agoMerge pull request #567 from tamiko/export_umfpack_include_dir
Guido Kanschat [Wed, 18 Feb 2015 19:50:58 +0000 (20:50 +0100)]
Merge pull request #567 from tamiko/export_umfpack_include_dir

CMake: Bugfix: Also export suitesparse include directories in project config

9 years agoMore Point vs Tensor fixes. 568/head
Wolfgang Bangerth [Wed, 18 Feb 2015 19:42:32 +0000 (13:42 -0600)]
More Point vs Tensor fixes.

9 years agoCMake: Bugfix: Also export suitesparse include directories in project config 567/head
Matthias Maier [Wed, 18 Feb 2015 19:31:36 +0000 (20:31 +0100)]
CMake: Bugfix: Also export suitesparse include directories in project config

With 053bb82 a direct include of "umfpack.h" was introduced in
"sparse_direct.h" which makes it necessary for the user to have the umfpack
include directory location available

Closes #564

9 years agoMerge pull request #565 from bangerth/more-tensor-fixes
Wolfgang Bangerth [Wed, 18 Feb 2015 17:00:40 +0000 (11:00 -0600)]
Merge pull request #565 from bangerth/more-tensor-fixes

More changes hoping to make the compiler happy with OpenCascade interfaces again

9 years agoMore changes hoping to make the compiler happy with OpenCascade interfaces again. 565/head
Wolfgang Bangerth [Wed, 18 Feb 2015 16:29:38 +0000 (10:29 -0600)]
More changes hoping to make the compiler happy with OpenCascade interfaces again.

9 years agoMerge pull request #562 from bangerth/tensor-fixes
Wolfgang Bangerth [Wed, 18 Feb 2015 12:47:00 +0000 (06:47 -0600)]
Merge pull request #562 from bangerth/tensor-fixes

Tensor fixes

9 years agoFurther fixes to accommodate new Point vs Tensor distinction. 562/head
Wolfgang Bangerth [Wed, 18 Feb 2015 12:46:37 +0000 (06:46 -0600)]
Further fixes to accommodate new Point vs Tensor distinction.

9 years agoMerge pull request #563 from bangerth/doc-updates-5
Martin Kronbichler [Wed, 18 Feb 2015 07:43:57 +0000 (08:43 +0100)]
Merge pull request #563 from bangerth/doc-updates-5

Doc updates for build_patches().

9 years agoDoc updates for build_patches(). 563/head
Wolfgang Bangerth [Wed, 18 Feb 2015 00:11:35 +0000 (18:11 -0600)]
Doc updates for build_patches().

9 years agoRemove a partial specialization that creates trouble due to ambiguity
Wolfgang Bangerth [Tue, 17 Feb 2015 23:46:37 +0000 (17:46 -0600)]
Remove a partial specialization that creates trouble due to ambiguity
and that looks wrong anyway.

9 years agoHopefully fix a few build regressions with opencascade (can't test here
Wolfgang Bangerth [Tue, 17 Feb 2015 23:46:04 +0000 (17:46 -0600)]
Hopefully fix a few build regressions with opencascade (can't test here
since no opencascade installation locally available).

9 years agoMerge pull request #560 from tjhei/multithread_deprecation
Timo Heister [Tue, 17 Feb 2015 11:51:48 +0000 (06:51 -0500)]
Merge pull request #560 from tjhei/multithread_deprecation

more multithread_info fixes

- initialize static members correctly when THREADS=OFF
- update documentation
- do not use deprecated multithread_info instance
- use n_cores() instead of n_cpus

9 years agofix multithread_info when THREADS=OFF 560/head
Timo Heister [Tue, 17 Feb 2015 11:33:33 +0000 (06:33 -0500)]
fix multithread_info when THREADS=OFF

static members have to be initialized even if deal.II is configured
without multithreading.

9 years agomore multithread_info deprecation fixes
Timo Heister [Tue, 17 Feb 2015 11:12:46 +0000 (06:12 -0500)]
more multithread_info deprecation fixes

9 years agoMerge pull request #559 from guidokanschat/fix_multithreading_issues
Timo Heister [Tue, 17 Feb 2015 11:14:28 +0000 (06:14 -0500)]
Merge pull request #559 from guidokanschat/fix_multithreading_issues

Fix issues with multithreading off and remove deprecated usage

9 years agoFix issues with multithreading off 559/head
Guido Kanschat [Tue, 17 Feb 2015 02:05:04 +0000 (03:05 +0100)]
Fix issues with multithreading off

9 years agoMerge pull request #558 from bangerth/update-product-type
Timo Heister [Tue, 17 Feb 2015 01:41:03 +0000 (20:41 -0500)]
Merge pull request #558 from bangerth/update-product-type

Provide specializations for ProductType<T,T>. Add a test.

9 years agoProvide specializations for ProductType<T,T>. Add a test. 558/head
Wolfgang Bangerth [Mon, 16 Feb 2015 22:08:28 +0000 (16:08 -0600)]
Provide specializations for ProductType<T,T>. Add a test.

9 years agoMerge pull request #555 from bangerth/doc-fixes-12
Timo Heister [Mon, 16 Feb 2015 22:03:52 +0000 (17:03 -0500)]
Merge pull request #555 from bangerth/doc-fixes-12

Fix a number of doxygen issues.

9 years agoMerge pull request #556 from bangerth/remove-deprecated-functions-13
Timo Heister [Mon, 16 Feb 2015 22:03:00 +0000 (17:03 -0500)]
Merge pull request #556 from bangerth/remove-deprecated-functions-13

Remove deprecated functions from SparseMIC and SparseLUDecomposition

9 years agoMerge pull request #552 from bangerth/update-point
Wolfgang Bangerth [Mon, 16 Feb 2015 22:00:02 +0000 (16:00 -0600)]
Merge pull request #552 from bangerth/update-point

Rename template args of Point and Tensor

9 years agoUpdate documentation in Point and Tensor. 552/head
Wolfgang Bangerth [Sun, 15 Feb 2015 21:13:53 +0000 (15:13 -0600)]
Update documentation in Point and Tensor.

In particular, document the intent of the various template arguments.

9 years agoRemove deprecated functions from SparseLUDecomposition. 556/head
Wolfgang Bangerth [Mon, 16 Feb 2015 20:03:53 +0000 (14:03 -0600)]
Remove deprecated functions from SparseLUDecomposition.

9 years agoWe can't have two @ingroup statements for one function, apparently. 555/head
Wolfgang Bangerth [Mon, 16 Feb 2015 19:52:48 +0000 (13:52 -0600)]
We can't have two @ingroup statements for one function, apparently.

9 years agoTurns out that we cannot have @brief or @file commands used in a way that would docum...
Wolfgang Bangerth [Mon, 16 Feb 2015 19:48:39 +0000 (13:48 -0600)]
Turns out that we cannot have @brief or @file commands used in a way that would document the current file. Make it a regular comment instead.


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.