]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
14 years agoWrite some more.
Wolfgang Bangerth [Tue, 17 Aug 2010 19:55:23 +0000 (19:55 +0000)]
Write some more.

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

14 years agoExtend significantly.
Wolfgang Bangerth [Tue, 17 Aug 2010 19:54:24 +0000 (19:54 +0000)]
Extend significantly.

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

14 years agoCan't use latex markup for non-ASCII letters in doxygen comments. One
Wolfgang Bangerth [Tue, 17 Aug 2010 19:47:41 +0000 (19:47 +0000)]
Can't use latex markup for non-ASCII letters in doxygen comments. One
would have to use the direction HTML markup for that.

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

14 years agoRemove trailing whitespace.
Wolfgang Bangerth [Tue, 17 Aug 2010 19:43:07 +0000 (19:43 +0000)]
Remove trailing whitespace.

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

14 years agoTerminate one formula. Properly indent in a few places.
Wolfgang Bangerth [Tue, 17 Aug 2010 19:40:21 +0000 (19:40 +0000)]
Terminate one formula. Properly indent in a few places.

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

14 years agoReorder initialization of fields to avoid compiler error.
Wolfgang Bangerth [Tue, 17 Aug 2010 19:27:12 +0000 (19:27 +0000)]
Reorder initialization of fields to avoid compiler error.

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

14 years agoreplace stupid integer product by the more reasonable test that both are nonzero
Guido Kanschat [Tue, 17 Aug 2010 08:58:48 +0000 (08:58 +0000)]
replace stupid integer product by the more reasonable test that both are nonzero
this allows us to use copy_from with sparsity patterns of size 65536

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

14 years agoremove declaration of nonexisting function
Guido Kanschat [Mon, 16 Aug 2010 15:18:00 +0000 (15:18 +0000)]
remove declaration of nonexisting function

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

14 years agoan if added for face integrals
Baerbel Jannsen [Mon, 16 Aug 2010 12:49:20 +0000 (12:49 +0000)]
an if added for face integrals

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

14 years agodefault constructor for DoFHandler
Guido Kanschat [Mon, 16 Aug 2010 12:20:15 +0000 (12:20 +0000)]
default constructor for DoFHandler

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

14 years agoremove compiler warning
Guido Kanschat [Mon, 16 Aug 2010 09:53:04 +0000 (09:53 +0000)]
remove compiler warning

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

14 years agoRemove some unused parameters to avoid warnings.
Wolfgang Bangerth [Mon, 16 Aug 2010 02:22:03 +0000 (02:22 +0000)]
Remove some unused parameters to avoid warnings.

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

14 years agoMark a number of objects as const if they are only set once. This
Wolfgang Bangerth [Sat, 14 Aug 2010 12:49:12 +0000 (12:49 +0000)]
Mark a number of objects as const if they are only set once. This
helps read code since it makes it clear that there will be no further
modifications further down below.

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

14 years agoUse dynamic_cast to find out whether a finite element is of type
Wolfgang Bangerth [Sat, 14 Aug 2010 12:43:00 +0000 (12:43 +0000)]
Use dynamic_cast to find out whether a finite element is of type
FE_Nedelec. This is more reliable since it also captures the case of
an element that may be derived from FE_Nedelec.

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

14 years agoMove the declaration of temporaries that are left uninitialized at the
Wolfgang Bangerth [Sat, 14 Aug 2010 12:35:39 +0000 (12:35 +0000)]
Move the declaration of temporaries that are left uninitialized at the
top of the function to further down where they are actually used; if
possible, initialize at the place of declaration and then mark them as
constant.

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

14 years agoOne more case of using arrays for static data.
Wolfgang Bangerth [Sat, 14 Aug 2010 03:41:12 +0000 (03:41 +0000)]
One more case of using arrays for static data.

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

14 years agoWhen defining abbreviations for non-scalar data, use references,
Wolfgang Bangerth [Sat, 14 Aug 2010 03:38:34 +0000 (03:38 +0000)]
When defining abbreviations for non-scalar data, use references,
i.e. use
      const std::vector<Tensor<2, dim> > &
jacobians = fe_values.get_jacobians ();
instead of
      std::vector<Tensor<2, dim> >
        jacobians = fe_values.get_jacobians ();

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

14 years agoPut stuff that's known into lookup tables rather than initializing
Wolfgang Bangerth [Sat, 14 Aug 2010 03:25:17 +0000 (03:25 +0000)]
Put stuff that's known into lookup tables rather than initializing
things dynamically, i.e. do

  const unsigned int data[6] = { .... };
  ...
  do_something(data[face]);

rather than

  unsigned int data;
  switch (face) {
    case 0: data = ...; break;
    case 1: data = ...; break;
    case 2: data = ...; break;
    ...
  }
  do_something(data);

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

14 years agoMake sure we don't actually call a function that isn't meant to be
Wolfgang Bangerth [Sat, 14 Aug 2010 03:09:47 +0000 (03:09 +0000)]
Make sure we don't actually call a function that isn't meant to be
called for this particular space dimension. We use the idiom:

  void foo (Quadrature<3> &q)
  {...}

  template <int dim>
  void foo (Quadrature<dim> &q)
  { Assert (false, ExcInternalError()); }

for functions that are supposed to be called only in 3d.

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

14 years agoIn switch(dim) clauses where only dim=2 and dim=3 are tested, add a
Wolfgang Bangerth [Sat, 14 Aug 2010 02:50:53 +0000 (02:50 +0000)]
In switch(dim) clauses where only dim=2 and dim=3 are tested, add a
default clause that throws an exception.

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

14 years agoSimple style changes: indent according to our usual style, break lines
Wolfgang Bangerth [Sat, 14 Aug 2010 02:44:11 +0000 (02:44 +0000)]
Simple style changes: indent according to our usual style, break lines
at 80 characters if possible.

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

14 years agoNo need to explicitly instantiate functions in an internal namespace
Wolfgang Bangerth [Fri, 13 Aug 2010 23:21:09 +0000 (23:21 +0000)]
No need to explicitly instantiate functions in an internal namespace
-- they are not supposed to be called from user space anyway, and are
automatically instantiated at the point of use in the .templates.h
file by the compiler.

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

14 years agoFunctions for computing Dirichlet boundary conditions for Nedelec elements.
Markus Buerg [Fri, 13 Aug 2010 08:47:34 +0000 (08:47 +0000)]
Functions for computing Dirichlet boundary conditions for Nedelec elements.

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

14 years agoActually remove the --with-metis-include flag since we don't support
Wolfgang Bangerth [Thu, 12 Aug 2010 21:02:13 +0000 (21:02 +0000)]
Actually remove the --with-metis-include flag since we don't support
it any more but it still shows up when you say
  ./configure --help

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

14 years agoFix computation of points in QGaussLobatto.
Wolfgang Bangerth [Thu, 12 Aug 2010 20:25:38 +0000 (20:25 +0000)]
Fix computation of points in QGaussLobatto.

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

14 years agoFix bug introduced in r21643.
Martin Kronbichler [Thu, 12 Aug 2010 07:03:35 +0000 (07:03 +0000)]
Fix bug introduced in r21643.

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

14 years agoFixed typo in documentation.
Martin Kronbichler [Wed, 11 Aug 2010 14:00:36 +0000 (14:00 +0000)]
Fixed typo in documentation.

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

14 years agoImprove documentation of nth_index_in_set and index_within_set by giving the variable...
Martin Kronbichler [Wed, 11 Aug 2010 13:34:23 +0000 (13:34 +0000)]
Improve documentation of nth_index_in_set and index_within_set by giving the variables intuitive names: local_index and global_index. Also implemented one TODO regarding the binary search.

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

14 years agoMake sure old structures are cleared before new information is entered.
Martin Kronbichler [Wed, 11 Aug 2010 13:23:11 +0000 (13:23 +0000)]
Make sure old structures are cleared before new information is entered.

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

14 years agoImplement function get_constraint_entries that allows queries to the constraints...
Martin Kronbichler [Wed, 11 Aug 2010 13:22:01 +0000 (13:22 +0000)]
Implement function get_constraint_entries that allows queries to the constraints in a given line. Also make the public distribute_local_to_global function inline, since it just refers to another function that actually implements that feature. To make this work, the template-resolving function for block matrices has been moved to block_indices.h

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

14 years agoUpdate and simplify Trilinos build instructions.
Wolfgang Bangerth [Tue, 10 Aug 2010 22:39:42 +0000 (22:39 +0000)]
Update and simplify Trilinos build instructions.

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

14 years agoFixed error in get_function_curls.
Markus Buerg [Mon, 9 Aug 2010 21:25:41 +0000 (21:25 +0000)]
Fixed error in get_function_curls.

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

14 years agoOne more.
Wolfgang Bangerth [Mon, 9 Aug 2010 05:06:45 +0000 (05:06 +0000)]
One more.

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

14 years agoDon't include libraries we don't actually need.
Wolfgang Bangerth [Mon, 9 Aug 2010 05:05:42 +0000 (05:05 +0000)]
Don't include libraries we don't actually need.

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

14 years agoRemove temporary file.
Wolfgang Bangerth [Mon, 9 Aug 2010 03:47:59 +0000 (03:47 +0000)]
Remove temporary file.

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

14 years agoAdjust to change r21611.
Wolfgang Bangerth [Mon, 9 Aug 2010 03:46:26 +0000 (03:46 +0000)]
Adjust to change r21611.

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

14 years agorecord changes, in changes.h, about SLEPcWrappers (lac) updates
Toby D. Young [Fri, 6 Aug 2010 09:48:30 +0000 (09:48 +0000)]
record changes, in changes.h, about SLEPcWrappers (lac) updates

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

14 years agoUse std_cxx1x::shared_ptr instead of boost::shared_ptr.
Wolfgang Bangerth [Fri, 6 Aug 2010 03:01:08 +0000 (03:01 +0000)]
Use std_cxx1x::shared_ptr instead of boost::shared_ptr.

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

14 years agoRemove an empty file.
Wolfgang Bangerth [Fri, 6 Aug 2010 02:57:44 +0000 (02:57 +0000)]
Remove an empty file.

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

14 years agoMake MeshWorker components work in 1d as well.
Wolfgang Bangerth [Fri, 6 Aug 2010 02:56:35 +0000 (02:56 +0000)]
Make MeshWorker components work in 1d as well.

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

14 years agoMake an argument a reference.
Wolfgang Bangerth [Fri, 6 Aug 2010 00:01:51 +0000 (00:01 +0000)]
Make an argument a reference.

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

14 years agoWrite VTU data as 64-bit values, rather than 32-bit values.
Wolfgang Bangerth [Thu, 5 Aug 2010 23:43:57 +0000 (23:43 +0000)]
Write VTU data as 64-bit values, rather than 32-bit values.

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

14 years ago++publications to list
Toby D. Young [Thu, 5 Aug 2010 08:03:45 +0000 (08:03 +0000)]
++publications to list

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

14 years agoA simple slepc 3.1 compatibility patch to the SLPEcWrappers: Also added working David...
Toby D. Young [Wed, 4 Aug 2010 14:06:34 +0000 (14:06 +0000)]
A simple slepc 3.1 compatibility patch to the SLPEcWrappers: Also added working Davidson solver class.

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

14 years agoadded the previous solution to the data for the inner solver as well
Baerbel Jannsen [Mon, 2 Aug 2010 13:31:14 +0000 (13:31 +0000)]
added the previous solution to the data for the inner solver as well

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

14 years agoAvoid a warning about an improperly overloaded function.
Wolfgang Bangerth [Sat, 31 Jul 2010 06:36:55 +0000 (06:36 +0000)]
Avoid a warning about an improperly overloaded function.

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

14 years agoAdd FETools::compute_projection_from_quadrature_points to changes list in index.
Andrew McBride [Thu, 29 Jul 2010 08:19:34 +0000 (08:19 +0000)]
Add FETools::compute_projection_from_quadrature_points to changes list in index.

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

14 years agoAdd FETools::compute_projection_from_quadrature_points.
Andrew McBride [Thu, 29 Jul 2010 07:38:28 +0000 (07:38 +0000)]
Add FETools::compute_projection_from_quadrature_points.

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

14 years agoAdded support for higher order mapping in step-34
Luca Heltai [Wed, 28 Jul 2010 13:18:59 +0000 (13:18 +0000)]
Added support for higher order mapping in step-34

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

14 years agoRemove an unnecessary header file.
Wolfgang Bangerth [Tue, 27 Jul 2010 18:34:19 +0000 (18:34 +0000)]
Remove an unnecessary header file.

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

14 years agoFix a problem in Triangulation::prepare_coarsening_and_refinement.
Wolfgang Bangerth [Tue, 27 Jul 2010 18:32:05 +0000 (18:32 +0000)]
Fix a problem in Triangulation::prepare_coarsening_and_refinement.

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

14 years agoAdded support for MappingQ of higher order also in codim one case.
Luca Heltai [Tue, 27 Jul 2010 17:32:46 +0000 (17:32 +0000)]
Added support for MappingQ of higher order also in codim one case.

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

14 years agoFix documentation.
Wolfgang Bangerth [Tue, 27 Jul 2010 16:36:29 +0000 (16:36 +0000)]
Fix documentation.

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

14 years agoMore minor changes.
Wolfgang Bangerth [Tue, 27 Jul 2010 00:10:56 +0000 (00:10 +0000)]
More minor changes.

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

14 years agoReorder.
Wolfgang Bangerth [Mon, 26 Jul 2010 23:54:58 +0000 (23:54 +0000)]
Reorder.

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

14 years agoAdd a table of contents.
Wolfgang Bangerth [Mon, 26 Jul 2010 23:53:07 +0000 (23:53 +0000)]
Add a table of contents.

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

14 years agoNo need to test a flag if we clear it if it is set. Just clear it.
Wolfgang Bangerth [Sat, 24 Jul 2010 23:52:55 +0000 (23:52 +0000)]
No need to test a flag if we clear it if it is set. Just clear it.

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

14 years agoFormat in a way so that gcc doesn't warn.
Wolfgang Bangerth [Sat, 24 Jul 2010 10:30:48 +0000 (10:30 +0000)]
Format in a way so that gcc doesn't warn.

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

14 years agoMake sure we instantiate the right thing. This avoids a linker error with static...
Wolfgang Bangerth [Sat, 24 Jul 2010 00:24:33 +0000 (00:24 +0000)]
Make sure we instantiate the right thing. This avoids a linker error with static libs when also using trilinos.

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

14 years agoMake C++ conforming.
Wolfgang Bangerth [Fri, 23 Jul 2010 23:15:41 +0000 (23:15 +0000)]
Make C++ conforming.

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

14 years agonew roundoff
Guido Kanschat [Fri, 23 Jul 2010 20:05:13 +0000 (20:05 +0000)]
new roundoff

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

14 years agoRemoved: Rogue code that used SLES (no longer supported by deal.II)
Toby D. Young [Fri, 23 Jul 2010 18:24:21 +0000 (18:24 +0000)]
Removed: Rogue code that used SLES (no longer supported by deal.II)

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

14 years agoDo set static_lib_suffix correctly for non-linux platforms.
Wolfgang Bangerth [Fri, 23 Jul 2010 14:28:03 +0000 (14:28 +0000)]
Do set static_lib_suffix correctly for non-linux platforms.

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

14 years agoUpdate links.
Wolfgang Bangerth [Fri, 23 Jul 2010 02:54:46 +0000 (02:54 +0000)]
Update links.

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

14 years agoFix links.
Wolfgang Bangerth [Fri, 23 Jul 2010 02:50:55 +0000 (02:50 +0000)]
Fix links.

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

14 years agoBug fix: Relaxed tolerance on is_hermitian() and is_symmetric() operations on PETScMa...
Toby D. Young [Thu, 22 Jul 2010 13:34:15 +0000 (13:34 +0000)]
Bug fix: Relaxed tolerance on is_hermitian() and is_symmetric() operations on PETScMatrixBase such that they can return 1 (true) for the deal.II default tolerance

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

14 years agoFix error in matching PETSC_VERION
Toby D. Young [Thu, 22 Jul 2010 11:44:06 +0000 (11:44 +0000)]
Fix error in matching PETSC_VERION

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

14 years agodocument bug fix
Guido Kanschat [Wed, 21 Jul 2010 18:22:16 +0000 (18:22 +0000)]
document bug fix

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

14 years agoattempt at removing a time conflict; we may have to revert to the sequentialized...
Guido Kanschat [Wed, 21 Jul 2010 18:17:40 +0000 (18:17 +0000)]
attempt at removing a time conflict; we may have to revert to the sequentialized Makefile though

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

14 years agoUpdate for SLEPcWrappers to slepc-dev (to be slepc-3.1)
Toby D. Young [Wed, 21 Jul 2010 15:07:15 +0000 (15:07 +0000)]
Update for SLEPcWrappers to slepc-dev (to be slepc-3.1)

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

14 years agoAdded new feature to QGaussOneOverR
Luca Heltai [Wed, 21 Jul 2010 14:09:29 +0000 (14:09 +0000)]
Added new feature to QGaussOneOverR

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

14 years agoAdd solver to SLEPcWrappers and trivially update documentation
Toby D. Young [Wed, 21 Jul 2010 10:21:35 +0000 (10:21 +0000)]
Add solver to SLEPcWrappers and trivially update documentation

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

14 years agoinline functions to avoid linker conflicts
Guido Kanschat [Tue, 20 Jul 2010 19:59:23 +0000 (19:59 +0000)]
inline functions to avoid linker conflicts

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

14 years agonew test for relaxation methods and adjust results for SSOR
Guido Kanschat [Tue, 20 Jul 2010 19:58:37 +0000 (19:58 +0000)]
new test for relaxation methods and adjust results for SSOR

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

14 years agoextend copyright
Guido Kanschat [Tue, 20 Jul 2010 19:19:13 +0000 (19:19 +0000)]
extend copyright

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

14 years agoadd SolverRelaxation and fix (!) SparseMatrix::precondition_SSOR and SparseMatrixEZ...
Guido Kanschat [Tue, 20 Jul 2010 19:17:02 +0000 (19:17 +0000)]
add SolverRelaxation and fix (!) SparseMatrix::precondition_SSOR and SparseMatrixEZ::precondition_SSOR

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

14 years agointroduce a base class for PreconditionBlock which only stores matrices
Guido Kanschat [Tue, 20 Jul 2010 05:54:46 +0000 (05:54 +0000)]
introduce a base class for PreconditionBlock which only stores matrices

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

14 years agofix typo in documentation
Guido Kanschat [Tue, 20 Jul 2010 04:07:36 +0000 (04:07 +0000)]
fix typo in documentation

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

14 years agofix typo in documentation
Guido Kanschat [Tue, 20 Jul 2010 03:47:58 +0000 (03:47 +0000)]
fix typo in documentation

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

14 years agoRemove more 'so far's.
Wolfgang Bangerth [Mon, 19 Jul 2010 16:15:44 +0000 (16:15 +0000)]
Remove more 'so far's.

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

14 years agoremove "so far"
Guido Kanschat [Sun, 18 Jul 2010 22:14:24 +0000 (22:14 +0000)]
remove "so far"

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

14 years agoAdd the caveat that this program can only be run without threading.
Wolfgang Bangerth [Sun, 18 Jul 2010 20:36:12 +0000 (20:36 +0000)]
Add the caveat that this program can only be run without threading.

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

14 years agoSay 6.3.0, not just 6.3.
Wolfgang Bangerth [Sun, 18 Jul 2010 20:00:24 +0000 (20:00 +0000)]
Say 6.3.0, not just 6.3.

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

14 years agoLink to 6.3.1 change list.
Wolfgang Bangerth [Sun, 18 Jul 2010 19:59:56 +0000 (19:59 +0000)]
Link to 6.3.1 change list.

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

14 years agoCopy over file from release branch.
Wolfgang Bangerth [Sun, 18 Jul 2010 19:55:08 +0000 (19:55 +0000)]
Copy over file from release branch.

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

14 years agoadd deprecated style
Guido Kanschat [Sun, 18 Jul 2010 19:54:18 +0000 (19:54 +0000)]
add deprecated style

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

14 years agoDon't use 'using namespace std;'. As it turns out, this wasn't necessary in these...
Wolfgang Bangerth [Sun, 18 Jul 2010 19:47:22 +0000 (19:47 +0000)]
Don't use 'using namespace std;'. As it turns out, this wasn't necessary in these files anyway.

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

14 years agolighter
Guido Kanschat [Sun, 18 Jul 2010 19:41:26 +0000 (19:41 +0000)]
lighter

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

14 years agoAdd weak style
Guido Kanschat [Sun, 18 Jul 2010 19:36:35 +0000 (19:36 +0000)]
Add weak style

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

14 years agoDocument one of the problems and the fix in step-33.
Wolfgang Bangerth [Sun, 18 Jul 2010 18:44:30 +0000 (18:44 +0000)]
Document one of the problems and the fix in step-33.

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

14 years agoDon't use std::make_pair with explicit template arguments.
Wolfgang Bangerth [Sun, 18 Jul 2010 18:10:31 +0000 (18:10 +0000)]
Don't use std::make_pair with explicit template arguments.

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

14 years agoRegenerate.
Wolfgang Bangerth [Sun, 18 Jul 2010 17:30:11 +0000 (17:30 +0000)]
Regenerate.

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

14 years agoProvide output if no MUMPS.
Wolfgang Bangerth [Sun, 18 Jul 2010 17:29:38 +0000 (17:29 +0000)]
Provide output if no MUMPS.

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

14 years agoallow for more parallel compiling
Guido Kanschat [Sun, 18 Jul 2010 15:20:53 +0000 (15:20 +0000)]
allow for more parallel compiling

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

14 years agofix filename
Guido Kanschat [Sun, 18 Jul 2010 05:11:48 +0000 (05:11 +0000)]
fix filename

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

14 years agoBDM elements
Guido Kanschat [Sun, 18 Jul 2010 05:02:58 +0000 (05:02 +0000)]
BDM elements

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

14 years agore-add deprecated header files
Guido Kanschat [Sun, 18 Jul 2010 04:08:12 +0000 (04:08 +0000)]
re-add deprecated header files

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

14 years agomove algorithms to lac
Guido Kanschat [Sun, 18 Jul 2010 04:00:43 +0000 (04:00 +0000)]
move algorithms to lac

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

14 years agoMake sure the FEValues::get_cell is usable. Right now it wasn't because it used the...
Wolfgang Bangerth [Sat, 17 Jul 2010 03:21:58 +0000 (03:21 +0000)]
Make sure the FEValues::get_cell is usable. Right now it wasn't because it used the CellIteratorBase class that is now only forward declared and had been moved into the .cc file.

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

14 years agoRemove an unused variable.
Wolfgang Bangerth [Fri, 16 Jul 2010 18:19:21 +0000 (18:19 +0000)]
Remove an unused variable.

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