]> https://gitweb.dealii.org/ - dealii-svn.git/log
dealii-svn.git
23 years agoOnly use 'typename' where allowed. Fix arg type.
wolf [Fri, 18 May 2001 07:48:32 +0000 (07:48 +0000)]
Only use 'typename' where allowed. Fix arg type.

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

23 years agoMove the flags classes out of GridOut and into a namespace of their own. This was...
wolf [Thu, 17 May 2001 20:23:12 +0000 (20:23 +0000)]
Move the flags classes out of GridOut and into a namespace of their own. This was necessary since C++ does not allow us to explicitely specialize any of these classes, although the present use of this feature was accepted by gcc as an extension. We want to move to more closer C++ compliance, also in order to allow other compilers to translate the library.

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

23 years agoAvoid gethostname in debug mode, since Linux does not know it wth -ansi
guido [Thu, 17 May 2001 16:46:10 +0000 (16:46 +0000)]
Avoid gethostname in debug mode, since Linux does not know it wth -ansi

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

23 years agoRemove double explicit specialization.
wolf [Thu, 17 May 2001 16:14:51 +0000 (16:14 +0000)]
Remove double explicit specialization.

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

23 years agoFix forgotten parameter in explicit specialization.
wolf [Thu, 17 May 2001 16:12:38 +0000 (16:12 +0000)]
Fix forgotten parameter in explicit specialization.

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

23 years agoAvoid the use of member templates when spawning, as this confuses compilers.
wolf [Thu, 17 May 2001 16:07:15 +0000 (16:07 +0000)]
Avoid the use of member templates when spawning, as this confuses compilers.

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

23 years agoAvoid the use of compose1 and select2nd, as these do not belong to the
wolf [Thu, 17 May 2001 15:59:07 +0000 (15:59 +0000)]
Avoid the use of compose1 and select2nd, as these do not belong to the
C++ standard. Rather have a small function ourselves that does exactly
the action of the composed functional.

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

23 years agoMore docs on Intel ICC compiler, don't check for unistd.h any more as
wolf [Thu, 17 May 2001 15:48:33 +0000 (15:48 +0000)]
More docs on Intel ICC compiler, don't check for unistd.h any more as
gethostname must be in that file if it exists and the test failed with
ICC's preprocessor due to some unknown reason (file was there but cpp
failed to process the file properly).

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 15:15:14 +0000 (15:15 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoMake function inline.
wolf [Thu, 17 May 2001 14:46:32 +0000 (14:46 +0000)]
Make function inline.

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

23 years agoWork around a bug in Intel's C++ compiler: the decision whether to
wolf [Thu, 17 May 2001 14:46:11 +0000 (14:46 +0000)]
Work around a bug in Intel's C++ compiler: the decision whether to
choose a function or a template with the same name was based on the
availability of the implementations, rather than the declarations
alone! Provide the implementation to make the compiler choose the
right function...

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

23 years agoFix typo.
wolf [Thu, 17 May 2001 14:17:33 +0000 (14:17 +0000)]
Fix typo.

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

23 years agoIf gethostname is declared, then it must be in unistd.h
wolf [Thu, 17 May 2001 14:16:04 +0000 (14:16 +0000)]
If gethostname is declared, then it must be in unistd.h

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

23 years agoWork around a overload resolution and partial ordering bug in Intel's
wolf [Thu, 17 May 2001 13:50:49 +0000 (13:50 +0000)]
Work around a overload resolution and partial ordering bug in Intel's
ICC compiler.

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

23 years agoNote Intel ICC compiler.
wolf [Thu, 17 May 2001 13:42:10 +0000 (13:42 +0000)]
Note Intel ICC compiler.

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

23 years agoAvoid trouble with member templates and overloaded functions by using
wolf [Thu, 17 May 2001 13:40:40 +0000 (13:40 +0000)]
Avoid trouble with member templates and overloaded functions by using
a function pointer.

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

23 years agoRecognize Intel's C++ compiler and provide suitable flags for it.
wolf [Thu, 17 May 2001 13:34:02 +0000 (13:34 +0000)]
Recognize Intel's C++ compiler and provide suitable flags for it.

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

23 years agoUse a smaller excess size for Intel's compiler.
wolf [Thu, 17 May 2001 13:32:05 +0000 (13:32 +0000)]
Use a smaller excess size for Intel's compiler.

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

23 years agoFix bugs with improperly specified explicit instantiations.
wolf [Thu, 17 May 2001 13:31:22 +0000 (13:31 +0000)]
Fix bugs with improperly specified explicit instantiations.

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

23 years agoUse proper base class.
wolf [Thu, 17 May 2001 13:30:45 +0000 (13:30 +0000)]
Use proper base class.

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

23 years agoSimplify the kludge with member templates etc.
wolf [Thu, 17 May 2001 13:23:54 +0000 (13:23 +0000)]
Simplify the kludge with member templates etc.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 13:00:38 +0000 (13:00 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoChange initializer from -1 to DoFHandler::invalid_dof_index.
wolf [Thu, 17 May 2001 12:52:07 +0000 (12:52 +0000)]
Change initializer from -1 to DoFHandler::invalid_dof_index.

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

23 years agoFix two real problems with non-existent local types.
wolf [Thu, 17 May 2001 12:51:15 +0000 (12:51 +0000)]
Fix two real problems with non-existent local types.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 12:49:49 +0000 (12:49 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoSlightly reindent.
wolf [Thu, 17 May 2001 12:45:23 +0000 (12:45 +0000)]
Slightly reindent.

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

23 years agoMake this compile with non-gcc compilers as well.
wolf [Thu, 17 May 2001 12:44:44 +0000 (12:44 +0000)]
Make this compile with non-gcc compilers as well.

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

23 years agoRemove double scope specification.
wolf [Thu, 17 May 2001 12:36:40 +0000 (12:36 +0000)]
Remove double scope specification.

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

23 years agostatic variables of explicitely specialized classes need not be
wolf [Thu, 17 May 2001 12:35:26 +0000 (12:35 +0000)]
static variables of explicitely specialized classes need not be
prefixed by "template<>"

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

23 years agoFix several things to make Intel C++ compiler happy.
wolf [Thu, 17 May 2001 12:30:24 +0000 (12:30 +0000)]
Fix several things to make Intel C++ compiler happy.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 12:07:52 +0000 (12:07 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoWrite default constructor of MappingQ1 to make Intel compiler more happy.
wolf [Thu, 17 May 2001 12:00:35 +0000 (12:00 +0000)]
Write default constructor of MappingQ1 to make Intel compiler more happy.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 11:54:42 +0000 (11:54 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 11:34:49 +0000 (11:34 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoFix a horribly importable place.
wolf [Thu, 17 May 2001 11:29:01 +0000 (11:29 +0000)]
Fix a horribly importable place.

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

23 years agoAdd missing include header.
wolf [Thu, 17 May 2001 11:22:21 +0000 (11:22 +0000)]
Add missing include header.

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

23 years agoFix two places where we used #if (not #ifdef) on preprocessor variables.
wolf [Thu, 17 May 2001 11:19:10 +0000 (11:19 +0000)]
Fix two places where we used #if (not #ifdef) on preprocessor variables.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 11:17:40 +0000 (11:17 +0000)]
Make variables const and thus Intel C++ compiler more happy.
Add TODOs.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 11:14:56 +0000 (11:14 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Thu, 17 May 2001 10:56:49 +0000 (10:56 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoHostname in JobIdentifier
guido [Thu, 17 May 2001 08:20:19 +0000 (08:20 +0000)]
Hostname in JobIdentifier

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

23 years agoPrint hostname in JobIdentifier
guido [Thu, 17 May 2001 08:13:21 +0000 (08:13 +0000)]
Print hostname in JobIdentifier

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

23 years agoVersion 3.1.1 bug-fix release
hartmann [Wed, 16 May 2001 11:54:03 +0000 (11:54 +0000)]
Version 3.1.1 bug-fix release

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

23 years agodeal.II 3.1.1 bug-fix release
hartmann [Wed, 16 May 2001 11:52:19 +0000 (11:52 +0000)]
deal.II 3.1.1 bug-fix release

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

23 years agoAdd link to deal.II-3.1.1.tar.gz
hartmann [Wed, 16 May 2001 11:41:04 +0000 (11:41 +0000)]
Add link to deal.II-3.1.1.tar.gz

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

23 years agoMake variables const and thus Intel C++ compiler more happy.
wolf [Wed, 16 May 2001 11:22:49 +0000 (11:22 +0000)]
Make variables const and thus Intel C++ compiler more happy.

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

23 years agoInclude cmath, as that is necessary for std::sqrt.
wolf [Wed, 16 May 2001 11:20:10 +0000 (11:20 +0000)]
Include cmath, as that is necessary for std::sqrt.

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

23 years agoFix syntax of explicit instantiations.
wolf [Wed, 16 May 2001 11:13:45 +0000 (11:13 +0000)]
Fix syntax of explicit instantiations.

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

23 years agoMake two variables const and thus Intel C++ compiler more happy.
wolf [Wed, 16 May 2001 11:08:57 +0000 (11:08 +0000)]
Make two variables const and thus Intel C++ compiler more happy.

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

23 years agoNew AutoDerivativeFunction class.
hartmann [Tue, 15 May 2001 16:23:10 +0000 (16:23 +0000)]
New AutoDerivativeFunction class.

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

23 years agoNew test for the new AutoDerivativeFunction.
hartmann [Tue, 15 May 2001 16:09:39 +0000 (16:09 +0000)]
New test for the new AutoDerivativeFunction.

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

23 years agoImplementation of new AutoDerivativeFunction.
hartmann [Tue, 15 May 2001 16:08:21 +0000 (16:08 +0000)]
Implementation of new AutoDerivativeFunction.

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

23 years agoMake several functions inline, to avoid base depending on lac.
hartmann [Tue, 15 May 2001 16:07:08 +0000 (16:07 +0000)]
Make several functions inline, to avoid base depending on lac.

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

23 years agoRemove obsolete 'std::cout << std::endl' line. It is unclear why it was there originally.
hartmann [Tue, 15 May 2001 16:03:22 +0000 (16:03 +0000)]
Remove obsolete 'std::cout << std::endl' line. It is unclear why it was there originally.

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

23 years agoQualify pair<.,.> with std::
wolf [Tue, 15 May 2001 12:41:02 +0000 (12:41 +0000)]
Qualify pair<.,.> with std::

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

23 years agoderivatives of singularity functions
guido [Tue, 15 May 2001 12:22:59 +0000 (12:22 +0000)]
derivatives of singularity functions

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

23 years agostd::-qualify sqrt(...)
wolf [Tue, 15 May 2001 12:01:59 +0000 (12:01 +0000)]
std::-qualify sqrt(...)

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

23 years agoRemove unnecessary include.
wolf [Mon, 14 May 2001 20:43:49 +0000 (20:43 +0000)]
Remove unnecessary include.

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

23 years agoFix a 1d problem. Clean up slightly.
wolf [Mon, 14 May 2001 20:42:52 +0000 (20:42 +0000)]
Fix a 1d problem. Clean up slightly.

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

23 years agoInclude ref to homepage.
hartmann [Mon, 14 May 2001 11:54:11 +0000 (11:54 +0000)]
Include ref to homepage.

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

23 years agoInclude refs to homepages.
hartmann [Mon, 14 May 2001 11:53:38 +0000 (11:53 +0000)]
Include refs to homepages.

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

23 years agotests fixed on SUN
guido [Mon, 14 May 2001 09:57:03 +0000 (09:57 +0000)]
tests fixed on SUN

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

23 years agoTODO
guido [Mon, 14 May 2001 09:41:36 +0000 (09:41 +0000)]
TODO

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

23 years agocomparison files fixed
guido [Mon, 14 May 2001 09:41:19 +0000 (09:41 +0000)]
comparison files fixed

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

23 years agocomparison files fixed
guido [Mon, 14 May 2001 09:07:29 +0000 (09:07 +0000)]
comparison files fixed

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

23 years agoboundary components for rectangle
guido [Sun, 13 May 2001 16:13:55 +0000 (16:13 +0000)]
boundary components for rectangle

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

23 years agomissing comparison files for cartesian mapping
guido [Sun, 13 May 2001 16:12:44 +0000 (16:12 +0000)]
missing comparison files for cartesian mapping

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

23 years agotests for MappingCartesian
guido [Fri, 11 May 2001 15:15:31 +0000 (15:15 +0000)]
tests for MappingCartesian
truncation of floats from normalize.pl removed: expect the usual problems with wave-test

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

23 years agotruncation of floats from normalize.pl removed
guido [Fri, 11 May 2001 15:13:13 +0000 (15:13 +0000)]
truncation of floats from normalize.pl removed

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

23 years agobug in normal vectors fixed
guido [Fri, 11 May 2001 15:10:57 +0000 (15:10 +0000)]
bug in normal vectors fixed

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

23 years agoSparsityPattern::copy_from, SparseMatrix::copy_from
wolf [Fri, 11 May 2001 14:54:30 +0000 (14:54 +0000)]
SparsityPattern::copy_from, SparseMatrix::copy_from

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

23 years agoImplement a function copy_from.
wolf [Thu, 10 May 2001 14:35:21 +0000 (14:35 +0000)]
Implement a function copy_from.

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

23 years agoOptimize slightly.
wolf [Thu, 10 May 2001 14:19:22 +0000 (14:19 +0000)]
Optimize slightly.

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

23 years agoAdd new test to check for features of sparsity pattern.
wolf [Thu, 10 May 2001 14:10:45 +0000 (14:10 +0000)]
Add new test to check for features of sparsity pattern.

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

23 years agoImplement a function copy_from.
wolf [Thu, 10 May 2001 14:00:16 +0000 (14:00 +0000)]
Implement a function copy_from.

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

23 years agoRevert order in which matrix is stored (requires vmult instead of
wolf [Thu, 10 May 2001 13:58:27 +0000 (13:58 +0000)]
Revert order in which matrix is stored (requires vmult instead of
Tvmult then).

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

23 years agoFix name of the game.
wolf [Thu, 10 May 2001 08:47:28 +0000 (08:47 +0000)]
Fix name of the game.

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

23 years agoFix bug.
wolf [Thu, 10 May 2001 07:12:26 +0000 (07:12 +0000)]
Fix bug.

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

23 years agoIntroduce new function
wolf [Wed, 9 May 2001 16:11:24 +0000 (16:11 +0000)]
Introduce new function
DoFTools::compute_intergrid_transfer_representation. Factor out common
code with existing functions.

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

23 years agoKovasznay flow
guido [Wed, 9 May 2001 15:46:57 +0000 (15:46 +0000)]
Kovasznay flow

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

23 years agoSlightly simplify code and make it a little faster by that.
wolf [Wed, 9 May 2001 13:25:14 +0000 (13:25 +0000)]
Slightly simplify code and make it a little faster by that.

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

23 years agoAdd nodes for friend classes, but don't output them at present.
wolf [Wed, 9 May 2001 12:52:57 +0000 (12:52 +0000)]
Add nodes for friend classes, but don't output them at present.

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

23 years agoAnother doc fix.
hartmann [Wed, 9 May 2001 12:15:06 +0000 (12:15 +0000)]
Another doc fix.

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

23 years agoSmall doc fix.
hartmann [Wed, 9 May 2001 12:09:26 +0000 (12:09 +0000)]
Small doc fix.

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

23 years agoSmall doc fix.
hartmann [Wed, 9 May 2001 11:46:56 +0000 (11:46 +0000)]
Small doc fix.

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

23 years agoAllow multiply nested types.
wolf [Wed, 9 May 2001 10:50:13 +0000 (10:50 +0000)]
Allow multiply nested types.

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

23 years agoFix one more typo.
third-party [Wed, 9 May 2001 10:46:05 +0000 (10:46 +0000)]
Fix one more typo.

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

23 years agoFix typo.
third-party [Wed, 9 May 2001 10:45:45 +0000 (10:45 +0000)]
Fix typo.

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

23 years agoFix subsections in class documentation.
hartmann [Wed, 9 May 2001 10:42:43 +0000 (10:42 +0000)]
Fix subsections in class documentation.

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

23 years agoDo it a second time.
wolf [Wed, 9 May 2001 10:39:32 +0000 (10:39 +0000)]
Do it a second time.

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

23 years agoFix occurrence of 'typename' and of nested class type variables.
wolf [Wed, 9 May 2001 10:38:14 +0000 (10:38 +0000)]
Fix occurrence of 'typename' and of nested class type variables.

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

23 years agoFix href that confused validate-xrefs.
wolf [Wed, 9 May 2001 10:26:49 +0000 (10:26 +0000)]
Fix href that confused validate-xrefs.

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

23 years agoReplace invalid @it{...} by @em{...}
third-party [Wed, 9 May 2001 10:25:01 +0000 (10:25 +0000)]
Replace invalid @it{...} by @em{...}

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

23 years agoAdd mailing list archives to the mail page, and unify references to this page.
wolf [Wed, 9 May 2001 10:21:44 +0000 (10:21 +0000)]
Add mailing list archives to the mail page, and unify references to this page.

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

23 years agodocumentation on support points
guido [Wed, 9 May 2001 10:06:29 +0000 (10:06 +0000)]
documentation on support points

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

23 years agoInclude reference to the deal.II homepage.
hartmann [Tue, 8 May 2001 12:47:26 +0000 (12:47 +0000)]
Include reference to the deal.II homepage.

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

23 years agoRemove date of deal.II homepage reference.
hartmann [Tue, 8 May 2001 12:46:52 +0000 (12:46 +0000)]
Remove date of deal.II homepage reference.

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

23 years agoBibTex entry for the deal.II homepage.
hartmann [Tue, 8 May 2001 12:36:44 +0000 (12:36 +0000)]
BibTex entry for the deal.II homepage.

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

23 years agoSimplify FETools::get_interpolation_matrix by using the FE::shape_value function.
hartmann [Tue, 8 May 2001 12:06:52 +0000 (12:06 +0000)]
Simplify FETools::get_interpolation_matrix by using the FE::shape_value function.

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

23 years agoNew ExcFEHasNoSupportPoints.
hartmann [Tue, 8 May 2001 12:05:54 +0000 (12:05 +0000)]
New ExcFEHasNoSupportPoints.

git-svn-id: https://svn.dealii.org/trunk@4562 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.