]>
https://gitweb.dealii.org/ - dealii.git/log
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Wolfgang Bangerth [Fri, 16 Jul 2010 18:17:46 +0000 (18:17 +0000)]
Remove a couple unused variables.
git-svn-id: https://svn.dealii.org/trunk@21509
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Fri, 16 Jul 2010 14:14:08 +0000 (14:14 +0000)]
Escape 'numbers'.
git-svn-id: https://svn.dealii.org/trunk@21508
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Fri, 16 Jul 2010 12:10:18 +0000 (12:10 +0000)]
Initialize variable.
git-svn-id: https://svn.dealii.org/trunk@21507
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Fri, 16 Jul 2010 12:09:14 +0000 (12:09 +0000)]
Compare shared_ptr against 0 in a way so that it also works with
current gcc mainline.
git-svn-id: https://svn.dealii.org/trunk@21506
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Thu, 15 Jul 2010 17:21:56 +0000 (17:21 +0000)]
Make things compiler with gcc 3.4.0.
git-svn-id: https://svn.dealii.org/trunk@21504
0785d39b -7218-0410-832d-
ea1e28bc413d
Toby D. Young [Wed, 14 Jul 2010 15:59:41 +0000 (15:59 +0000)]
Make use of PETSc and SLEPc versions in deal.II report features.
git-svn-id: https://svn.dealii.org/trunk@21503
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Wed, 14 Jul 2010 13:50:13 +0000 (13:50 +0000)]
Avoid a couple warnings about converting from double to int.
git-svn-id: https://svn.dealii.org/trunk@21497
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Wed, 14 Jul 2010 13:45:37 +0000 (13:45 +0000)]
Work around a problem with gcc3.3.x in step-34.
git-svn-id: https://svn.dealii.org/trunk@21495
0785d39b -7218-0410-832d-
ea1e28bc413d
Wolfgang Bangerth [Wed, 14 Jul 2010 12:55:06 +0000 (12:55 +0000)]
Fix typo.
git-svn-id: https://svn.dealii.org/trunk@21494
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.