aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 1821785cc0b4491510622146f40a3568ddc34402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Schedule definitions for thorn NaNChecker
# $Header$

if (*check_vars && check_every > 0)
{
  STORAGE: NaNmask NaNsFound

  schedule NaNChecker_ResetCounter at ANALYSIS before NaNChecker_NaNCheck
  {
    LANG:    C
    OPTIONS: level
  } "Reset the NaNChecker::NaNsFound counter"

  schedule NaNChecker_NaNCheck at ANALYSIS
  {
    LANG:    C
    OPTIONS: local
  } "Check for NaNs and count them in NaNChecker::NaNsFound"

  schedule NaNChecker_TakeAction at ANALYSIS after NaNChecker_NaNCheck
  {
    LANG:    C
    OPTIONS: level
  } "Output NaNChecker::NaNmask and take action according to NaNChecker::action_if_found"
}