]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
9 years agoBugfix: Fix return value of StoredIndex<1, S>
Matthias Maier [Sat, 12 Sep 2015 04:49:21 +0000 (23:49 -0500)]
Bugfix: Fix return value of StoredIndex<1, S>

The problem is subtle. TensorAccessors::reordered_index_view returns an
internal object that behaves like a tensor.

The problem is that fully accessing the tensorial object, i.e., applying
operator[](unsigned int) rank times returned an object of type

  StoreIndex<0, [...]>

instead of type Number of the original tensor. The problem is that the
compiler has no way of knowing whether we want to cast this object to
Number during type matching, thus something like

  std::min( StoreIndex<0, [...]>(...), (double)4.);

fails.

9 years agoTensor<rank,dim,Number> - Implement operator* with TensorAccessors::contract
Matthias Maier [Sat, 12 Sep 2015 02:36:59 +0000 (21:36 -0500)]
Tensor<rank,dim,Number> - Implement operator* with TensorAccessors::contract

9 years agoTensor<rank,dim,Number> - use TensorAccessors::extract
Matthias Maier [Sat, 12 Sep 2015 01:58:57 +0000 (20:58 -0500)]
Tensor<rank,dim,Number> - use TensorAccessors::extract

Remove special internal code and use the generic implementation in
TensorAccessors::extract.

9 years agoMerge pull request #1588 from bangerth/further-FEValues-cleanups-34
Timo Heister [Sat, 12 Sep 2015 19:17:10 +0000 (15:17 -0400)]
Merge pull request #1588 from bangerth/further-FEValues-cleanups-34

Simplify MappingQ.

9 years agoMake several more functions part of the internal implementation. 1588/head
Wolfgang Bangerth [Sat, 12 Sep 2015 12:07:07 +0000 (07:07 -0500)]
Make several more functions part of the internal implementation.

This allows us to remove them from the public interface.

9 years agoMerge pull request #1587 from tamiko/bugfix2
Wolfgang Bangerth [Sat, 12 Sep 2015 11:12:57 +0000 (06:12 -0500)]
Merge pull request #1587 from tamiko/bugfix2

Minor bugfixes

9 years agoMove several functions from the public interface of MappingQ into the .cc file.
Wolfgang Bangerth [Sat, 12 Sep 2015 01:07:14 +0000 (20:07 -0500)]
Move several functions from the public interface of MappingQ into the .cc file.

9 years agoBugfix: Be consistent and cast to const Number & 1587/head
Matthias Maier [Sat, 12 Sep 2015 06:42:34 +0000 (01:42 -0500)]
Bugfix: Be consistent and cast to  const Number &

9 years agoBugfix: Use declval in decltype expression
Matthias Maier [Sat, 12 Sep 2015 06:41:15 +0000 (01:41 -0500)]
Bugfix: Use declval in decltype expression

```
decltype(std::declval<T>() * std::declval<U>())
```
is the correct syntax. This does not require that ```T``` and ```U``` have
default constructors...

9 years agoMinor cleanup.
Wolfgang Bangerth [Sat, 12 Sep 2015 01:06:47 +0000 (20:06 -0500)]
Minor cleanup.

9 years agoMerge pull request #1584 from tamiko/fix_tests
Wolfgang Bangerth [Fri, 11 Sep 2015 23:26:13 +0000 (18:26 -0500)]
Merge pull request #1584 from tamiko/fix_tests

Fix tests base/tensor_accessors_(02|04)

9 years agoFix test base/tensor_accessors_04 1584/head
Matthias Maier [Fri, 11 Sep 2015 22:35:57 +0000 (17:35 -0500)]
Fix test base/tensor_accessors_04

9 years agoFix test base/tensor_accessors_02
Matthias Maier [Fri, 11 Sep 2015 22:34:49 +0000 (17:34 -0500)]
Fix test base/tensor_accessors_02

9 years agoMerge pull request #1531 from tjhei/qtcreator_project
Wolfgang Bangerth [Fri, 11 Sep 2015 21:58:52 +0000 (16:58 -0500)]
Merge pull request #1531 from tjhei/qtcreator_project

add doc/news/changes.h to project

9 years agoMerge pull request #1564 from tamiko/tensor_accessors
Wolfgang Bangerth [Fri, 11 Sep 2015 20:38:56 +0000 (15:38 -0500)]
Merge pull request #1564 from tamiko/tensor_accessors

Implement TensorAccessors

9 years agoastyle insists on that... 1564/head
Matthias Maier [Fri, 11 Sep 2015 20:09:00 +0000 (15:09 -0500)]
astyle insists on that...

9 years agoadd a news/changes.h entry
Matthias Maier [Fri, 11 Sep 2015 20:07:45 +0000 (15:07 -0500)]
add a news/changes.h entry

9 years agoAdd a test for TensorAccessors::contract3
Matthias Maier [Fri, 11 Sep 2015 19:46:29 +0000 (14:46 -0500)]
Add a test for TensorAccessors::contract3

9 years agoImplement TensorAccessors::contract3
Matthias Maier [Fri, 11 Sep 2015 19:46:07 +0000 (14:46 -0500)]
Implement TensorAccessors::contract3

9 years agoAdd a test for TensorAccessors::contract
Matthias Maier [Fri, 11 Sep 2015 19:45:37 +0000 (14:45 -0500)]
Add a test for TensorAccessors::contract

9 years agoImplement TensorAccessors::contract
Matthias Maier [Fri, 11 Sep 2015 19:45:13 +0000 (14:45 -0500)]
Implement TensorAccessors::contract

9 years agoAdd a test for TensorAccessors::extract
Matthias Maier [Fri, 11 Sep 2015 19:44:10 +0000 (14:44 -0500)]
Add a test for TensorAccessors::extract

9 years agoImplement TensorAccessors::extract
Matthias Maier [Fri, 11 Sep 2015 19:43:46 +0000 (14:43 -0500)]
Implement TensorAccessors::extract

9 years agoAdd a test for TensorAccessors::reordered_index_view
Matthias Maier [Fri, 11 Sep 2015 19:42:30 +0000 (14:42 -0500)]
Add a test for TensorAccessors::reordered_index_view

9 years agoImplement TensorAccessors::reordered_index_view
Matthias Maier [Fri, 11 Sep 2015 19:41:54 +0000 (14:41 -0500)]
Implement TensorAccessors::reordered_index_view

9 years agoAdd a new namespace TensorAccessors
Matthias Maier [Fri, 11 Sep 2015 19:38:56 +0000 (14:38 -0500)]
Add a new namespace TensorAccessors

This namespace will contain a collection of algorithms working on generic
tensorial objects (of arbitrary rank).

The rationale to implement such functionality in a generic fashion in a
separate namespace is
 - to easy code reusability and therefore avoid code duplication.
 - to have a well-defined interface that allows to exchange the low
   level implementation.

9 years agoMerge pull request #1568 from bangerth/further-FEValues-cleanups-33
Martin Kronbichler [Fri, 11 Sep 2015 15:41:40 +0000 (17:41 +0200)]
Merge pull request #1568 from bangerth/further-FEValues-cleanups-33

Further fe values cleanups 33

9 years agoMerge pull request #1578 from drwells/add-gdbinit
Wolfgang Bangerth [Fri, 11 Sep 2015 15:23:57 +0000 (10:23 -0500)]
Merge pull request #1578 from drwells/add-gdbinit

Pretty printers for GDB.

9 years agoAdded a small set of pretty printers for GDB. 1578/head
David Wells [Thu, 10 Sep 2015 18:29:12 +0000 (14:29 -0400)]
Added a small set of pretty printers for GDB.

9 years agoMerge pull request #1580 from tjhei/fix_solver_additional_data
Wolfgang Bangerth [Thu, 10 Sep 2015 23:34:02 +0000 (18:34 -0500)]
Merge pull request #1580 from tjhei/fix_solver_additional_data

fix step-51 and tests with Solver*::AdditionalData changes

9 years agoMerge pull request #1579 from Rombur/inst_bug
Timo Heister [Thu, 10 Sep 2015 23:14:33 +0000 (19:14 -0400)]
Merge pull request #1579 from Rombur/inst_bug

Fix a bug where SolutionTransfer is not instantiated for BlockVector

9 years agofix step-51 and tests with Solver*::AdditionalData changes 1580/head
Timo Heister [Thu, 10 Sep 2015 23:09:00 +0000 (19:09 -0400)]
fix step-51 and tests with Solver*::AdditionalData changes

PR #1572 disabled implicit conversion to Solver*::AdditionalData. This commit
fixes tests and step-51 that broke because of that.

9 years agoFix a bug where SolutionTransfer is not instantiated for BlockVector when using hp... 1579/head
Bruno Turcksin [Thu, 10 Sep 2015 22:51:28 +0000 (17:51 -0500)]
Fix a bug where SolutionTransfer is not instantiated for BlockVector when using hp::DoFHandler.

9 years agoMove an internal function to the only class that now still uses it. 1568/head
Wolfgang Bangerth [Thu, 10 Sep 2015 19:35:38 +0000 (14:35 -0500)]
Move an internal function to the only class that now still uses it.

9 years agoAvoid the use of an InternalData object in transform_unit_to_real_cell().
Wolfgang Bangerth [Thu, 10 Sep 2015 02:57:24 +0000 (21:57 -0500)]
Avoid the use of an InternalData object in transform_unit_to_real_cell().

This avoids a significant overhead in the computation of the forward map for
arbitrary points.

There is potential for more optimization if we made the TensorProductPolynomials object
and the permutation map member variables of the class. But that's for a later patch.

Fixes #1569.

9 years agoMove transform_unit_to_real_cell from MappingQ1 to MappingQGeneric.
Wolfgang Bangerth [Tue, 8 Sep 2015 15:24:18 +0000 (10:24 -0500)]
Move transform_unit_to_real_cell from MappingQ1 to MappingQGeneric.

9 years agoOverride the Q1 mapping in MappingQ.
Wolfgang Bangerth [Tue, 8 Sep 2015 15:24:17 +0000 (10:24 -0500)]
Override the Q1 mapping in MappingQ.

9 years agoRelegate getting an initial guess to StaticMappingQ1.
Wolfgang Bangerth [Sun, 6 Sep 2015 23:26:09 +0000 (18:26 -0500)]
Relegate getting an initial guess to StaticMappingQ1.

9 years agoFix a grammar error.
Wolfgang Bangerth [Sun, 6 Sep 2015 23:25:47 +0000 (18:25 -0500)]
Fix a grammar error.

9 years agoRefer to MappingQGeneric instead to MappingQ1.
Wolfgang Bangerth [Sun, 6 Sep 2015 22:31:40 +0000 (17:31 -0500)]
Refer to MappingQGeneric instead to MappingQ1.

In all of the unambiguous places, refer from MappingQ to MappingQGeneric
instead of the immediate base class MappingQ.

9 years agoMinor cleanups.
Wolfgang Bangerth [Sun, 6 Sep 2015 21:47:15 +0000 (16:47 -0500)]
Minor cleanups.

9 years agoLet MappingQ have a MappingQ1 member.
Wolfgang Bangerth [Sun, 6 Sep 2015 21:47:01 +0000 (16:47 -0500)]
Let MappingQ have a MappingQ1 member.

This mostly breaks the derivation of MappingQ from MappingQ1. There are
a few hold-outs left, though.

9 years agoMerge pull request #1577 from maieneuro/mapping_derivatives_documentation
Matthias Maier [Thu, 10 Sep 2015 18:35:05 +0000 (13:35 -0500)]
Merge pull request #1577 from maieneuro/mapping_derivatives_documentation

fixed spelling mistakes

9 years agoMerge pull request #1576 from bangerth/revamp-1573
Matthias Maier [Thu, 10 Sep 2015 18:33:25 +0000 (13:33 -0500)]
Merge pull request #1576 from bangerth/revamp-1573

Fix issues with #1573.

9 years agofixed spelling mistakes 1577/head
Maien Hamed [Thu, 10 Sep 2015 17:47:28 +0000 (19:47 +0200)]
fixed spelling mistakes

9 years agoFix issues with #1573. 1576/head
Wolfgang Bangerth [Thu, 10 Sep 2015 17:07:50 +0000 (12:07 -0500)]
Fix issues with #1573.

Specifically, avoid an anonymous namespace in header files. Also
remove unnecessary specializations of functions for const input
arguments.

9 years agoMerge pull request #1574 from maieneuro/mapping_derivatives_documentation
Wolfgang Bangerth [Thu, 10 Sep 2015 16:59:52 +0000 (11:59 -0500)]
Merge pull request #1574 from maieneuro/mapping_derivatives_documentation

Added a subsection about mapping higher-order derivatives in Mapping …

9 years agoAdded a subsection about mapping higher-order derivatives in Mapping documentation 1574/head
Maien Hamed [Thu, 10 Sep 2015 10:16:38 +0000 (12:16 +0200)]
Added a subsection about mapping higher-order derivatives in Mapping documentation

9 years agoMerge pull request #1575 from tjhei/changelog
Martin Kronbichler [Thu, 10 Sep 2015 12:15:00 +0000 (14:15 +0200)]
Merge pull request #1575 from tjhei/changelog

add to changelog

9 years agoadd to changelog 1575/head
Timo Heister [Thu, 10 Sep 2015 12:03:39 +0000 (08:03 -0400)]
add to changelog

9 years agoMerge pull request #1573 from bangerth/fix-warnings
Timo Heister [Thu, 10 Sep 2015 02:57:42 +0000 (22:57 -0400)]
Merge pull request #1573 from bangerth/fix-warnings

Avoid a whole lot of warnings.

9 years agoAvoid a whole lot of warnings. 1573/head
Wolfgang Bangerth [Thu, 10 Sep 2015 02:36:38 +0000 (21:36 -0500)]
Avoid a whole lot of warnings.

These warnings are about accessing elements of a zero sized
array as well as comparisons of the form 'i<dim' if 'dim==0'.

9 years agoMerge pull request #1572 from tjhei/explicit_additional_data_ctor
Wolfgang Bangerth [Thu, 10 Sep 2015 02:11:27 +0000 (21:11 -0500)]
Merge pull request #1572 from tjhei/explicit_additional_data_ctor

make AdditionalData ctor explicit

9 years agoMerge pull request #1571 from QiaoLei-88/step40Solver
Timo Heister [Thu, 10 Sep 2015 01:12:19 +0000 (21:12 -0400)]
Merge pull request #1571 from QiaoLei-88/step40Solver

Constructors of SolverCG from PETSc and Trilinos have different interfaces

9 years agomake AdditionalData ctor explicit 1572/head
Timo Heister [Thu, 10 Sep 2015 01:08:45 +0000 (21:08 -0400)]
make AdditionalData ctor explicit

Constructors of AdditionalData in various linear solvers are now marked
explicit. This is to avoid implicit conversions from int. See #1571 for an
example where an MPI communiator (which is an int) is silently converted
because of the default values in AdditionalData.

9 years agoMerge pull request #1570 from bangerth/fix-test-12
Timo Heister [Wed, 9 Sep 2015 22:33:43 +0000 (18:33 -0400)]
Merge pull request #1570 from bangerth/fix-test-12

Adjust type of CosineFunction::hessian.

9 years agoAdjust type of CosineFunction::hessian. 1570/head
Wolfgang Bangerth [Wed, 9 Sep 2015 22:02:00 +0000 (17:02 -0500)]
Adjust type of CosineFunction::hessian.

9 years agoConstructors of wrapper SolverCG for PETSc and Trilinos have different interaces 1571/head
Lei Qiao [Wed, 9 Sep 2015 21:49:33 +0000 (16:49 -0500)]
Constructors of wrapper SolverCG for PETSc and Trilinos have different interaces

9 years agoadd documentation files to IDE projects 1531/head
Timo Heister [Wed, 9 Sep 2015 15:17:11 +0000 (11:17 -0400)]
add documentation files to IDE projects

IDEs like qtcreator only pull in files into the project if they are part
of a target. Create a dummy target to do this.

9 years agoMerge pull request #1562 from tamiko/fix_table_indices
Matthias Maier [Wed, 9 Sep 2015 18:20:21 +0000 (13:20 -0500)]
Merge pull request #1562 from tamiko/fix_table_indices

TableIndices: Cleanup

9 years agoastyle 1562/head
Matthias Maier [Wed, 9 Sep 2015 18:19:21 +0000 (13:19 -0500)]
astyle

9 years agoAddress comments
Matthias Maier [Wed, 9 Sep 2015 15:13:06 +0000 (10:13 -0500)]
Address comments

9 years agoAdd a news/changes.h entry
Matthias Maier [Wed, 9 Sep 2015 03:13:40 +0000 (22:13 -0500)]
Add a news/changes.h entry

9 years agoTableIndices: Cleanup
Matthias Maier [Wed, 9 Sep 2015 03:08:08 +0000 (22:08 -0500)]
TableIndices: Cleanup

This is a major cleanup:

 - remove all template specializations
 - also remove the base class
 - implement one convenience constructor that takes care of everything

9 years agoAdd std_cxx11/iterator.h to switch between std::begin and boost::begin
Matthias Maier [Wed, 9 Sep 2015 03:02:55 +0000 (22:02 -0500)]
Add std_cxx11/iterator.h to switch between std::begin and boost::begin

9 years agoMerge pull request #1566 from bangerth/fix-doxygen
Matthias Maier [Wed, 9 Sep 2015 15:44:23 +0000 (10:44 -0500)]
Merge pull request #1566 from bangerth/fix-doxygen

Expand DEAL_II_NAMESPACE_OPEN/CLOSE to nothing for doxygen.

9 years agoExpand DEAL_II_NAMESPACE_OPEN/CLOSE to nothing for doxygen. 1566/head
Wolfgang Bangerth [Wed, 9 Sep 2015 11:09:20 +0000 (06:09 -0500)]
Expand DEAL_II_NAMESPACE_OPEN/CLOSE to nothing for doxygen.

It showed up in at least one place in the HTML output. Avoid this by ensuring that
it is simply expanded to nothing.

9 years agoMerge pull request #1565 from kronbichler/master
Wolfgang Bangerth [Wed, 9 Sep 2015 10:56:09 +0000 (05:56 -0500)]
Merge pull request #1565 from kronbichler/master

Improve C++14 test for clang

9 years agoImprove C++14 test for clang 1565/head
Martin Kronbichler [Wed, 9 Sep 2015 09:49:19 +0000 (11:49 +0200)]
Improve C++14 test for clang

9 years agoMerge pull request #1561 from tamiko/fix_compilation
Wolfgang Bangerth [Wed, 9 Sep 2015 01:04:45 +0000 (20:04 -0500)]
Merge pull request #1561 from tamiko/fix_compilation

Bugfix: Avoid C++11 only features

9 years agoBugfix: Avoid C++11 only features 1561/head
Matthias Maier [Tue, 8 Sep 2015 16:56:58 +0000 (11:56 -0500)]
Bugfix: Avoid C++11 only features

9 years agoMerge pull request #1555 from bangerth/instantiate-MappingQ1Eulerian
Matthias Maier [Wed, 9 Sep 2015 00:40:35 +0000 (19:40 -0500)]
Merge pull request #1555 from bangerth/instantiate-MappingQ1Eulerian

Instantiate MappingQ1Eulerian for the same classes as MappingQEulerian.

9 years agoMerge pull request #1558 from QiaoLei-88/tutorialDescription
Wolfgang Bangerth [Tue, 8 Sep 2015 19:53:28 +0000 (14:53 -0500)]
Merge pull request #1558 from QiaoLei-88/tutorialDescription

update description of step-11

9 years agoMerge pull request #1560 from tjhei/fix_no_trilinos
Matthias Maier [Tue, 8 Sep 2015 18:13:57 +0000 (13:13 -0500)]
Merge pull request #1560 from tjhei/fix_no_trilinos

fix compilation without trilinos

9 years agofix compilation without trilinos 1560/head
Timo Heister [Tue, 8 Sep 2015 17:55:10 +0000 (13:55 -0400)]
fix compilation without trilinos

9 years agoMerge pull request #1557 from tamiko/block_linop_bugfix
Wolfgang Bangerth [Tue, 8 Sep 2015 17:43:10 +0000 (12:43 -0500)]
Merge pull request #1557 from tamiko/block_linop_bugfix

Bugfix: Disallow templated constructor/copy assignment for derived classes

9 years agoupdate description of step-11 1558/head
Lei Qiao [Tue, 8 Sep 2015 16:42:44 +0000 (11:42 -0500)]
update description of step-11

9 years agoBugfix: Disallow templated constructor/copy assignment for derived classes 1557/head
Matthias Maier [Tue, 8 Sep 2015 16:04:55 +0000 (11:04 -0500)]
Bugfix: Disallow templated constructor/copy assignment for derived classes

9 years agoProvide a changelog entry. 1555/head
Wolfgang Bangerth [Tue, 8 Sep 2015 15:22:19 +0000 (10:22 -0500)]
Provide a changelog entry.

9 years agoInstantiate MappingQ1Eulerian for the same classes as MappingQEulerian.
Wolfgang Bangerth [Tue, 8 Sep 2015 15:17:53 +0000 (10:17 -0500)]
Instantiate MappingQ1Eulerian for the same classes as MappingQEulerian.

9 years agoMerge pull request #1550 from davydden/function_hessian
Wolfgang Bangerth [Tue, 8 Sep 2015 15:06:32 +0000 (10:06 -0500)]
Merge pull request #1550 from davydden/function_hessian

added Function::hessian()

9 years agoadded Function::hessian() 1550/head
Denis Davydov [Tue, 8 Sep 2015 06:50:48 +0000 (08:50 +0200)]
added Function::hessian()

fixed CosineFunction in function_lib to comply.

9 years agoMerge pull request #1552 from tjhei/trilinos_precondition_warnings
Martin Kronbichler [Tue, 8 Sep 2015 12:31:00 +0000 (14:31 +0200)]
Merge pull request #1552 from tjhei/trilinos_precondition_warnings

remove warnings in trilinos_precondition*cc

9 years agoremove warnings in trilinos_precondition*cc 1552/head
Timo Heister [Tue, 8 Sep 2015 12:20:13 +0000 (08:20 -0400)]
remove warnings in trilinos_precondition*cc

9 years agoMerge pull request #1540 from maieneuro/third_derivatives
Wolfgang Bangerth [Tue, 8 Sep 2015 11:44:21 +0000 (06:44 -0500)]
Merge pull request #1540 from maieneuro/third_derivatives

Implemented computation of shape function 3rd derivatives in real cel…

9 years agoMerge pull request #1549 from tamiko/cleanup
Wolfgang Bangerth [Tue, 8 Sep 2015 11:32:52 +0000 (06:32 -0500)]
Merge pull request #1549 from tamiko/cleanup

Testsuite: Fix regressions introduced by #1517

9 years agoadded tests for other elements 1540/head
Maien Hamed [Tue, 8 Sep 2015 10:53:09 +0000 (12:53 +0200)]
added tests for other elements

9 years agoImplemented computation of shape function 3rd derivatives in real cell, except in...
Maien Hamed [Sun, 6 Sep 2015 12:19:33 +0000 (14:19 +0200)]
Implemented computation of shape function 3rd derivatives in real cell, except in FE_PolyTensor

9 years agoMerge pull request #1551 from maieneuro/remove_compute_2nd
Martin Kronbichler [Tue, 8 Sep 2015 08:16:13 +0000 (10:16 +0200)]
Merge pull request #1551 from maieneuro/remove_compute_2nd

removed the no longer necessary FiniteElement::differences and ::fd_s…

9 years agoremoved the no longer necessary FiniteElement::differences and ::fd_step_length 1551/head
Maien Hamed [Tue, 8 Sep 2015 07:38:16 +0000 (09:38 +0200)]
removed the no longer necessary FiniteElement::differences and ::fd_step_length

9 years agoTestsuite: Update serialization tests 1549/head
Matthias Maier [Mon, 7 Sep 2015 22:59:07 +0000 (17:59 -0500)]
Testsuite: Update serialization tests

9 years agoBugfix: Provide const TensorIndicesHelper<>::extract variant
Matthias Maier [Mon, 7 Sep 2015 22:34:47 +0000 (17:34 -0500)]
Bugfix: Provide const TensorIndicesHelper<>::extract variant

It is necessary to also deal with const references...

9 years agoTestsuite: Fix invalid constructor calls
Matthias Maier [Mon, 7 Sep 2015 22:23:58 +0000 (17:23 -0500)]
Testsuite: Fix invalid constructor calls

9 years agoTestsuite: Fix invalid constructor calls
Matthias Maier [Mon, 7 Sep 2015 22:16:09 +0000 (17:16 -0500)]
Testsuite: Fix invalid constructor calls

This should have never been syntactically correct code...

9 years agoMerge pull request #1546 from tamiko/fix_testsuite
Wolfgang Bangerth [Mon, 7 Sep 2015 21:25:26 +0000 (16:25 -0500)]
Merge pull request #1546 from tamiko/fix_testsuite

Testesuite: Bugfix: Fix configuration for with_64bit_indices

9 years agoTestesuite: Bugfix: Fix configuration for with_64bit_indices 1546/head
Matthias Maier [Mon, 7 Sep 2015 21:20:12 +0000 (16:20 -0500)]
Testesuite: Bugfix: Fix configuration for with_64bit_indices

9 years agoMerge pull request #1545 from tamiko/fix_cxx11_thread_check
Timo Heister [Mon, 7 Sep 2015 21:16:55 +0000 (17:16 -0400)]
Merge pull request #1545 from tamiko/fix_cxx11_thread_check

CMake: Bugfix: Export -pthread when trying to link

9 years agoCMake: Bugfix: Export -pthread when trying to link 1545/head
Matthias Maier [Mon, 7 Sep 2015 21:04:01 +0000 (16:04 -0500)]
CMake: Bugfix: Export -pthread when trying to link

It turns out that clang is a bit more picky and wants to have -pthread
on the command line.

9 years agoMerge pull request #1517 from tamiko/complexify
Matthias Maier [Mon, 7 Sep 2015 19:15:44 +0000 (14:15 -0500)]
Merge pull request #1517 from tamiko/complexify

Tensor<rank,dim,Number> - major cleanup

9 years agoBugfix: Use generic initializer in Tensor::norm() 1517/head
Matthias Maier [Mon, 7 Sep 2015 19:13:59 +0000 (14:13 -0500)]
Bugfix: Use generic initializer in Tensor::norm()


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.