From: wolf Date: Mon, 17 Feb 2003 00:02:12 +0000 (+0000) Subject: . X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fffebfc43f132d541d2d5dc52d37c47032d97ad7;p=dealii-svn.git . git-svn-id: https://svn.dealii.org/trunk@7101 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/future.html b/deal.II/doc/future.html index 970ca9f068..293d10f079 100644 --- a/deal.II/doc/future.html +++ b/deal.II/doc/future.html @@ -90,8 +90,8 @@
  • A better test-suite: We have a small - suite of programs (approximately 60 programs with roughly - 18000 lines of code at present) that are run automatically + suite of programs (approximately 90 programs with roughly + 26000 lines of code at present) that are run automatically for regression tests each night. Some of these are modified real-life applications, so they should cover a relevant part of the library, but it would be necessary to reach every corner of diff --git a/deal.II/doc/news/2002/c-3-4.html b/deal.II/doc/news/2002/c-3-4.html index 1a1bcb4e73..5eade5706c 100644 --- a/deal.II/doc/news/2002/c-3-4.html +++ b/deal.II/doc/news/2002/c-3-4.html @@ -320,6 +320,15 @@ contributor's names are abbreviated by WB (Wolfgang Bangerth), GK (WB 2003/02/06)

    +
  • + New: The ThreadMutex classes now have a + member class ScopedLock that implements the + scoped thread-safe locking pattern of Doug Schmidt. It is also used in + various places of the code now. +
    + (WB 2003/01/28) +

    +
  • Fixed: The PosixThreadManager called its wait function in the @@ -708,6 +717,26 @@ contributor's names are abbreviated by WB (Wolfgang Bangerth), GK

    deal.II

      +
    1. + Fixed: The ConstraintMatrix::is_identity_constrained function + would previously generate a segmentation fault if called on a constraint + matrix object that did not contain any constraints at all. This is now + fixed. +
      + (WB 2003/02/15) +

      + +
    2. + Fixed: Objects of type FESystem + could not be constructed if one of the elements it is to be composed of + did not implement interface constraints for hanging nodes. This is now + fixed: you can construct such a composed element, but it does not + implement hanging node constraints either. +
      + (WB 2003/02/15) +

      +
    3. New: For each of the renumbering functions in the DoFRenumbering class there is now an @@ -720,15 +749,6 @@ contributor's names are abbreviated by WB (Wolfgang Bangerth), GK (RH 2003/02/03)

      -
    4. - New: The ThreadMutex classes now have a - member class ScopedLock that implements the - scoped thread-safe locking pattern of Doug Schmidt. It is also used in - various places of the code now. -
      - (WB 2003/01/28) -

      -
    5. Fixed: The GridReordering tried to be thread-safe in the initialization of some data, but was not due to a