aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Do not use the topmost 2 bits in a CCTK_INT, since this leads toschnetter2005-12-18
| | | | | | | | undefined behaviour in C. We could use more clever code and then use the second-topmost bit as well, omitting only 1 bit. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@54 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Introduce a new schedule group ADMBase_InitialGauge which is run justschnetter2005-09-26
| | | | | | | | | | | | | | after ADMBase_InitialData. This makes it possible to set up all ADM data in these two groups, and then e.g. convert to the BSSN variables after these groups still in the bin "initial". Various other thorns, such as dissipation or multipatch, can now apply transformations to the initial data in the bin "postinitial". This simplifies the interaction between various thorns. Change various thorns to use these two groups. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@51 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Removed unnecessary routine SetupSpaceMaskRegistry().tradke2005-07-27
| | | | | | | This closes PR CactusEinstein/1951: "Unimportant memory leak in SpaceMask". git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@49 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* rename DEBUG macro to SPACEMASK_DEBUGjthorn2004-06-25
| | | | | | | | so it doesn't confuse code in other thorns which #include this file but define their own local DEBUG macros git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@46 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* * add lots more parentheses to macrosjthorn2004-06-13
| | | | | | | | | | | SpaceMask_SetStateBits SpaceMask_CheckStateBits * remove trailing ';' from macro SpaceMask_SetStateBits since that's supposed to be supplied when the macro is used git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@45 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Untabified.goodale2004-05-17
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@43 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* Untabified. Please try to adhere to the Cactus coding guidelines whengoodale2004-05-17
| | | | | | | modifying or adding files. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@42 a491c6a4-70bf-4b89-8b36-d6c0cb1f094e
* 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
* 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
* include string.hrideout2003-03-06
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@22 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
* 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
* Fixing warningsallen2002-05-04
| | | | git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/SpaceMask/trunk@8 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
* 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