]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
9 years agoAdd a few operator overloads.
Wolfgang Bangerth [Thu, 5 Feb 2015 03:04:53 +0000 (21:04 -0600)]
Add a few operator overloads.

9 years agoIntroduce a type that can be used to determine whether a template argument is a scala...
Wolfgang Bangerth [Wed, 11 Feb 2015 14:00:27 +0000 (08:00 -0600)]
Introduce a type that can be used to determine whether a template argument is a scalar or not.

9 years agoIntroduce a new type ProductType to evaluate the result of a product.
Wolfgang Bangerth [Wed, 4 Feb 2015 14:45:58 +0000 (08:45 -0600)]
Introduce a new type ProductType to evaluate the result of a product.

9 years agoDisambiguate the use of operator*
Wolfgang Bangerth [Wed, 11 Feb 2015 13:58:30 +0000 (07:58 -0600)]
Disambiguate the use of operator*

9 years agoDisambiguate which operator* we want to take.
Wolfgang Bangerth [Wed, 11 Feb 2015 04:19:11 +0000 (22:19 -0600)]
Disambiguate which operator* we want to take.

Use an explicitly cast from int to double in a few places.

9 years agoMerge pull request #521 from tjhei/tensor_example_fixes
Wolfgang Bangerth [Wed, 11 Feb 2015 22:23:33 +0000 (16:23 -0600)]
Merge pull request #521 from tjhei/tensor_example_fixes

fix examples for Tensor/Point changes

9 years agoone more example 521/head
Timo Heister [Wed, 11 Feb 2015 22:21:31 +0000 (17:21 -0500)]
one more example

9 years agofix examples for Tensor/Point changes
Timo Heister [Wed, 11 Feb 2015 22:19:28 +0000 (17:19 -0500)]
fix examples for Tensor/Point changes

9 years agoMerge pull request #519 from dealii/revert-509-fix_step_dealii_path
Wolfgang Bangerth [Wed, 11 Feb 2015 22:19:20 +0000 (16:19 -0600)]
Merge pull request #519 from dealii/revert-509-fix_step_dealii_path

Revert "Add new relative path for new directory structure"

9 years agoMerge pull request #517 from tjhei/fix_step_50
Wolfgang Bangerth [Wed, 11 Feb 2015 17:18:41 +0000 (11:18 -0600)]
Merge pull request #517 from tjhei/fix_step_50

fix step-50

9 years agoRevert "Add new relative path for new directory structure" 519/head
Timo Heister [Wed, 11 Feb 2015 17:16:22 +0000 (12:16 -0500)]
Revert "Add new relative path for new directory structure"

9 years agoMerge pull request #515 from bangerth/terminate-loop-and-error-message
Timo Heister [Wed, 11 Feb 2015 17:15:41 +0000 (12:15 -0500)]
Merge pull request #515 from bangerth/terminate-loop-and-error-message

Terminate a loop in a timely manner.

In StraightBoundary::normal_vector(), we currently have a loop that could run
forever. This is not useful. Rather, terminate it after at most 10 iterations
and if it fails output some guidance to what the reason may be.

9 years agoMerge pull request #518 from tjhei/wrap_comments_update
Wolfgang Bangerth [Wed, 11 Feb 2015 16:05:40 +0000 (10:05 -0600)]
Merge pull request #518 from tjhei/wrap_comments_update

wrapcomments.py: do not break @page

9 years agofix step-50 517/head
Timo Heister [Wed, 11 Feb 2015 15:52:18 +0000 (10:52 -0500)]
fix step-50

Commit 6370be0 (use mg::Matrix instead of MGMatrix) didn't compile for
me. Also remove usage of deprecated get_refinement_edge_indices() and
leave a note.

9 years agowrapcomments.py: do not break @page 518/head
Timo Heister [Wed, 11 Feb 2015 15:58:31 +0000 (10:58 -0500)]
wrapcomments.py: do not break @page

9 years agoMerge pull request #516 from guidokanschat/step-50-mgmatrix
Wolfgang Bangerth [Wed, 11 Feb 2015 15:30:02 +0000 (09:30 -0600)]
Merge pull request #516 from guidokanschat/step-50-mgmatrix

change deprecated MGMatrix

Closes #411

9 years agochange deprecated MGMatrix 516/head
Guido Kanschat [Wed, 11 Feb 2015 15:23:26 +0000 (16:23 +0100)]
change deprecated MGMatrix

9 years agoTerminate a loop in a timely manner. 515/head
Wolfgang Bangerth [Wed, 11 Feb 2015 13:49:21 +0000 (07:49 -0600)]
Terminate a loop in a timely manner.

In StraightBoundary::normal_vector(), we currently have a loop that could run
forever. This is not useful. Rather, terminate it after at most 10 iterations
and if it fails output some guidance to what the reason may be.

9 years agoMerge pull request #510 from tamiko/default_reldirs
Guido Kanschat [Wed, 11 Feb 2015 07:53:27 +0000 (08:53 +0100)]
Merge pull request #510 from tamiko/default_reldirs

CMake: Reintroduce old installation behavior

9 years agoMerge pull request #513 from bangerth/tutorial-updates
Guido Kanschat [Wed, 11 Feb 2015 07:52:12 +0000 (08:52 +0100)]
Merge pull request #513 from bangerth/tutorial-updates

Tutorial updates and some more deprecations

9 years agoMerge pull request #514 from bangerth/fix-tests-post-bdm-merge
Guido Kanschat [Wed, 11 Feb 2015 07:36:46 +0000 (08:36 +0100)]
Merge pull request #514 from bangerth/fix-tests-post-bdm-merge

Update tests after the BDM patches that were committed today (pull request #464).

9 years agoUpdate tests after the BDM patches that were committed today (pull request #464). 514/head
Wolfgang Bangerth [Wed, 11 Feb 2015 03:43:12 +0000 (21:43 -0600)]
Update tests after the BDM patches that were committed today (pull request #464).

9 years agoAdd #include <iostream> to a few tutorial programs. 513/head
Wolfgang Bangerth [Wed, 11 Feb 2015 00:19:13 +0000 (18:19 -0600)]
Add #include <iostream> to a few tutorial programs.

These are the tutorial programs that use std::cout or std::endl, which we need to
get from <iostream> but don't currently. Presumably because we include it transitively,
but for the sake of learning deal.II and C++, this is one more and unnecessary step
to understand. It turns out it also makes Eclipse happier if we do the explicit
#include, as it shows fewer source errors.

9 years agoUpdate a couple of formulas that gave Lei a fit (because, admittedly, they were not...
Wolfgang Bangerth [Tue, 10 Feb 2015 23:27:48 +0000 (17:27 -0600)]
Update a couple of formulas that gave Lei a fit (because, admittedly, they were not particularly clear).

9 years agoDeprecate a function that should have been deprecated a long time ago.
Wolfgang Bangerth [Tue, 10 Feb 2015 23:23:52 +0000 (17:23 -0600)]
Deprecate a function that should have been deprecated a long time ago.

9 years agoUpdate documentation in a couple of places.
Wolfgang Bangerth [Tue, 10 Feb 2015 23:22:54 +0000 (17:22 -0600)]
Update documentation in a couple of places.

9 years agoRemove references to AVS Explorer.
Wolfgang Bangerth [Tue, 10 Feb 2015 15:43:37 +0000 (09:43 -0600)]
Remove references to AVS Explorer.

9 years agoCMake: Reintroduce old installation behavior 510/head
Matthias Maier [Tue, 10 Feb 2015 16:55:13 +0000 (17:55 +0100)]
CMake: Reintroduce old installation behavior

9 years agoMerge pull request #508 from dakshinai/filtered_matrix
Guido Kanschat [Tue, 10 Feb 2015 16:57:51 +0000 (17:57 +0100)]
Merge pull request #508 from dakshinai/filtered_matrix

deprecated apply_constraints method in filtered_matrix

9 years agoMerge pull request #464 from alistairbntl/bdm_documentation_fixes
Guido Kanschat [Tue, 10 Feb 2015 16:33:25 +0000 (17:33 +0100)]
Merge pull request #464 from alistairbntl/bdm_documentation_fixes

BDM Documentation and sign change to match usual definition of the vector curl of a scalar function

9 years agoMerge pull request #509 from guidokanschat/fix_step_dealii_path
Wolfgang Bangerth [Tue, 10 Feb 2015 15:31:29 +0000 (09:31 -0600)]
Merge pull request #509 from guidokanschat/fix_step_dealii_path

Add new relative path for new directory structure

9 years agoAdd new relative path for new directory structure 509/head
Guido Kanschat [Tue, 10 Feb 2015 11:34:01 +0000 (12:34 +0100)]
Add new relative path for new directory structure

9 years agoMerge pull request #505 from bangerth/further-point-vs-tensor-cleanups
Martin Kronbichler [Tue, 10 Feb 2015 08:05:59 +0000 (09:05 +0100)]
Merge pull request #505 from bangerth/further-point-vs-tensor-cleanups

Further point vs tensor cleanups

9 years agodeprecated apply_constraints method in filtered_matrix 508/head
Dakshina Ilangovan [Tue, 10 Feb 2015 06:17:35 +0000 (00:17 -0600)]
deprecated apply_constraints method in filtered_matrix

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct... 505/head
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:50 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:50 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:50 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:49 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:49 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:49 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:48 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:48 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:47 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:47 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:47 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:46 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:46 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEither make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct...
Wolfgang Bangerth [Fri, 6 Feb 2015 03:16:46 +0000 (21:16 -0600)]
Either make implicit casts from Tensor<1,dim> to Point<dim> explicit, or correct the data type of where we store the result.

9 years agoEradicate implicit casts from Tensor<1,dim> to Point<dim>.
Wolfgang Bangerth [Fri, 6 Feb 2015 03:15:20 +0000 (21:15 -0600)]
Eradicate implicit casts from Tensor<1,dim> to Point<dim>.

9 years agoMerge pull request #503 from bangerth/point-vs-tensor-2
Timo Heister [Mon, 9 Feb 2015 23:13:07 +0000 (18:13 -0500)]
Merge pull request #503 from bangerth/point-vs-tensor-2

Make the difference between two points a tensor, rather than a point.

In essence, it just clarifies the documentation about what points and tensors are, and makes the types of operator-() conform to the description.

9 years agoMake the difference between two points a tensor, rather than a 503/head
Wolfgang Bangerth [Thu, 5 Feb 2015 13:13:48 +0000 (07:13 -0600)]
Make the difference between two points a tensor, rather than a
point. Clarify the use of these two classes in the documentation.

9 years agoMerge pull request #501 from bangerth/point-vs-tensor-cleanups
Martin Kronbichler [Sun, 8 Feb 2015 20:26:04 +0000 (21:26 +0100)]
Merge pull request #501 from bangerth/point-vs-tensor-cleanups

Point vs tensor cleanups

9 years agoMerge pull request #502 from tjhei/documentation
Martin Kronbichler [Thu, 5 Feb 2015 14:39:52 +0000 (15:39 +0100)]
Merge pull request #502 from tjhei/documentation

minor documentation update

9 years agoupdate documentation 502/head
Timo Heister [Thu, 5 Feb 2015 14:30:34 +0000 (09:30 -0500)]
update documentation

9 years agoUse the Tensor member function norm_square() instead of the Point function square... 501/head
Wolfgang Bangerth [Thu, 5 Feb 2015 12:50:14 +0000 (06:50 -0600)]
Use the Tensor member function norm_square() instead of the Point function square() for objects that are logically points.

9 years agoChange uses of Point to Tensor where appropriate.
Wolfgang Bangerth [Thu, 5 Feb 2015 12:49:37 +0000 (06:49 -0600)]
Change uses of Point to Tensor where appropriate.

9 years agoBetter fix for grid_tools.
Wolfgang Bangerth [Thu, 5 Feb 2015 12:49:33 +0000 (06:49 -0600)]
Better fix for grid_tools.

9 years agoMerge pull request #497 from masterleinad/Fix_Trilinos_Empty_Local
Martin Kronbichler [Thu, 5 Feb 2015 12:34:36 +0000 (13:34 +0100)]
Merge pull request #497 from masterleinad/Fix_Trilinos_Empty_Local

Fix decision about same/different Map for Trilinos Vectors

9 years agoAdd test for sadd with partly empty Trilinos vectors 497/head
Daniel Arndt [Thu, 5 Feb 2015 10:58:50 +0000 (11:58 +0100)]
Add test for sadd with partly empty Trilinos vectors

9 years agoMerge pull request #498 from bangerth/fix-typos
Martin Kronbichler [Thu, 5 Feb 2015 07:23:34 +0000 (08:23 +0100)]
Merge pull request #498 from bangerth/fix-typos

Fix typos.

9 years agoUse the appropriate syntax to add points (the difference of points yields a Tensor...
Wolfgang Bangerth [Thu, 5 Feb 2015 03:54:29 +0000 (21:54 -0600)]
Use the appropriate syntax to add points (the difference of points yields a Tensor<1,dim>).

9 years agoFix typos. 498/head
Wolfgang Bangerth [Thu, 5 Feb 2015 03:51:43 +0000 (21:51 -0600)]
Fix typos.

The proper spelling of the word is 'Euclidean', not 'Euclidian'.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:41:05 +0000 (21:41 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:39:46 +0000 (21:39 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:38:44 +0000 (21:38 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoReindent.
Wolfgang Bangerth [Thu, 5 Feb 2015 03:34:54 +0000 (21:34 -0600)]
Reindent.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:33:38 +0000 (21:33 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoMinor text cleanup.
Wolfgang Bangerth [Thu, 5 Feb 2015 02:37:00 +0000 (20:37 -0600)]
Minor text cleanup.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:04:09 +0000 (21:04 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 03:03:31 +0000 (21:03 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:57:45 +0000 (20:57 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:56:27 +0000 (20:56 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up places where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:51:48 +0000 (20:51 -0600)]
Fix up places where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up a place where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:49:53 +0000 (20:49 -0600)]
Fix up a place where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoUse Tensor<1,dim> instead of Point<dim> to denote directions.
Wolfgang Bangerth [Thu, 5 Feb 2015 02:38:37 +0000 (20:38 -0600)]
Use Tensor<1,dim> instead of Point<dim> to denote directions.

9 years agoUse Tensor<1,dim> instead of Point<dim> to denote directions.
Wolfgang Bangerth [Thu, 5 Feb 2015 02:38:22 +0000 (20:38 -0600)]
Use Tensor<1,dim> instead of Point<dim> to denote directions.

9 years agoFix up a place where we use Point<dim> for directions when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:37:20 +0000 (20:37 -0600)]
Fix up a place where we use Point<dim> for directions when we should be
using Tensor<1,dim>.

9 years agoFix up one place where we use Point<dim> for normals when we should be
Wolfgang Bangerth [Thu, 5 Feb 2015 02:08:38 +0000 (20:08 -0600)]
Fix up one place where we use Point<dim> for normals when we should be
using Tensor<1,dim>.

9 years agoFix decision about same/different Map for Trilinos Vectors
Daniel Arndt [Wed, 4 Feb 2015 19:07:18 +0000 (20:07 +0100)]
Fix decision about same/different Map for Trilinos Vectors

9 years agoMerge pull request #495 from bangerth/remove-deprecated-functions-9
Martin Kronbichler [Wed, 4 Feb 2015 15:23:44 +0000 (16:23 +0100)]
Merge pull request #495 from bangerth/remove-deprecated-functions-9

Remove deprecated function SparseILU::decompose.

9 years agoRemove deprecated function SparseILU::decompose. 495/head
Wolfgang Bangerth [Wed, 4 Feb 2015 15:07:05 +0000 (09:07 -0600)]
Remove deprecated function SparseILU::decompose.

9 years agoMerge pull request #494 from bangerth/remove-deprecated-functions-8
Martin Kronbichler [Wed, 4 Feb 2015 13:13:51 +0000 (14:13 +0100)]
Merge pull request #494 from bangerth/remove-deprecated-functions-8

Remove deprecated function SparseMatrix::global_entry()

9 years agoMerge pull request #476 from koecher/dataout-issue-step-34
Wolfgang Bangerth [Wed, 4 Feb 2015 13:00:02 +0000 (07:00 -0600)]
Merge pull request #476 from koecher/dataout-issue-step-34

step-34: fixes a runtime error in step-34

9 years agoRemove deprecated function SparseMatrix::global_entry(). 494/head
Wolfgang Bangerth [Wed, 4 Feb 2015 12:57:07 +0000 (06:57 -0600)]
Remove deprecated function SparseMatrix::global_entry().

9 years agoMerge pull request #493 from bangerth/remove-deprecated-functions-7
Martin Kronbichler [Wed, 4 Feb 2015 07:56:58 +0000 (08:56 +0100)]
Merge pull request #493 from bangerth/remove-deprecated-functions-7

Remove deprecated function SparseMIC::decompose.

9 years agoFix a typo.
Wolfgang Bangerth [Wed, 4 Feb 2015 01:43:26 +0000 (19:43 -0600)]
Fix a typo.

9 years agoMerge pull request #492 from bangerth/davydden-tensor_updates
Wolfgang Bangerth [Tue, 3 Feb 2015 23:28:44 +0000 (17:28 -0600)]
Merge pull request #492 from bangerth/davydden-tensor_updates

Davydden tensor updates

9 years agoAddress Martin K's comments in review of this patch. 492/head
Wolfgang Bangerth [Tue, 3 Feb 2015 23:26:50 +0000 (17:26 -0600)]
Address Martin K's comments in review of this patch.

9 years agostep-34: fixes a runtime error in step-34 476/head
Uwe Köcher [Tue, 27 Jan 2015 14:47:09 +0000 (15:47 +0100)]
step-34: fixes a runtime error in step-34
In the function output_results, around line 1017, two vectors (phi and alpha)
are added to a DataOut object.
A runtime error occured, because the type of the vector could not
determined automatically.

On branch dataout-issue-step-34
  Changes to be committed:
        modified:   examples/step-34/step-34.cc

9 years agoRemove deprecated function SparseMIC::decompose. 493/head
Wolfgang Bangerth [Tue, 3 Feb 2015 17:27:31 +0000 (11:27 -0600)]
Remove deprecated function SparseMIC::decompose.

9 years agoExtend test. Reindent it.
Wolfgang Bangerth [Tue, 3 Feb 2015 15:19:07 +0000 (09:19 -0600)]
Extend test. Reindent it.

9 years agoAdd missing copy constructors for the specializations of class Tensor.
Wolfgang Bangerth [Tue, 3 Feb 2015 15:18:57 +0000 (09:18 -0600)]
Add missing copy constructors for the specializations of class Tensor.

Also add a changelog entry.

9 years agoadded a failing test
Denis Davydov [Tue, 3 Feb 2015 14:01:06 +0000 (15:01 +0100)]
added a failing test

9 years agoIntroduced non-default copy constructor and operator= for Tensor class
Denis Davydov [Tue, 3 Feb 2015 13:10:59 +0000 (14:10 +0100)]
Introduced non-default copy constructor and operator= for Tensor class

9 years agoMerge pull request #489 from bangerth/remove-deprecated-functions-6
Martin Kronbichler [Tue, 3 Feb 2015 13:13:59 +0000 (14:13 +0100)]
Merge pull request #489 from bangerth/remove-deprecated-functions-6

Remove deprecated functions 6

9 years agoMove an entry to the appropriate place. 489/head
Wolfgang Bangerth [Tue, 3 Feb 2015 13:14:16 +0000 (07:14 -0600)]
Move an entry to the appropriate place.

9 years agoMerge pull request #490 from bangerth/fix-missing-include
Timo Heister [Tue, 3 Feb 2015 13:06:15 +0000 (08:06 -0500)]
Merge pull request #490 from bangerth/fix-missing-include

Add a missing set of include files.

This fixes a recent regression in one of our tests (bits/serialize_hp_dof_handler) that tries
to serialize an object but that requires to know the actual type of one of the members to
be serialized to compile without error.

9 years agoRemove deprecated function Table::data.
Wolfgang Bangerth [Tue, 3 Feb 2015 12:32:29 +0000 (06:32 -0600)]
Remove deprecated function Table::data.

9 years agoRemove deprecated function PETScWrappers::VectorBase::update_ghost_values.
Wolfgang Bangerth [Tue, 3 Feb 2015 03:44:32 +0000 (21:44 -0600)]
Remove deprecated function PETScWrappers::VectorBase::update_ghost_values.

9 years agoAdd a missing set of include files. 490/head
Wolfgang Bangerth [Mon, 2 Feb 2015 20:26:51 +0000 (14:26 -0600)]
Add a missing set of include files.

This fixes a recent regression in one of our tests (bits/serialize_hp_dof_handler) that tries
to serialize an object but that requires to know the actual type of one of the members to
be serialized to compile without error.


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.