[Commits] [Carpet] branch, master, updated. carpet-6-init-117-g0690549

Carpet git repositories carpetgit at stellarcollapse.org
Mon Jan 21 13:57:52 CST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Carpet — Adaptive Mesh Refinement for the Cactus Framework <http://carpetcode.org/>".

The branch, master has been updated
       via  06905493ce7c96779ee67811a067075b4fd64d66 (commit)
       via  54b56972cf4c7080c2d6f34d992e6dc097a2d861 (commit)
       via  cba9a87d349c6f1c78ff26dc11730584734930cf (commit)
       via  74b1afeaf084016e59c847867424ae38248941ce (commit)
       via  8c3e6378ed7611f479813ef9c780d2b2811a284b (commit)
       via  7e08602bb50cfd2ce0396fedc119544211e29aca (commit)
       via  3826479b859280f52e0122908ec0429574b26789 (commit)
       via  3192a5cc2740e8d801a72d6efd1103c8cca5a1d4 (commit)
       via  da0df590c04ede3b6e8e43ecee1b2526cc40a1db (commit)
       via  2acad47b1161286012b852a0b83f880c1fb5efb8 (commit)
      from  a39aff1ecb730b7e0d92788c7e208a008a7e659b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 06905493ce7c96779ee67811a067075b4fd64d66
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Mon Jan 21 13:14:06 2013 -0500

    TestLoopControl: Correct errors in testing ghost zones

commit 54b56972cf4c7080c2d6f34d992e6dc097a2d861
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Mon Jan 21 11:06:58 2013 -0500

    LoopControl: More self-checking

commit cba9a87d349c6f1c78ff26dc11730584734930cf
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Mon Jan 21 11:06:40 2013 -0500

    LoopControl: Correct Fortran macros; provide Fortran wrappers

commit 74b1afeaf084016e59c847867424ae38248941ce
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Mon Jan 21 11:05:32 2013 -0500

    TestLoopControl: Use module loopcontrol

commit 8c3e6378ed7611f479813ef9c780d2b2811a284b
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:38:06 2013 -0500

    TestLoopControl: New thorn

commit 7e08602bb50cfd2ce0396fedc119544211e29aca
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:15:32 2013 -0500

    LoopControl: Update Fortran macros to follow cctk_Loop API

commit 3826479b859280f52e0122908ec0429574b26789
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:15:00 2013 -0500

    LoopControl: Add assert statements to loop macros to catch indexing errors

commit 3192a5cc2740e8d801a72d6efd1103c8cca5a1d4
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:14:25 2013 -0500

    CarpetLib: Rename argument to vect::index from lsh to ash

commit da0df590c04ede3b6e8e43ecee1b2526cc40a1db
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:13:58 2013 -0500

    Carpet: Use cctk_ash where necessary in poisoning and checksumming

commit 2acad47b1161286012b852a0b83f880c1fb5efb8
Author: Erik Schnetter <schnetter at gmail.com>
Date:   Sun Jan 20 17:13:24 2013 -0500

    Carpet: Return cctk_ash instead of cctk_lsh in CCTK_ArrayGroupSizeB

-----------------------------------------------------------------------

Summary of changes:
 Carpet/Carpet/src/Poison.cc                        |    7 +-
 Carpet/Carpet/src/Storage.cc                       |    2 +-
 Carpet/Carpet/src/UnusedMask.cc                    |    4 +-
 Carpet/CarpetLib/src/vect.hh                       |   10 +-
 Carpet/LoopControl/src/loopcontrol.F90             |   14 +-
 Carpet/LoopControl/src/loopcontrol.cc              |   53 ++++
 Carpet/LoopControl/src/loopcontrol.h               |   16 +-
 Carpet/LoopControl/src/loopcontrol_fortran.h       |  185 +++++++------
 CarpetExtra/TestLoopControl/README                 |    9 +
 CarpetExtra/TestLoopControl/configuration.ccl      |    3 +
 CarpetExtra/TestLoopControl/doc/documentation.tex  |  144 ++++++++++
 CarpetExtra/TestLoopControl/interface.ccl          |   33 +++
 CarpetExtra/TestLoopControl/param.ccl              |    1 +
 CarpetExtra/TestLoopControl/schedule.ccl           |   18 ++
 CarpetExtra/TestLoopControl/src/TestLoopC.c        |  148 ++++++++++
 .../TestLoopControl/src/TestLoopFortran.F90        |   99 +++++++
 .../TestLoopControl/src/TestLoopPointwise.c        |  285 ++++++++++++++++++++
 CarpetExtra/TestLoopControl/src/make.code.defn     |    7 +
 CarpetExtra/TestLoopControl/test/testloop.par      |   10 +
 19 files changed, 942 insertions(+), 106 deletions(-)
 create mode 100644 CarpetExtra/TestLoopControl/README
 create mode 100644 CarpetExtra/TestLoopControl/configuration.ccl
 create mode 100644 CarpetExtra/TestLoopControl/doc/documentation.tex
 create mode 100644 CarpetExtra/TestLoopControl/interface.ccl
 create mode 100644 CarpetExtra/TestLoopControl/param.ccl
 create mode 100644 CarpetExtra/TestLoopControl/schedule.ccl
 create mode 100644 CarpetExtra/TestLoopControl/src/TestLoopC.c
 create mode 100644 CarpetExtra/TestLoopControl/src/TestLoopFortran.F90
 create mode 100644 CarpetExtra/TestLoopControl/src/TestLoopPointwise.c
 create mode 100644 CarpetExtra/TestLoopControl/src/make.code.defn
 create mode 100644 CarpetExtra/TestLoopControl/test/testloop.par


hooks/post-receive
--
Carpet — Adaptive Mesh Refinement for the Cactus Framework <http://carpetcode.org/>


More information about the Commits mailing list