]> https://gitweb.dealii.org/ - dealii-svn.git/log
dealii-svn.git
11 years agoFix compilation warning
kronbichler [Mon, 5 Aug 2013 16:30:45 +0000 (16:30 +0000)]
Fix compilation warning

git-svn-id: https://svn.dealii.org/trunk@30224 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoupdate properties
heister [Mon, 5 Aug 2013 15:39:45 +0000 (15:39 +0000)]
update properties

git-svn-id: https://svn.dealii.org/trunk@30223 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd tests
heister [Mon, 5 Aug 2013 15:32:47 +0000 (15:32 +0000)]
add tests

git-svn-id: https://svn.dealii.org/trunk@30222 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix assignment and reinit of PETScWrappers::MPI::Vector
heister [Mon, 5 Aug 2013 15:29:22 +0000 (15:29 +0000)]
fix assignment and reinit of PETScWrappers::MPI::Vector

git-svn-id: https://svn.dealii.org/trunk@30221 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Be quiet
maier [Mon, 5 Aug 2013 10:16:10 +0000 (10:16 +0000)]
CMake: Be quiet

git-svn-id: https://svn.dealii.org/trunk@30220 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix bug #76 by removing an assertion that incorrectly triggered. The assertion was...
bangerth [Sat, 3 Aug 2013 21:28:49 +0000 (21:28 +0000)]
Fix bug #76 by removing an assertion that incorrectly triggered. The assertion was also pretty expensive.

git-svn-id: https://svn.dealii.org/trunk@30219 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agodocumentation patch by Oleh Krehel
heister [Fri, 2 Aug 2013 16:43:55 +0000 (16:43 +0000)]
documentation patch by Oleh Krehel

git-svn-id: https://svn.dealii.org/trunk@30218 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoBugfix: Initialize optional languages on subsequent cmake runs, too.
maier [Thu, 1 Aug 2013 23:39:48 +0000 (23:39 +0000)]
Bugfix: Initialize optional languages on subsequent cmake runs, too.

git-svn-id: https://svn.dealii.org/trunk@30216 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoRevert the last 4 commits. git-svn is stupid
maier [Thu, 1 Aug 2013 23:03:00 +0000 (23:03 +0000)]
Revert the last 4 commits. git-svn is stupid

git-svn-id: https://svn.dealii.org/trunk@30214 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoWorkaround for a problem in LogStream:
maier [Thu, 1 Aug 2013 23:00:22 +0000 (23:00 +0000)]
Workaround for a problem in LogStream:

It is invalid to test for std::flush or std::endl with function pointers,

  std::ostream & (* const p_flush) (std::ostream &) = &std::flush; p ==
  p_flush ? ...,

as there could be multiple versions of of it.

And in fact, LLVM's libc++ implements std::flush and std::endl in a way
that every shared library and executable has its local copy.

Fix this by implementing a custom streambuf class that queries this sort of
information.

git-svn-id: https://svn.dealii.org/trunk@30213 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix a compilation warning with clang that complains about class and struct
maier [Thu, 1 Aug 2013 23:00:21 +0000 (23:00 +0000)]
Fix a compilation warning with clang that complains about class and struct
mismatch in declaration and instantiation

git-svn-id: https://svn.dealii.org/trunk@30212 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoWorkaround for a bug in the boost foreign_ptr.hpp header [1]
maier [Thu, 1 Aug 2013 23:00:20 +0000 (23:00 +0000)]
Workaround for a bug in the boost foreign_ptr.hpp header [1]

It is invalid to forward declare things in the std namespace. This works
with libstdc++ by accident but not with libc++ that uses inline namespace
features.

[1] https://svn.boost.org/trac/boost/ticket/6655

git-svn-id: https://svn.dealii.org/trunk@30211 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix a compilation issue with LLVMs libc++
maier [Thu, 1 Aug 2013 23:00:19 +0000 (23:00 +0000)]
Fix a compilation issue with LLVMs libc++

Due to more restrictive include policy template<class T1, class T2> struct pair
is not already defined in std at this point. Unfortunately, a forward
declaration is invalid because it doesn't allow for instantiations:

  "error: implicit instantiation of undefined template"

Furthermore, ISO/IEC C++ 2011 Standard, section 17.6.4.2.1 prohibits such
manipulation of the namespace std.

git-svn-id: https://svn.dealii.org/trunk@30210 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd *::MPI::BlockVector::has_ghost_elements() and a missing constructor
heister [Thu, 1 Aug 2013 20:56:18 +0000 (20:56 +0000)]
add *::MPI::BlockVector::has_ghost_elements() and a missing constructor

git-svn-id: https://svn.dealii.org/trunk@30209 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agomake the documentation of ConstantTensorFunction show up in doxygen
felix.gruber [Thu, 1 Aug 2013 20:46:25 +0000 (20:46 +0000)]
make the documentation of ConstantTensorFunction show up in doxygen

git-svn-id: https://svn.dealii.org/trunk@30208 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix typos in documentation of cmake usage
felix.gruber [Thu, 1 Aug 2013 20:44:34 +0000 (20:44 +0000)]
fix typos in documentation of cmake usage

git-svn-id: https://svn.dealii.org/trunk@30207 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd test with 4 cpus
heister [Thu, 1 Aug 2013 19:46:49 +0000 (19:46 +0000)]
add test with 4 cpus

git-svn-id: https://svn.dealii.org/trunk@30206 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix test
heister [Thu, 1 Aug 2013 19:31:36 +0000 (19:31 +0000)]
fix test

git-svn-id: https://svn.dealii.org/trunk@30205 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix test
heister [Thu, 1 Aug 2013 18:44:40 +0000 (18:44 +0000)]
fix test

git-svn-id: https://svn.dealii.org/trunk@30204 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd a reference to a discussion elsewhere.
bangerth [Thu, 1 Aug 2013 15:40:27 +0000 (15:40 +0000)]
Add a reference to a discussion elsewhere.

git-svn-id: https://svn.dealii.org/trunk@30203 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoRemove accidentally checked in test outputs
maier [Wed, 31 Jul 2013 23:12:23 +0000 (23:12 +0000)]
Remove accidentally checked in test outputs

git-svn-id: https://svn.dealii.org/trunk@30202 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix test
heister [Wed, 31 Jul 2013 15:01:48 +0000 (15:01 +0000)]
fix test

git-svn-id: https://svn.dealii.org/trunk@30199 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix test
heister [Wed, 31 Jul 2013 15:01:32 +0000 (15:01 +0000)]
fix test

git-svn-id: https://svn.dealii.org/trunk@30198 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix SparsityTools::distribute_sparsity_pattern for block systems
heister [Wed, 31 Jul 2013 15:01:04 +0000 (15:01 +0000)]
fix SparsityTools::distribute_sparsity_pattern for block systems

git-svn-id: https://svn.dealii.org/trunk@30197 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agosome prm-files
frohne [Wed, 31 Jul 2013 14:31:11 +0000 (14:31 +0000)]
some prm-files

git-svn-id: https://svn.dealii.org/trunk@30196 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agocopied step-42.cc from src/unified
frohne [Wed, 31 Jul 2013 14:30:00 +0000 (14:30 +0000)]
copied step-42.cc from src/unified

git-svn-id: https://svn.dealii.org/trunk@30195 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd Oleh to the credits
heister [Wed, 31 Jul 2013 13:41:55 +0000 (13:41 +0000)]
add Oleh to the credits

git-svn-id: https://svn.dealii.org/trunk@30194 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agodocumentation patch by Oleh Krehel
heister [Wed, 31 Jul 2013 13:40:09 +0000 (13:40 +0000)]
documentation patch by Oleh Krehel

git-svn-id: https://svn.dealii.org/trunk@30193 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agofix bug in IndexSet
heister [Wed, 31 Jul 2013 13:34:45 +0000 (13:34 +0000)]
fix bug in IndexSet

git-svn-id: https://svn.dealii.org/trunk@30192 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoChecking PETSc-SLEPc compatibility is VERSION_SUBMINOR independent and way to restric...
young [Wed, 31 Jul 2013 09:18:29 +0000 (09:18 +0000)]
Checking PETSc-SLEPc compatibility is VERSION_SUBMINOR independent and way to restrictive if not respected. Check MAJOR and MINOR only then go ahead with config.

git-svn-id: https://svn.dealii.org/trunk@30191 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd a publication (correct a publication)
young [Wed, 31 Jul 2013 09:03:54 +0000 (09:03 +0000)]
Add a publication (correct a publication)

git-svn-id: https://svn.dealii.org/trunk@30190 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agodocumentation patch by Oleh Krehel
heister [Wed, 31 Jul 2013 01:33:58 +0000 (01:33 +0000)]
documentation patch by Oleh Krehel

git-svn-id: https://svn.dealii.org/trunk@30187 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd a brief initial sentence.
bangerth [Tue, 30 Jul 2013 22:15:50 +0000 (22:15 +0000)]
Add a brief initial sentence.

git-svn-id: https://svn.dealii.org/trunk@30186 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoComment adjustment.
bangerth [Tue, 30 Jul 2013 22:15:12 +0000 (22:15 +0000)]
Comment adjustment.

git-svn-id: https://svn.dealii.org/trunk@30185 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: And guard the last to occurences of a C compiler as well
maier [Tue, 30 Jul 2013 09:22:03 +0000 (09:22 +0000)]
CMake: And guard the last to occurences of a C compiler as well

git-svn-id: https://svn.dealii.org/trunk@30184 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: *sigh*
maier [Tue, 30 Jul 2013 09:15:30 +0000 (09:15 +0000)]
CMake: *sigh*

git-svn-id: https://svn.dealii.org/trunk@30183 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Bugfix, use use supplied cxx flags throughout the configure phase, clean up...
maier [Tue, 30 Jul 2013 08:58:51 +0000 (08:58 +0000)]
CMake: Bugfix, use use supplied cxx flags throughout the configure phase, clean up CMAKE_REQUIRED_* setup and update documentation

git-svn-id: https://svn.dealii.org/trunk@30182 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd failing test
heister [Tue, 30 Jul 2013 03:02:49 +0000 (03:02 +0000)]
add failing test

git-svn-id: https://svn.dealii.org/trunk@30181 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd test
heister [Tue, 30 Jul 2013 02:35:34 +0000 (02:35 +0000)]
add test

git-svn-id: https://svn.dealii.org/trunk@30180 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agothrow when you create a FE_Q of degree 0 (otherwise we try to allocate a LOT of memory)
heister [Tue, 30 Jul 2013 02:35:22 +0000 (02:35 +0000)]
throw when you create a FE_Q of degree 0 (otherwise we try to allocate a LOT of memory)

git-svn-id: https://svn.dealii.org/trunk@30179 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoClarify that a variable is a number of neighbors, not a has some/has no neighbors...
bangerth [Sun, 28 Jul 2013 18:32:53 +0000 (18:32 +0000)]
Clarify that a variable is a number of neighbors, not a has some/has no neighbors boolean.

git-svn-id: https://svn.dealii.org/trunk@30178 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix a typo. Add another half sentence.
bangerth [Sun, 28 Jul 2013 18:32:49 +0000 (18:32 +0000)]
Fix a typo. Add another half sentence.

git-svn-id: https://svn.dealii.org/trunk@30177 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAlign semicolon as usual.
bangerth [Sun, 28 Jul 2013 18:32:44 +0000 (18:32 +0000)]
Align semicolon as usual.

git-svn-id: https://svn.dealii.org/trunk@30176 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoMinor adjustments.
bangerth [Sat, 27 Jul 2013 15:35:03 +0000 (15:35 +0000)]
Minor adjustments.

git-svn-id: https://svn.dealii.org/trunk@30175 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Adjust MPI error message
maier [Sat, 27 Jul 2013 12:23:29 +0000 (12:23 +0000)]
CMake: Adjust MPI error message

git-svn-id: https://svn.dealii.org/trunk@30174 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Cleanup
maier [Sat, 27 Jul 2013 12:15:16 +0000 (12:15 +0000)]
CMake: Cleanup

git-svn-id: https://svn.dealii.org/trunk@30173 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Cleanup and restructure
maier [Sat, 27 Jul 2013 12:12:34 +0000 (12:12 +0000)]
CMake: Cleanup and restructure

git-svn-id: https://svn.dealii.org/trunk@30172 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Fix typos
maier [Sat, 27 Jul 2013 11:48:15 +0000 (11:48 +0000)]
CMake: Fix typos

git-svn-id: https://svn.dealii.org/trunk@30171 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: A new header for Make.global_options as well
maier [Sat, 27 Jul 2013 11:32:59 +0000 (11:32 +0000)]
CMake: A new header for Make.global_options as well

git-svn-id: https://svn.dealii.org/trunk@30170 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Cleanup deal.IIConfig.cmake a bit
maier [Sat, 27 Jul 2013 11:26:39 +0000 (11:26 +0000)]
CMake: Cleanup deal.IIConfig.cmake a bit

git-svn-id: https://svn.dealii.org/trunk@30169 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdapt step-18 to the resent changes in DataOut
maier [Sat, 27 Jul 2013 11:12:52 +0000 (11:12 +0000)]
Adapt step-18 to the resent changes in DataOut

git-svn-id: https://svn.dealii.org/trunk@30168 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoNo need for 'typename'.
bangerth [Sat, 27 Jul 2013 10:51:45 +0000 (10:51 +0000)]
No need for 'typename'.

git-svn-id: https://svn.dealii.org/trunk@30167 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAlso instantiate a member template.
bangerth [Fri, 26 Jul 2013 22:58:02 +0000 (22:58 +0000)]
Also instantiate a member template.

git-svn-id: https://svn.dealii.org/trunk@30166 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd explicit instantiations.
bangerth [Fri, 26 Jul 2013 20:53:24 +0000 (20:53 +0000)]
Add explicit instantiations.

git-svn-id: https://svn.dealii.org/trunk@30165 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix names of header files.
bangerth [Fri, 26 Jul 2013 18:23:16 +0000 (18:23 +0000)]
Fix names of header files.

git-svn-id: https://svn.dealii.org/trunk@30164 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoImprove error message.
bangerth [Fri, 26 Jul 2013 18:20:35 +0000 (18:20 +0000)]
Improve error message.

git-svn-id: https://svn.dealii.org/trunk@30163 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix wrong link (thanks, Jean!).
bangerth [Fri, 26 Jul 2013 16:31:42 +0000 (16:31 +0000)]
Fix wrong link (thanks, Jean!).

git-svn-id: https://svn.dealii.org/trunk@30162 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoDiss of nicole klein 2013
frohne [Fri, 26 Jul 2013 15:34:23 +0000 (15:34 +0000)]
Diss of nicole klein 2013

git-svn-id: https://svn.dealii.org/trunk@30161 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoUpdate.
bangerth [Fri, 26 Jul 2013 13:45:27 +0000 (13:45 +0000)]
Update.

git-svn-id: https://svn.dealii.org/trunk@30160 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix comment.
bangerth [Fri, 26 Jul 2013 11:30:37 +0000 (11:30 +0000)]
Fix comment.

git-svn-id: https://svn.dealii.org/trunk@30159 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix a bug when using 64bit indices.
turcksin [Thu, 25 Jul 2013 15:18:48 +0000 (15:18 +0000)]
Fix a bug when using 64bit indices.

git-svn-id: https://svn.dealii.org/trunk@30158 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoLink to download site from news page.
bangerth [Thu, 25 Jul 2013 13:54:49 +0000 (13:54 +0000)]
Link to download site from news page.

git-svn-id: https://svn.dealii.org/trunk@30157 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoRe-indent function argument list.
bangerth [Thu, 25 Jul 2013 11:57:24 +0000 (11:57 +0000)]
Re-indent function argument list.

git-svn-id: https://svn.dealii.org/trunk@30156 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoRemove instantiation of a non-public function. This shouldn't be necessary since...
bangerth [Thu, 25 Jul 2013 11:07:04 +0000 (11:07 +0000)]
Remove instantiation of a non-public function. This shouldn't be necessary since the function is now in an anonymous namespace and is not exported anyway.

git-svn-id: https://svn.dealii.org/trunk@30155 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoPatch by Felix Gruber: Fix all sorts of misspellings and documentation markup fixes.
bangerth [Thu, 25 Jul 2013 10:53:32 +0000 (10:53 +0000)]
Patch by Felix Gruber: Fix all sorts of misspellings and documentation markup fixes.

git-svn-id: https://svn.dealii.org/trunk@30154 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoReindent parameters in grid_generator.h
maier [Thu, 25 Jul 2013 08:28:41 +0000 (08:28 +0000)]
Reindent parameters in grid_generator.h

git-svn-id: https://svn.dealii.org/trunk@30153 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoDo not execute tutorial programs with mpirun -np 2. It violates the element of least...
bangerth [Wed, 24 Jul 2013 18:23:20 +0000 (18:23 +0000)]
Do not execute tutorial programs with mpirun -np 2. It violates the element of least surprise rule.

git-svn-id: https://svn.dealii.org/trunk@30152 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoMake tests work: convert DoFHandler::cell_iterator to DataOut::cell_iterator
kronbichler [Wed, 24 Jul 2013 15:43:22 +0000 (15:43 +0000)]
Make tests work: convert DoFHandler::cell_iterator to DataOut::cell_iterator

git-svn-id: https://svn.dealii.org/trunk@30151 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoImplement DataOut::add_data_vector with DoFHandler argument to allow for different...
kronbichler [Wed, 24 Jul 2013 14:28:03 +0000 (14:28 +0000)]
Implement DataOut::add_data_vector with DoFHandler argument to allow for different DoFHandlers

git-svn-id: https://svn.dealii.org/trunk@30150 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoChange GridGenerator from a class to a namespace. Undo introduction of local typedef...
bangerth [Wed, 24 Jul 2013 12:58:44 +0000 (12:58 +0000)]
Change GridGenerator from a class to a namespace. Undo introduction of local typedef size_type.

git-svn-id: https://svn.dealii.org/trunk@30149 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoBetter document GridTools::laplace_transform.
bangerth [Wed, 24 Jul 2013 11:40:19 +0000 (11:40 +0000)]
Better document GridTools::laplace_transform.

git-svn-id: https://svn.dealii.org/trunk@30148 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoChange the comment headers in the examples so that they don't get stripped
maier [Wed, 24 Jul 2013 09:28:41 +0000 (09:28 +0000)]
Change the comment headers in the examples so that they don't get stripped
away by strip_comments

git-svn-id: https://svn.dealii.org/trunk@30147 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoGet it right this time...
bangerth [Wed, 24 Jul 2013 03:02:22 +0000 (03:02 +0000)]
Get it right this time...

git-svn-id: https://svn.dealii.org/trunk@30146 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoSet the executable flag. Also adjust the starting revision number.
bangerth [Tue, 23 Jul 2013 21:07:44 +0000 (21:07 +0000)]
Set the executable flag. Also adjust the starting revision number.

git-svn-id: https://svn.dealii.org/trunk@30145 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agobenchmark: index.html is being generated
heister [Tue, 23 Jul 2013 20:58:39 +0000 (20:58 +0000)]
benchmark: index.html is being generated

git-svn-id: https://svn.dealii.org/trunk@30144 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoupdate benchmark (cmake, interactive graphs, etc.)
heister [Tue, 23 Jul 2013 20:56:54 +0000 (20:56 +0000)]
update benchmark (cmake, interactive graphs, etc.)

git-svn-id: https://svn.dealii.org/trunk@30143 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAlso assume that MPI is present when generating documentation.
bangerth [Tue, 23 Jul 2013 20:02:51 +0000 (20:02 +0000)]
Also assume that MPI is present when generating documentation.

git-svn-id: https://svn.dealii.org/trunk@30142 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoNormalize results in a more useful way: don't just replace one version number by...
bangerth [Tue, 23 Jul 2013 19:55:47 +0000 (19:55 +0000)]
Normalize results in a more useful way: don't just replace one version number by another, but by a generic string. This way we no longer have to bump version numbers every time we make a release.

git-svn-id: https://svn.dealii.org/trunk@30141 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoUpdate a remaining license header
maier [Tue, 23 Jul 2013 17:24:57 +0000 (17:24 +0000)]
Update a remaining license header

git-svn-id: https://svn.dealii.org/trunk@30136 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoRemove a vestige from the days of gcc2.95.
bangerth [Tue, 23 Jul 2013 16:32:21 +0000 (16:32 +0000)]
Remove a vestige from the days of gcc2.95.

git-svn-id: https://svn.dealii.org/trunk@30135 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd something.
bangerth [Tue, 23 Jul 2013 15:39:41 +0000 (15:39 +0000)]
Add something.

git-svn-id: https://svn.dealii.org/trunk@30133 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix some broken links. Update file properties.
bangerth [Tue, 23 Jul 2013 13:49:55 +0000 (13:49 +0000)]
Fix some broken links. Update file properties.

git-svn-id: https://svn.dealii.org/trunk@30131 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Silence clang warnings about unused arguments
maier [Tue, 23 Jul 2013 09:13:42 +0000 (09:13 +0000)]
CMake: Silence clang warnings about unused arguments

git-svn-id: https://svn.dealii.org/trunk@30125 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Bugfix, use the same Generator for when querying for language support.
maier [Tue, 23 Jul 2013 09:13:41 +0000 (09:13 +0000)]
CMake: Bugfix, use the same Generator for when querying for language support.

git-svn-id: https://svn.dealii.org/trunk@30124 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd instantiations for dim=1, spacedim=3 to avoid undefined symbols with Intel compiler
kronbichler [Tue, 23 Jul 2013 08:33:32 +0000 (08:33 +0000)]
Add instantiations for dim=1, spacedim=3 to avoid undefined symbols with Intel compiler

git-svn-id: https://svn.dealii.org/trunk@30123 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoFix warning with clang: Do not use -funroll-all-loops
kronbichler [Tue, 23 Jul 2013 06:45:12 +0000 (06:45 +0000)]
Fix warning with clang: Do not use -funroll-all-loops

git-svn-id: https://svn.dealii.org/trunk@30122 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoMove tests that currently fail.
bangerth [Mon, 22 Jul 2013 23:58:09 +0000 (23:58 +0000)]
Move tests that currently fail.

git-svn-id: https://svn.dealii.org/trunk@30121 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAdd a test that currently fails.
bangerth [Mon, 22 Jul 2013 23:55:08 +0000 (23:55 +0000)]
Add a test that currently fails.

git-svn-id: https://svn.dealii.org/trunk@30120 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Implement ENABLE_LANGUAGE_OPTIONAL
maier [Mon, 22 Jul 2013 23:19:52 +0000 (23:19 +0000)]
CMake: Implement ENABLE_LANGUAGE_OPTIONAL

git-svn-id: https://svn.dealii.org/trunk@30118 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: Be a bit more flexible in finding BLACS on DARWIN
maier [Mon, 22 Jul 2013 21:59:48 +0000 (21:59 +0000)]
CMake: Be a bit more flexible in finding BLACS on DARWIN

git-svn-id: https://svn.dealii.org/trunk@30117 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoGet link to post-8.0 changes back in.
bangerth [Mon, 22 Jul 2013 21:38:13 +0000 (21:38 +0000)]
Get link to post-8.0 changes back in.

git-svn-id: https://svn.dealii.org/trunk@30116 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoupdate ignores
heister [Mon, 22 Jul 2013 21:35:18 +0000 (21:35 +0000)]
update ignores

git-svn-id: https://svn.dealii.org/trunk@30115 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agorelease step 7
heister [Mon, 22 Jul 2013 21:32:25 +0000 (21:32 +0000)]
release step 7

git-svn-id: https://svn.dealii.org/trunk@30113 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoupdate version information
heister [Mon, 22 Jul 2013 21:28:52 +0000 (21:28 +0000)]
update version information

git-svn-id: https://svn.dealii.org/trunk@30110 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agorelease step: 1, adjust changes
heister [Mon, 22 Jul 2013 21:25:02 +0000 (21:25 +0000)]
release step: 1, adjust changes

git-svn-id: https://svn.dealii.org/trunk@30108 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoComment out link to recent changes.
bangerth [Mon, 22 Jul 2013 21:24:52 +0000 (21:24 +0000)]
Comment out link to recent changes.

git-svn-id: https://svn.dealii.org/trunk@30107 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoAnnounce 8.0.
bangerth [Mon, 22 Jul 2013 21:23:43 +0000 (21:23 +0000)]
Announce 8.0.

git-svn-id: https://svn.dealii.org/trunk@30106 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoSeveral more.
bangerth [Mon, 22 Jul 2013 20:48:39 +0000 (20:48 +0000)]
Several more.

git-svn-id: https://svn.dealii.org/trunk@30105 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoadd funroll-all-loops if using gcc
heister [Mon, 22 Jul 2013 20:28:28 +0000 (20:28 +0000)]
add funroll-all-loops if using gcc

git-svn-id: https://svn.dealii.org/trunk@30104 0785d39b-7218-0410-832d-ea1e28bc413d

11 years agoCMake: A small workaround
maier [Mon, 22 Jul 2013 19:35:24 +0000 (19:35 +0000)]
CMake: A small workaround

git-svn-id: https://svn.dealii.org/trunk@30103 0785d39b-7218-0410-832d-ea1e28bc413d


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.