summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Changing again how we deal with space and time, ready for AMR.allen1999-09-14
| | | | | | | | | | | | | | | | Now cctk_delta_space(i) are (again) the grid spacing on the BASE grid and there are macros CCTK_DELTA_SPACE(i) = cctk_delta_space(i)/cctk_levfac(i) to give the grid spacing on the local grid. Similarly with CCTK_DELTA_TIME You should switch over to using this variables whenever you want the grid spacings, to be ready for mesh refinement drivers. git-svn-id: http://svn.cactuscode.org/flesh/trunk@909 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Lowering the warning level for a string not being a group, sinceallen1999-09-14
| | | | | | | this is used to test if it is a group git-svn-id: http://svn.cactuscode.org/flesh/trunk@908 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Changed CCTKi_rfrTraverse to CCTK_rfrTraverse, as it needs to be callable ↵goodale1999-09-14
| | | | | | | | | from drivers. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@907 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Start on the new timer stuff.goodale1999-09-14
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@906 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Minor bug fix.goodale1999-09-14
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@905 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Won't set a parameter from an inactive thorn, see PR CCTK/77.goodale1999-09-14
| | | | | | | | | Removed some tabs from the source file. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@902 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Undo using MKDIRFLAGS until it also works under NT.tradke1999-09-13
| | | | | | | Commented the code out and added a small description. git-svn-id: http://svn.cactuscode.org/flesh/trunk@900 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Use also MKDIRFLAGS when creating directories.tradke1999-09-13
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@899 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Null Terminate String now gives a warning if the length of the stringallen1999-09-11
| | | | | | | | | | passed is more that 100000, since this always happens if you put the wrong arguments in a call to C from Fortran. It lets you carry on, since then you can use a debugger to see exactly where the problem is without editting any par files. git-svn-id: http://svn.cactuscode.org/flesh/trunk@896 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Fixed bug in CCTK_PASS_CTOCallen1999-09-10
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@895 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Removed MKDIRFLAGS from directory creation command. Default will beallen1999-09-07
| | | | | | | to give a warning if the directory exists. git-svn-id: http://svn.cactuscode.org/flesh/trunk@882 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Free some memory after a mallocallen1999-09-07
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@881 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Some debug statementsallen1999-09-07
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@880 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Removed a new line in a print statementallen1999-09-07
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@879 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Routine to create new directories CCTK_mkdirallen1999-09-07
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@878 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added prototypes for functionsallen1999-09-04
| | | | | | | | Tweaked CCTK_iSetParameter to ignore double spaces in the ActiveThorns psuedo-parameter git-svn-id: http://svn.cactuscode.org/flesh/trunk@871 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Setting all output dividers to be the same length and not too longallen1999-09-04
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@868 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Fixed a cut'n'paste bug.goodale1999-09-03
| | | | | | | | | | Added <float.h> to make sure the definitions of FLT_MAX and _MIN are included, this should help the build on NT. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@866 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Fixed CCTK_INT/int problem as per PR/51.goodale1999-09-01
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@864 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Changed an int to a CCTK_INT as this refers to a parameter.goodale1999-09-01
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@863 17b73243-c579-4c4c-a9d2-2d5706c11dac
* New parameter stuff.goodale1999-08-26
| | | | | | | | | | | Now a non-active thorn's extensions to parameters shouldn't be valid, range checking is now done, even for strings, which must conform to a regular expression. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@859 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added a find function.goodale1999-08-26
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@858 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Some tidying up - removing some redundant stuff added for WIN32.goodale1999-08-26
| | | | | | | Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@857 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added generic reduction routine CCTK_ReduceArray and CCTK_ReduceLocalScalartradke1999-08-20
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@854 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Corrected command line help: option -r redirects stdout, not stderrtradke1999-08-20
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@853 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Missed an include fileallen1999-07-31
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@849 17b73243-c579-4c4c-a9d2-2d5706c11dac
* A lot of parameter name changes, especially for IOallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@846 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Bugfix in CCTK_GroupNameFromVarI: memory was allocated to store the groupnametradke1999-07-30
| | | | | | | but not for the trailing '\0' ! This lets Linux crash in some IO routine. git-svn-id: http://svn.cactuscode.org/flesh/trunk@844 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Prototype that I thought might make some warnings go away, but it didn'tallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@837 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Fixed warning messagetradke1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@834 17b73243-c579-4c4c-a9d2-2d5706c11dac
* New include file namesallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@833 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Include file name changesallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@832 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Include file name changes, fortran bindings for IOallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@831 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Include file name changesallen1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@830 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Debugging info on the Groupslanfer1999-07-30
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@826 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added CCTK_PASS_CTOC and CCTK_PASS_FTOFallen1999-07-29
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@825 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Renaming functions and adding fortran bindingsallen1999-07-29
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@823 17b73243-c579-4c4c-a9d2-2d5706c11dac
* A check for a valid indexlanfer1999-07-29
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@821 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Quick hack for getting a warning on unknown parameters in the parameter filetradke1999-07-29
| | | | | | | | and stopping cactus then. Leave it here until we will use Tom's new parameter database functions. git-svn-id: http://svn.cactuscode.org/flesh/trunk@820 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Some cleaning, info calls, banners, etc.jmasso1999-07-29
| | | | | | | | | | and changing the default of PUGH::padding_active to "no". This obscure thingy is in principle only useful on the T3E... - Joan git-svn-id: http://svn.cactuscode.org/flesh/trunk@819 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Remove RFR point for INITIAL0allen1999-07-29
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@818 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added extern "C" declarationtradke1999-07-28
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@809 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added Fortran binding for CCTKi_NotYetImplementedallen1999-07-27
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@799 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added version number to <cactus_code> -vallen1999-07-27
| | | | | | | option git-svn-id: http://svn.cactuscode.org/flesh/trunk@798 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Added lower and upper bound coordinate registration for each coordinateallen1999-07-27
| | | | | | | | | | | | | | | | | | | on each GH. The relevant functions are CCTK_RegisterCoordRange(GH,lower,upper,"name") (this is done in CartGrid3D now after the coords are calculated) then to get at the values CCTK_CoordRange(GH,lower,upper,"name") Note that in C lower and upper are pointers to the values. This only all works for CCTK_REAL coords at the moment. git-svn-id: http://svn.cactuscode.org/flesh/trunk@793 17b73243-c579-4c4c-a9d2-2d5706c11dac
* CCTK function name changesallen1999-07-26
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@787 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Adding a secret rfr point until we get scheduling with before andallen1999-07-25
| | | | | | | after to work properly, so the testsuite works on linux. git-svn-id: http://svn.cactuscode.org/flesh/trunk@783 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Routine name changesallen1999-07-25
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@782 17b73243-c579-4c4c-a9d2-2d5706c11dac
* Routine name changesallen1999-07-25
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@781 17b73243-c579-4c4c-a9d2-2d5706c11dac
* More names changesallen1999-07-25
| | | | git-svn-id: http://svn.cactuscode.org/flesh/trunk@780 17b73243-c579-4c4c-a9d2-2d5706c11dac