Changes between Initial Version and Version 1 of Ticket #122
- Timestamp:
- 01/24/08 20:49:40 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #122
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #122 – Description
initial v1 1 There's a block of checks in globaldefs.h in which ANALYTICAL gets defined if any one of the ANA_ flags is defined. The tests in analytical.F are: 2 `# if defined VISC_GRID || defined DIFF_GRID || defined SPONGE 1 There's a block of checks in globaldefs.h in which '''ANALYTICAL''' gets defined if any one of the '''ANA_*''' flags is defined. The tests in analytical.F are: 2 {{{ 3 # if defined VISC_GRID || defined DIFF_GRID || defined SPONGE 3 4 # include <ana_hmixcoef.h> 4 # endif` 5 # endif 6 }}} 5 7 and 6 `# if defined NUDGING_COFF 8 {{{ 9 # if defined NUDGING_COFF 7 10 # include <ana_nudgcoef.h> 8 # endif` 9 These four flags should be added to the tests in globaldefs.h. 11 # endif 12 }}} 13 These four flags should be added to the tests in '''globaldefs.h'''.