aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* SpaceMask_CheckState() returns a CCTK_INT rather than an int.tradke2003-07-07
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@32 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Added SpaceMask_GetMaskBitsList() function, which returns an orderedpollney2003-05-26
| | | | | | | | | | | | | list of all the bitmasks associated with each state of a given type. Also allowed for passing a NULL as the list of state names on registry, in which case the mask states are allocated but not named. These additions make it easier to allocate a mask bitfield of a size that might only be known at runtime. More routines for working with mask states as integers might be useful in the future. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@31 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* SpaceMask_GetStateBits() returns -1 on error.pollney2003-05-22
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@30 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Fixing memory leak caused by unfreed temporaries in TWO_FORTSTRING_CREATE, ↵hawke2003-05-19
| | | | | | found by Frank Loeffler. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@29 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Added some error return codes.pollney2003-04-08
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@28 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Remove whitespace from Fortran macros to avoid problems with perl CPP.hawke2003-04-07
| | | | | | | Add extra braces around arguments just in case. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@27 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* add many const qualifiers to tell humans and compilers thatjthorn2003-03-17
| | | | | | | | | | | these functions won't try to modify state names etc, also that looking at a state won't modify the gridfn (without the const qualifiers, C++ code can't use these functions on const data) git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@26 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* add INCLUDES HEADER line to tell Cactus thatjthorn2003-03-17
| | | | | | | our header file "SpaceMask.h" may be #included by other thorns git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@25 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Fix compiler warnings:rideout2003-03-06
| | | | | | | | | | * Add missing prototypes. * Cast output of sizeof() to int, to avoid comparison of signed with unsigned ints. * Change & to && in SpaceMask_get_free_bits, which I think was intended. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@24 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Use cactus.sty in doc/latex.rideout2003-03-06
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@23 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* include string.hrideout2003-03-06
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@22 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Unfortunately the current scripts for assembling thorn guides cannot dealallen2002-12-30
| | | | | | | | | with \appendix, so instead make the appendix another section. Fixes Cactus/1339 git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@21 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Added stdlib.hallen2002-12-30
| | | | | | | Fixed Cactus/1326 git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@20 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Switch mask to CCTK_INT rather than CCTK_INT8, as some fortran compilerspollney2002-12-11
| | | | | | | have problems with the latter. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@19 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Bitmask is returned as a CCTK_INT8 by GetTypeBits() and GetStateBits().rideout2002-12-04
| | | | | | | Fixes CactusEinstein/1327. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@18 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Added clarifying word.rideout2002-12-03
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@17 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Remove control characters in docs.pollney2002-11-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@16 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Implementation of the recently discussed spacemask spec. See thepollney2002-11-14
| | | | | | | | | | | | | doc/documentation.tex for details. The existing mask grid-function (emask) has been retained for the time being, until the excision related thorns can be brought up to date with the new interface. These thorns should see no change in their behaviour. In the meantime, the space_mask GF can be used simultaneously via the new interfaces. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@15 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* include Symmetry.hrideout2002-09-03
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@14 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* SpaceMask uses Symmetry.hrideout2002-09-03
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@13 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Register symmetries at BASEGRID instead of INITIALallen2002-07-29
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@12 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* changing the documentation.tex files to use our cactus style fileikelley2002-06-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@10 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Use cactus style fileallen2002-05-31
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@9 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Fixing warningsallen2002-05-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@8 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* needs to inherit from grid for nowallen2002-05-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@7 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* register symmetries for maskallen2002-05-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@6 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Making use_mask restricted so other thorns can access it.goodale2002-04-27
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@5 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Mask functionality copied from old Einstein, with a bit more grdoc andgoodale2002-04-26
| | | | | | | | | stuff. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@4 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Initial import of new Einstein stuff. This has the new thorns, but not allgoodale2002-04-25
| | | | | | | | | | | | | | | | | are fully functional yet. When I have completed this stage I'll send an updated spec out with some questions which have arisen during this process. Please don't import anything new without checking with me first, as I want to play games on the server copying cvs files around to preserve histories on files which are only minimally touched. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@2 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Standard project directories initialized by cvs2svn.(no author)2002-04-25
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@1 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e