aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/Requirements.cc
blob: d0299f38fbf017e4f377b1810ae184caa8a18c9a (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
#include <Requirements.hh>

#include <defs.hh>

#include <cctk.h>
#include <cctk_Parameters.h>
#include <cctk_Functions.h>
#include <cctk_Schedule.h>
#include <cctki_GHExtensions.h>
#include <cctki_Schedule.h>
#include <util_String.h>

#include <algorithm>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <string>
#include <vector>

using namespace std;



namespace Carpet {
  namespace Requirements {
    
    
    
    // Rules:
    //
    // 1. Everything that is required by a routine must be provided by
    //    another routine which is scheduled earlier.
    //
    // 2. Things can be provided only once, not multiple times.
    //    Except when they are also required.
    
    
    // taken from defs.cc and defs.hh
    // Vector output
    template<class T>
    ostream& output (ostream& os, const vector<T>& v) {
      os << "[";
      // Do not number the elements, as this would lead to a format that
      // cannot be read back in.
    //   int cnt=0;
      for (typename vector<T>::const_iterator ti=v.begin(); ti!=v.end(); ++ti) {
        if (ti!=v.begin()) os << ",";
    //     os << cnt++ << ":";
        os << *ti;
      }
      os << "]";
      return os;
    }

    template<class T>
    inline ostream& operator<< (ostream& os, const vector<T>& v) {
      return Carpet::Requirements::output(os,v);
    }


    // Represent scheduled functions and their dependencies
    
    struct clause_t {
      bool everywhere;          // all grid points (everywhere)
      bool interior;            // all interior points
      bool boundary;            // all boundary points, excluding
                                // ghostzones
      bool boundary_ghostzones; // all boundary ghost points
      bool timelevel0, timelevel1, timelevel2;
      bool all_timelevels;      // all time levels
      bool all_maps;            // all maps (i.e. level mode)
      bool all_reflevels;       // all refinement levels (i.e. global mode)
      vector<int> vars;
      clause_t():
        everywhere(false),
        interior(false), boundary(false), boundary_ghostzones(false),
        timelevel0(false), timelevel1(false), timelevel2(false),
        all_timelevels(false), all_maps(false), all_reflevels(false)
      {}
      void interpret_options(cFunctionData const* function_data);
      void parse_clause(char const* clause);
      int min_num_timelevels() const;
      bool active_on_timelevel(int tl) const;

      // Input/Output helpers
      void input (istream& is);
      void output (ostream& os) const;
    };
    
    void clause_t::interpret_options(cFunctionData const* const function_data)
    {
      if (function_data->meta or
          function_data->meta_early or
          function_data->meta_late or
          function_data->global or
          function_data->global_early or
          function_data->global_late)
      {
        assert(not all_reflevels);
        all_reflevels = true;
      }
      if (function_data->level) {
        assert(not all_maps);
        all_maps = true;
      }
      // Ignore singlemap and local options
      // Ignore loop_* options
    }
    
    void clause_t::parse_clause(char const* const clause1)
    {
      char* const clause = strdup(clause1);
      char* p = clause;
      
      // Remove trailing "(...)" modifier, if any
      p = strchr(p, '(');
      if (p) *p = '\0';
      int const gi = CCTK_GroupIndex(clause);
      if (gi >= 0) {
        // A group
        int const v0 = CCTK_FirstVarIndexI(gi); assert(v0 >= 0);
        int const nv = CCTK_NumVarsInGroupI(gi); assert(nv >= 0);
        for (int vi=v0; vi<v0+nv; ++vi) {
          vars.push_back(vi);
        }
      } else {
        // Not a group - should be a variable
        int const vi = CCTK_VarIndex(clause);
        if (vi < 0) {
            CCTK_VWarn(CCTK_WARN_ABORT, __LINE__, __FILE__, CCTK_THORNSTRING,
                       "could not obtain variable/group index for '%s' in clause '%s': %d",
                       clause, clause1, vi);
        }
        assert(vi >= 0);
        vars.push_back(vi);
      }
      
      // Parse modifiers
      // TODO: Use CarpetLib parser for this
      // TODO: add user friendly error messages
      // TODO: teach the flesh about commas within the READS/WRITES block 
      if (p) {
        ++p;
        for (;;) {
          size_t const len = strcspn(p, ";)");
          char const c = p[len];
          assert(c);
          p[len] = '\0';
          if (CCTK_EQUALS(p, "everywhere")) {
            assert(not everywhere and
                   not interior and not boundary and not boundary_ghostzones);
            everywhere = true;
          } else if (CCTK_EQUALS(p, "interior")) {
            assert(not everywhere and not interior);
            interior = true;
          } else if (CCTK_EQUALS(p, "boundary")) {
            assert(not everywhere and not boundary);
            boundary = true;
          } else if (CCTK_EQUALS(p, "boundary_ghostzones")) {
            assert(not everywhere and not boundary_ghostzones);
            boundary_ghostzones = true;
          } else if (CCTK_EQUALS(p, "timelevel0")) {
            assert(not timelevel0 and not all_timelevels);
            timelevel0 = true;
          } else if (CCTK_EQUALS(p, "timelevel1")) {
            assert(not timelevel1 and not all_timelevels);
            timelevel1 = true;
          } else if (CCTK_EQUALS(p, "timelevel2")) {
            assert(not timelevel2 and not all_timelevels);
            timelevel2 = true;
          } else if (CCTK_EQUALS(p, "all_timelevels")) {
            // TODO: look at schedule group instead
            assert(not timelevel0 and not timelevel1 and not timelevel2 and
                   not all_timelevels);
            all_timelevels = true;
          } else {
            CCTK_VWarn(CCTK_WARN_ABORT, __LINE__, __FILE__, CCTK_THORNSTRING,
                       "Unknown modifier '%s' in clause '%s'", p, clause1);
          }
          if (c == ')') break;
          assert(c==';');
          p += len+1;
        }
      }
      
      free(clause);
    }
    
    int clause_t::min_num_timelevels() const
    {
      if (timelevel2) return 3;
      if (timelevel1) return 2;
      return 1;
    }
    
    bool clause_t::active_on_timelevel(int const tl) const
    {
      if (all_timelevels) return true;
      if (timelevel0 and tl==0) return true;
      if (timelevel1 and tl==1) return true;
      if (timelevel2 and tl==2) return true;
      bool const no_timelevel_clause =
        not timelevel0 and not timelevel1 and not timelevel2;
      if (tl==0 and no_timelevel_clause) return true;
      return false;
    }
    
    inline ostream& operator<< (ostream& os, const clause_t& a) {
      a.output(os);
      return os;
    }

    void clause_t::output(ostream& os) const
    {
      char* const groupname = CCTK_GroupNameFromVarI(vars.at(0));
      os << groupname;
      free(groupname);
      os << "{";
      for (vector<int>::const_iterator ivi = vars.begin();
           ivi != vars.end();
           ++ivi)
      {
        if (ivi != vars.begin())
          os << ",";
        char* const fullname = CCTK_FullName(*ivi);
        os << fullname;
        free(fullname);
      }
      os << "}(";
      if(everywhere) os << "everywhere;";
      if(interior) os << "interior;";
      if(boundary) os << "boundary;";
      if(boundary_ghostzones) os << "boundary_ghostzones;";
      if(timelevel0) os << "timelevel0;";
      if(timelevel1) os << "timelevel1;";
      if(timelevel2) os << "timelevel2;";
      if(all_timelevels) os << "all_timelevels;";
      if(all_maps) os << "all_maps;";
      if(all_reflevels) os << "all_reflevels;";
      os << ")";
    }
    
    
    
    struct clauses_t {
      vector<clause_t> reads, writes;
      clauses_t() {}
      void setup(cFunctionData const* function_data);

      // Input/Output helpers
      void input (istream& is);
      void output (ostream& os) const;
    };
    
    void clauses_t::setup(cFunctionData const* const function_data)
    {
      clause_t prototype;
      prototype.interpret_options(function_data);
      reads.reserve(function_data->n_ReadsClauses);
      for (int n=0; n<function_data->n_ReadsClauses; ++n) {
        clause_t clause(prototype);
        clause.parse_clause(function_data->ReadsClauses[n]);
        reads.push_back(clause);
      }
      writes.reserve(function_data->n_WritesClauses);
      for (int n=0; n<function_data->n_WritesClauses; ++n) {
        clause_t clause(prototype);
        clause.parse_clause(function_data->WritesClauses[n]);
        writes.push_back(clause);
      }
    }

    inline ostream& operator<< (ostream& os, const clauses_t& a) {
      a.output(os);
      return os;
    }

    void clauses_t::output(ostream& os) const
    {
      os << "reads = " << reads << ", writes = " << writes;
    }
    
    
    
    class all_clauses_t {
      // TODO: Represent I/O as well?
      typedef std::map<cFunctionData const*, clauses_t const*> clauses_map_t;
      clauses_map_t clauses_map;
      // Singleton
      all_clauses_t(all_clauses_t const&);
      all_clauses_t& operator=(all_clauses_t const&);
    public:
      all_clauses_t() {}
      clauses_t const& get_clauses(cFunctionData const* function_data);
      void remove_clauses(cFunctionData const* function_data);

      // Input/Output helpers
      void input (istream& is);
      void output (ostream& os) const;
    };
    
    clauses_t const& all_clauses_t::
    get_clauses(cFunctionData const* const function_data)
    {
      clauses_map_t::const_iterator const iclauses =
        clauses_map.find(function_data);
      if (iclauses != clauses_map.end()) return *iclauses->second;
      clauses_t* const clauses = new clauses_t;
      clauses->setup(function_data);
      pair<clauses_map_t::const_iterator, bool> const ret =
        clauses_map.insert(clauses_map_t::value_type(function_data, clauses));
      assert(ret.second);
      return *ret.first->second;
    }
    
    void all_clauses_t::
    remove_clauses(cFunctionData const* const function_data)
    {
      clauses_map_t::iterator const iclauses =
        clauses_map.find(function_data);
      if (iclauses != clauses_map.end()) {
        clauses_map.erase(iclauses);
      }
      return;
    }
    
    inline ostream& operator<< (ostream& os, const all_clauses_t& a) {
      a.output(os);
      return os;
    }
        
    void all_clauses_t::output(ostream& os) const
    {
      os << "all_clauses: {" << std::endl;
      for (std::map<cFunctionData const*, clauses_t const*>::const_iterator ti=clauses_map.begin();
           ti!=clauses_map.end();
           ++ti)
      {
        if (ti!=clauses_map.begin()) os << ",";
        os << ti->first->thorn << "::" 
           << ti->first->routine << " in " 
           << ti->first->where << ": " << *ti->second << std::endl;
      }
      os << "}";
    }
    
    all_clauses_t all_clauses;

    // ignore requirements in these variables. Used for internally updated
    // variables. Putting a variable in this set asserts that it is always
    // valid.
    std::set<int> ignore_these_varindices;
    
    
    // Keep track of which time levels contain good data; modify this
    // while time level cycling; routines should specify how many time
    // levels they require/provide
    
    bool there_was_an_error = false;
    
    struct gridpoint_t {
      bool interior, boundary, ghostzones, boundary_ghostzones;
      gridpoint_t():
        interior(false), boundary(false), ghostzones(false),
        boundary_ghostzones(false)
      {}
      gridpoint_t(clause_t const& clause):
        interior(clause.everywhere or clause.interior),
        boundary(clause.everywhere or clause.boundary),
        ghostzones(clause.everywhere),
        boundary_ghostzones(clause.everywhere or clause.boundary_ghostzones)
      {}
      void check_state(clause_t const& clause,
                       cFunctionData const* function_data,
                       int vi, int rl, int m, int tl) const;
      void report_error(cFunctionData const* function_data,
                        int vi, int rl, int m, int tl,
                        char const* what, char const* where) const;
      void update_state(clause_t const& clause);

      // Input/Output helpers
      void input (istream& is);
      void output (ostream& os) const;
    };
    
    inline ostream& operator<< (ostream& os, const gridpoint_t& a) {
      a.output(os);
      return os;
    }

    void gridpoint_t::check_state(clause_t const& clause,
                                  cFunctionData const* const function_data,
                                  int const vi,
                                  int const rl, int const m, int const tl)
      const
    {
      if (not interior) {
        if (clause.everywhere or clause.interior) {
          report_error(function_data, vi, rl, m, tl,
                       "calling function", "interior");
        }
      }
      if (not boundary) {
        if (clause.everywhere or clause.boundary) {
          report_error(function_data, vi, rl, m, tl,
                       "calling function", "boundary");
        }
      }
      if (not ghostzones) {
        if (clause.everywhere) {
          report_error(function_data, vi, rl, m, tl,
                       "calling function", "ghostzones");
        }
      }
      if (not boundary_ghostzones) {
        if (clause.everywhere or clause.boundary_ghostzones) {
          report_error(function_data, vi, rl, m, tl,
                       "calling", "boundary-ghostzones");
        }
      }
    }
    
    void gridpoint_t::report_error(cFunctionData const* const function_data,
                                   int const vi,
                                   int const rl, int const m, int const tl,
                                   char const* const what,
                                   char const* const where) const
    {
      char* const fullname = CCTK_FullName(vi);
      ostringstream state;
      state << "current state: " << *this << std::endl;
      if (function_data) {
        // The error is related to a scheduled function
        CCTK_VWarn(CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Schedule READS clause not satisfied: "
                   "Function %s::%s in %s: "
                   "Variable %s reflevel=%d map=%d timelevel=%d: "
                   "%s not valid for %s. %s",
                   function_data->thorn, function_data->routine,
                   function_data->where,
                   fullname, rl, m, tl,
                   where, what, state.str().c_str());
      } else {
        // The error is not related to a scheduled function
        CCTK_VWarn(CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Schedule READS clause not satisfied: "
                   "Variable %s reflevel=%d map=%d timelevel=%d: "
                   "%s not valid for %s. %s",
                   fullname, rl, m, tl,
                   where, what, state.str().c_str());
      }
      free(fullname);
      there_was_an_error = true;
    }
    
    void gridpoint_t::update_state(clause_t const& clause)
    {
      if (clause.everywhere or clause.interior) {
        interior = true;
      }
      if (clause.everywhere or clause.boundary) {
        boundary = true;
      }
      if (clause.everywhere) {
        ghostzones = true;
      }
      if (clause.everywhere or clause.boundary_ghostzones) {
        boundary_ghostzones = true;
      }
    }
    
    void gridpoint_t::output(ostream& os) const
    {
      os << "(";
      if(interior) os << "interior;";
      if(boundary) os << "boundary;";
      if(ghostzones) os << "ghostzones;";
      if(boundary_ghostzones) os << "boundary_ghostzones;";
      os << ")";
    }
    
    
    
    class all_state_t {
      typedef vector<gridpoint_t> timelevels_t;
      typedef vector<timelevels_t> maps_t;
      typedef vector<maps_t> reflevels_t;
      typedef vector<reflevels_t> variables_t;
      variables_t vars;
      variables_t old_vars;     // for regridding
    public:
      void setup(int maps);
      void change_storage(vector<int> const& groups,
                          vector<int> const& timelevels,
                          int reflevel);
      void regrid(int reflevels);
      void recompose(int reflevel, valid::valid_t where);
      void regrid_free();
      void cycle(int reflevel);
      void before_routine(cFunctionData const* function_data,
                          int reflevel, int map, int timelevel) const;
      void after_routine(cFunctionData const* function_data,
                         int reflevel, int map, int timelevel);
      void sync(cFunctionData const* function_data,
                vector<int> const& groups, int reflevel, int timelevel);
      void restrict1(vector<int> const& groups, int reflevel);

      // Input/Output helpers
      void input (istream& is);
      void output (ostream& os) const;
    };
    
    all_state_t all_state;
    
    
    static void add_ignored_variable(int id, const char * opstring, void * callback_arg)
    {
      std::set<int>& ignore_these_variables = 
          *static_cast<std::set<int>*>(callback_arg);

      ignore_these_variables.insert(id);
    }
    
    void Setup(int const maps)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Setup maps=%d", maps);
        }
        all_state.setup(maps);
        CCTK_TraverseString(ignore_these_variables, add_ignored_variable,
                            (void*)&ignore_these_varindices,
                            CCTK_GROUP_OR_VAR);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::setup(int const maps)
    {
      DECLARE_CCTK_PARAMETERS;
      assert(vars.empty());
      vars.resize(CCTK_NumVars());
      for (variables_t::iterator
             ivar = vars.begin(); ivar != vars.end(); ++ivar)
      {
        reflevels_t& rls = *ivar;
        int const vi = &*ivar - &*vars.begin();
        assert(rls.empty());
        // Allocate one refinement level initially
        int const nrls = 1;
        rls.resize(nrls);
        for (reflevels_t::iterator irl = rls.begin(); irl != rls.end(); ++irl) {
          maps_t& ms = *irl;
          assert(ms.empty());
          int const group_type = CCTK_GroupTypeFromVarI(vi);
          int const nms = group_type==CCTK_GF ? maps : 1;
          if (requirements_verbose) {
            char* const fullname = CCTK_FullName(vi);
            int const rl = &*irl - &*rls.begin();
            CCTK_VInfo(CCTK_THORNSTRING,
                       "Requirements: Setting up %d maps for variable %s(rl=%d)",
                       nms, fullname, rl);
            free(fullname);
          }
          ms.resize(nms);
          for (maps_t::iterator im = ms.begin(); im != ms.end(); ++im) {
            timelevels_t& tls = *im;
            assert(tls.empty());
            // Not allocating any time levels here
          }
        }
      }
    }
    
    
    
    void ChangeStorage(vector<int> const& groups,
                       vector<int> const& timelevels,
                       int const reflevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: ChangeStorage reflevel=%d", reflevel);
        }
        all_state.change_storage(groups, timelevels, reflevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::change_storage(vector<int> const& groups,
                                     vector<int> const& timelevels,
                                     int const reflevel)
    {
      DECLARE_CCTK_PARAMETERS;
      assert(groups.size() == timelevels.size());
      for (vector<int>::const_iterator
             igi = groups.begin(), itl = timelevels.begin();
           igi != groups.end(); ++igi, ++itl)
      {
        int const gi = *igi;
        int const tl = *itl;
        bool const is_array = CCTK_GroupTypeI(gi) != CCTK_GF;
        int const v0 = CCTK_FirstVarIndexI(gi);
        int const nv = CCTK_NumVarsInGroupI(gi);
        for (int vi=v0; vi<v0+nv; ++vi) {
          reflevels_t& rls = vars.AT(vi);
          int const reflevels = int(rls.size());
          bool const all_rl = reflevel==-1;
          int const min_rl = is_array ? 0 : all_rl ? 0 : reflevel;
          int const max_rl = is_array ? 1 : all_rl ? reflevels : reflevel+1;
          assert(min_rl>=0 and max_rl<=reflevels);
          for (int rl=min_rl; rl<max_rl; ++rl) {
            maps_t& ms = rls.AT(rl);
            for (maps_t::iterator im = ms.begin(); im != ms.end(); ++im) {
              timelevels_t& tls = *im;
              int const ntls = int(tls.size());
              if (tl < ntls) {
                // Free some storage
                if (requirements_verbose) {
                  char* const fullname = CCTK_FullName(vi);
                  int const m = &*im - &*ms.begin();
                  CCTK_VInfo(CCTK_THORNSTRING,
                             "Requirements: Decreasing storage to %d time levels for variable %s(rl=%d,m=%d)",
                             tl, fullname, rl, m);
                  free(fullname);
                }
                tls.resize(tl);
              } else if (tl > ntls) {
                // Allocate new storage
                if (requirements_verbose) {
                  char* const fullname = CCTK_FullName(vi);
                  int const m = &*im - &*ms.begin();
                  CCTK_VInfo(CCTK_THORNSTRING,
                             "Requirements: Increasing storage to %d time levels for variable %s(rl=%d,m=%d)",
                             tl, fullname, rl, m);
                  free(fullname);
                }
                // The default constructor for gridpoint_t sets all
                // data to "invalid"
                tls.resize(tl);
              }
            }
          }
        }
      }
    }
    
    
    
    void Regrid(int const reflevels)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Regrid reflevels=%d", reflevels);
        }
        all_state.regrid(reflevels);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::regrid(int const reflevels)
    {
      DECLARE_CCTK_PARAMETERS;
      assert(old_vars.empty());
      old_vars.resize(vars.size());
      
      int const ng = CCTK_NumGroups();
      for (int gi=0; gi<ng; ++gi) {
        int const group_type = CCTK_GroupTypeI(gi);
        switch (group_type) {
        case CCTK_SCALAR:
        case CCTK_ARRAY:
          // Grid arrays remain unchanged
          break;
        case CCTK_GF: {
          // Only grid functions are regridded
          int const v0 = CCTK_FirstVarIndexI(gi);
          int const nv = CCTK_NumVarsInGroupI(gi);
          for (int vi=v0; vi<v0+nv; ++vi) {
            reflevels_t& rls = vars.AT(vi);
            reflevels_t& old_rls = old_vars.AT(vi);
            assert(old_rls.empty());
            swap(rls, old_rls);
            // Delete (unused) old refinement levels
            int const old_reflevels = int(old_rls.size());
            for (int rl=reflevels; rl<old_reflevels; ++rl) {
              maps_t& old_ms = old_rls.AT(rl);
              if (requirements_verbose) {
                char* const fullname = CCTK_FullName(vi);
                CCTK_VInfo(CCTK_THORNSTRING,
                           "Requirements: Deleting unused refinement level %d of variable %s",
                           rl, fullname);
                free(fullname);
              }
              old_ms.clear();
            }
            // Allocate new refinement levels
            rls.resize(reflevels);
            maps_t const& old_ms = old_rls.AT(0);
            int const old_maps = int(old_ms.size());
            int const maps = old_maps;
            for (int rl=old_reflevels; rl<reflevels; ++rl) {
              maps_t& ms = rls.AT(rl);
              if (requirements_verbose) {
                char* const fullname = CCTK_FullName(vi);
                CCTK_VInfo(CCTK_THORNSTRING,
                           "Requirements: Allocating new refinement level %d for variable %s",
                           rl, fullname);
                free(fullname);
              }
              ms.resize(maps);
              for (maps_t::iterator im = ms.begin(); im != ms.end(); ++im) {
                int const crl = 0;
                int const m = &*im - &*ms.begin();
                timelevels_t& tls = *im;
                assert(tls.empty());
                int const ntls = int(old_rls.AT(crl).AT(m).size());
                // Allocate undefined timelevels
                tls.resize(ntls);
              }
            }
          }
          break;
        }
        default:
          assert(0);
        }
      }
    }
    
    
    
    void Recompose(int const reflevel, valid::valid_t const where)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Recompose reflevel=%d where=%s",
                     reflevel,
                     where == valid::nowhere    ? "nowhere"    :
                     where == valid::interior   ? "interior"   :
                     where == valid::everywhere ? "everywhere" :
                     NULL);
        }
        all_state.recompose(reflevel, where);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::recompose(int const reflevel, valid::valid_t const where)
    {
      DECLARE_CCTK_PARAMETERS;
      int const ng = CCTK_NumGroups();
      for (int gi=0; gi<ng; ++gi) {
        int const group_type = CCTK_GroupTypeI(gi);
        switch (group_type) {
        case CCTK_SCALAR:
        case CCTK_ARRAY:
          // Grid arrays remain unchanged
          break;
        case CCTK_GF: {
          // Only grid functions are regridded
          int const v0 = CCTK_FirstVarIndexI(gi);
          int const nv = CCTK_NumVarsInGroupI(gi);
          for (int vi=v0; vi<v0+nv; ++vi) {
            reflevels_t& rls = vars.AT(vi);
            maps_t& ms = rls.AT(reflevel);
            reflevels_t& old_rls = old_vars.AT(vi);
            int const old_reflevels = int(old_rls.size());
            if (reflevel < old_reflevels) {
              // This refinement level is regridded
              maps_t& old_ms = old_rls.AT(reflevel);
              assert(not old_ms.empty());
              assert(ms.empty());
              swap(ms, old_ms);
              for (maps_t::iterator
                     im = ms.begin(), old_im = old_ms.begin();
                   im != ms.end(); ++im, ++old_im)
              {
                timelevels_t& tls = *im;
                if (requirements_verbose) {
                  char* const fullname = CCTK_FullName(vi);
                  int const m = &*im - &*ms.begin();
                  CCTK_VInfo(CCTK_THORNSTRING,
                             "Requirements: Recomposing variable %s(rl=%d,m=%d)",
                             fullname, reflevel, m);
                  free(fullname);
                }
                for (timelevels_t::iterator
                       itl = tls.begin(); itl != tls.end(); ++itl)
                {
                  gridpoint_t& gp = *itl;
                  switch (where) {
                  case valid::nowhere:
                    gp.interior = false;
                    // fall through
                  case valid::interior:
                    // Recomposing sets only the interior
                    gp.boundary = false;
                    gp.ghostzones = false;
                    gp.boundary_ghostzones = false;
                    // fall through
                  case valid::everywhere:
                    // do nothing
                    break;
                  default:
                    assert(0);
                  }
                }
              }
              assert(old_ms.empty());
            } else {
              // This refinement level is new
              assert(where == valid::nowhere);
            }
          }
          break;
        }
        default:
          assert(0);
        }
      }
    }
    
    
    
    void RegridFree()
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: RegridFree");
        }
        all_state.regrid_free();
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::regrid_free()
    {
      // Ensure all old maps have been recomposed
      for (variables_t::const_iterator
             ivar = old_vars.begin(); ivar != old_vars.end(); ++ivar)
      {
        reflevels_t const& old_rls = *ivar;
        for (reflevels_t::const_iterator
               irl = old_rls.begin(); irl != old_rls.end(); ++irl)
        {
          maps_t const& old_ms = *irl;
          assert(old_ms.empty());
        }
      }
      old_vars.clear();
    }
    
    
    
    void Cycle(int const reflevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Cycle reflevel=%d", reflevel);
        }
        all_state.cycle(reflevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::cycle(int const reflevel)
    {
      int const ng = CCTK_NumGroups();
      for (int gi=0; gi<ng; ++gi) {
        int const group_type = CCTK_GroupTypeI(gi);
        bool do_cycle;
        switch (group_type) {
        case CCTK_SCALAR:
        case CCTK_ARRAY:
          // Grid arrays are cycled in global mode
          do_cycle = reflevel == -1;
          break;
        case CCTK_GF:
          // Grid functions are cycled in level mode
          do_cycle = reflevel >= 0;
          break;
        default:
          assert(0);
        }
        if (do_cycle) {
          // Translate global mode to refinement level 0
          int const rl = reflevel >= 0 ? reflevel : 0;
          int const v0 = CCTK_FirstVarIndexI(gi);
          int const nv = CCTK_NumVarsInGroupI(gi);
          for (int vi=v0; vi<v0+nv; ++vi) {
            reflevels_t& rls = vars.AT(vi);
            maps_t& ms = rls.AT(rl);
            for (maps_t::iterator im = ms.begin(); im != ms.end(); ++im) {
              timelevels_t& tls = *im;
              int const ntl = int(tls.size());
              if (ntl >= 1) {
                // Only cycle variables with sufficient storage
                for (int tl=ntl-1; tl>0; --tl) {
                  tls.AT(tl) = tls.AT(tl-1);
                }
                // The new time level is uninitialised
                // TODO: keep it valid to save time, since MoL will
                // copy it anyway?
                tls.AT(0) = gridpoint_t();
              }
            }
          }
        }
      }
    }
    
    
     
    void BeforeRoutine(cFunctionData const* const function_data,
                       int const reflevel, int const map, int const timelevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        all_state.before_routine(function_data, reflevel, map, timelevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    extern "C" 
    void Carpet_Requirements_CheckReads(CCTK_POINTER_TO_CONST const cctkGH_,
                                        CCTK_INT const nvars,
                                        CCTK_INT const* const varidx,
                                        char const* const clause)
    {
      cGH const* const cctkGH = static_cast<cGH const*>(cctkGH_);
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        // TODO: come up with a scheme to avoid constructing and destroying clauses
        cFunctionData const* const function_data = 
            CCTK_ScheduleQueryCurrentFunction(cctkGH);
        int const reflevel = GetRefinementLevel(cctkGH);
        int const map = GetMap(cctkGH);
        int const timelevel = GetTimeLevel(cctkGH);
        // TODO: design an interface to all_state.before_routine that operates
        //       on indices and claues directly
        for (int v = 0; v<nvars; ++v) { 
          cFunctionData temp_function_data = *function_data;
          char const * const fullname = CCTK_FullName(varidx[v]);
          char * reads;
          const int len_written = Util_asprintf(&reads, "%s(%s)", fullname, clause);
          assert(len_written > 0);
          temp_function_data.n_WritesClauses = 0;
          temp_function_data.WritesClauses = NULL;
          temp_function_data.n_ReadsClauses = 1;
          temp_function_data.ReadsClauses = (const char**)&reads;
          all_clauses.get_clauses(&temp_function_data);
          BeforeRoutine(&temp_function_data, reflevel, map, timelevel);
          all_clauses.remove_clauses(&temp_function_data);
          free((void*)fullname);
          free(reads);
        }
      }
    }
    
    void all_state_t::before_routine(cFunctionData const* const function_data,
                                     int const reflevel, int const map,
                                     int const timelevel)
      const
    {
      // Loop over all clauses
      clauses_t const& clauses = all_clauses.get_clauses(function_data);
      for (vector<clause_t>::const_iterator iclause = clauses.reads.begin();
           iclause != clauses.reads.end();
           ++iclause)
      {
        clause_t const& clause = *iclause;
        for (vector<int>::const_iterator ivar = clause.vars.begin();
             ivar != clause.vars.end();
             ++ivar)
        {
          int const vi = *ivar;

          if (ignore_these_varindices.count(vi))
              continue;
          
          // Loop over all (refinement levels, maps, time levels)
          reflevels_t const& rls = vars.AT(vi);
          int const reflevels = int(rls.size());
          int min_rl, max_rl;
          if (clause.all_reflevels or reflevel==-1) {
            min_rl = 0; max_rl = reflevels;
          } else {
            min_rl = reflevel; max_rl = min_rl+1;
          }
          for (int rl=min_rl; rl<max_rl; ++rl) {
            
            maps_t const& ms = rls.AT(rl);
            int const maps = int(ms.size());
            int min_m, max_m;
            if (clause.all_maps or map==-1) {
              min_m = 0; max_m = maps;
            } else {
              min_m = map; max_m = min_m+1;
            }
            for (int m=min_m; m<max_m; ++m) {
              
              timelevels_t const& tls = ms.AT(m);
              int const timelevels = int(tls.size());
              assert(timelevel != -1);
              assert(timelevels >= clause.min_num_timelevels());
              // TODO: properly handle timelevels the way enter_local_mode() does
              const int mintl = timelevel == 0 || timelevels == 1 ? 0 : timelevel;
              const int maxtl = timelevel == 0 || timelevels == 1 ? timelevels-1 : timelevel;
              const int tl_of = timelevels > 1 ? timelevel : 0;
              for (int tl=mintl; tl<=maxtl; ++tl) {
                if (timelevel==-1 or clause.active_on_timelevel(tl-tl_of)) {
                  gridpoint_t const& gp = tls.AT(tl);
                  gp.check_state(clause, function_data, vi, rl, m, tl);
                }
              }
              
            }
          }
          
        }
      }
    }
    
    
    
    void AfterRoutine(cFunctionData const* const function_data,
                      int const reflevel, int const map, int const timelevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        all_state.after_routine(function_data, reflevel, map, timelevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }

    extern "C" 
    void Carpet_Requirements_NotifyWrites(CCTK_POINTER_TO_CONST const cctkGH_,
                                          CCTK_INT const nvars,
                                          CCTK_INT const* const varidx,
                                          char const* const clause)
    {
      cGH const* const cctkGH = static_cast<cGH const*>(cctkGH_);
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        // TODO: come up with a scheme to avoid constructing and destroying clauses
        cFunctionData const* const function_data = 
            CCTK_ScheduleQueryCurrentFunction(cctkGH);
        int const reflevel = GetRefinementLevel(cctkGH);
        int const map = GetMap(cctkGH);
        int const timelevel = GetTimeLevel(cctkGH);
        // TODO: design an interface to all_state.before_routine that operates
        //       on indices and claues directly
        for (int v = 0; v<nvars; ++v) { 
          cFunctionData temp_function_data = *function_data;
          char const * const fullname = CCTK_FullName(varidx[v]);
          char * writes;
          const int len_written = Util_asprintf(&writes, "%s(%s)", fullname, clause);
          assert(len_written > 0);
          temp_function_data.n_WritesClauses = 1;
          temp_function_data.WritesClauses = (const char**)&writes;
          temp_function_data.n_ReadsClauses = 0;
          temp_function_data.ReadsClauses = NULL;
          all_clauses.get_clauses(&temp_function_data);
          AfterRoutine(&temp_function_data, reflevel, map, timelevel);
          all_clauses.remove_clauses(&temp_function_data);
          free((void*)fullname);
          free(writes);
        }
      }
    }
    
    void all_state_t::after_routine(cFunctionData const* const function_data,
                                    int const reflevel, int const map,
                                    int const timelevel)
    {
      // Loop over all clauses
      clauses_t const& clauses = all_clauses.get_clauses(function_data);
      for (vector<clause_t>::const_iterator iclause = clauses.writes.begin();
           iclause != clauses.writes.end();
           ++iclause)
      {
        clause_t const& clause = *iclause;
        for (vector<int>::const_iterator ivar = clause.vars.begin();
             ivar != clause.vars.end();
             ++ivar)
        {
          int const vi = *ivar;
          
          // Loop over all (refinement levels, maps, time levels)
          reflevels_t& rls = vars.AT(vi);
          int const reflevels = int(rls.size());
          int min_rl, max_rl;
          if (clause.all_reflevels or reflevel==-1) {
            min_rl = 0; max_rl = reflevels;
          } else {
            min_rl = reflevel; max_rl = min_rl+1;
          }
          for (int rl=min_rl; rl<max_rl; ++rl) {
            
            maps_t& ms = rls.AT(rl);
            int const maps = int(ms.size());
            int min_m, max_m;
            if (clause.all_maps or map==-1) {
              min_m = 0; max_m = maps;
            } else {
              min_m = map; max_m = min_m+1;
            }
            for (int m=min_m; m<max_m; ++m) {
              
              timelevels_t& tls = ms.AT(m);
              int const timelevels = int(tls.size());
              assert(timelevel != -1);
              assert(timelevels >= clause.min_num_timelevels());
              // TODO: properly handle timelevels the way enter_local_mode() does
              const int mintl = timelevel == 0 || timelevels == 1 ? 0 : timelevel;
              const int maxtl = timelevel == 0 || timelevels == 1 ? timelevels-1 : timelevel;
              const int tl_of = timelevels > 1 ? timelevel : 0;
              for (int tl=mintl; tl<=maxtl; ++tl) {
                if (timelevel==-1 or clause.active_on_timelevel(tl-tl_of)) {
                  gridpoint_t& gp = tls.AT(tl);
                  gp.update_state(clause);
                }
              }
              
            }
          }
          
        }
      }
    }
    
    
    
    void Sync(cFunctionData const* const function_data,
              vector<int> const& groups,
              int const reflevel, int const timelevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Sync reflevel=%d timelevel=%d",
                     reflevel, timelevel);
        }
        all_state.sync(function_data, groups, reflevel, timelevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::sync(cFunctionData const* const function_data,
                           vector<int> const& groups,
                           int const reflevel, int const timelevel)
    {
      // Loop over all variables
      for (vector<int>::const_iterator
             igi = groups.begin(); igi != groups.end(); ++igi)
      {
        int const gi = *igi;
        bool do_sync;
        int const group_type = CCTK_GroupTypeI(gi);
        switch (group_type) {
        case CCTK_SCALAR:
        case CCTK_ARRAY:
          // Grid arrays are synced in global mode
          do_sync = reflevel == -1;
          break;
        case CCTK_GF:
          // Grid functions are synced in level mode
          do_sync = reflevel >= 0;
          break;
        default:
          assert(0);
        }
        if (do_sync) {
          // Translate global mode to refinement level 0
          int const rl = reflevel >= 0 ? reflevel : 0;
          int const v0 = CCTK_FirstVarIndexI(gi);
          int const nv = CCTK_NumVarsInGroupI(gi);
          for (int vi=v0; vi<v0+nv; ++vi) {
            if (ignore_these_varindices.count(vi))
              continue;
          
            reflevels_t& rls = vars.AT(vi);
            maps_t& ms = rls.AT(rl);
            int const maps = int(ms.size());
            for (int m=0; m<maps; ++m) {
              timelevels_t& tls = ms.AT(m);
              int const tl = timelevel;
              gridpoint_t& gp = tls.AT(tl);
              
              // Synchronising requires a valid interior
              if (not gp.interior) {
                gp.report_error
                  (function_data, vi, rl, m, tl, "synchronising", "interior");
              }
              
              // Synchronising (i.e. prolongating) requires valid data
              // on all time levels of the same map of the next
              // coarser refinement level
              if (rl > 0) {
                int const crl = rl-1;
                maps_t const& cms = rls.AT(crl);
                timelevels_t const& ctls = cms.AT(m);
                // TODO: use prolongation_order_time instead?
                int const ctimelevels = int(ctls.size());
                for (int ctl=0; ctl<ctimelevels; ++ctl) {
                  gridpoint_t const& cgp = ctls.AT(ctl);
                  if (not (cgp.interior and cgp.boundary and cgp.ghostzones and
                           cgp.boundary_ghostzones))
                  {
                    cgp.report_error
                      (function_data, vi, crl, m, ctl,
                       "prolongating", "everywhere");
                  }
                }
              }
              
              // Synchronising sets all ghost zones, and sets boundary
              // ghost zones if boundary zones are set
              gp.ghostzones = true;
              gp.boundary_ghostzones = gp.boundary;
            }
          }
        }
      }
    }
    
    
    
    void Restrict(vector<int> const& groups, int const reflevel)
    {
      DECLARE_CCTK_PARAMETERS;
      if (check_requirements) {
        if (requirements_verbose) {
          CCTK_VInfo(CCTK_THORNSTRING,
                     "Requirements: Restrict reflevel=%d",
                     reflevel);
        }
        all_state.restrict1(groups, reflevel);
      }
      if (requirement_inconsistencies_are_fatal and there_was_an_error) {
        CCTK_WARN(CCTK_WARN_ABORT,
                  "Aborting because schedule clauses were not satisfied");
      }
    }
    
    void all_state_t::restrict1(vector<int> const& groups, int const reflevel)
    {
      // Loop over all variables
      for (vector<int>::const_iterator
             igi = groups.begin(); igi != groups.end(); ++igi)
      {
        int const gi = *igi;
        bool do_restrict;
        int const group_type = CCTK_GroupTypeI(gi);
        switch (group_type) {
        case CCTK_SCALAR:
        case CCTK_ARRAY:
          // Grid arrays are synced in global mode
          do_restrict = reflevel == -1;
          break;
        case CCTK_GF:
          // Grid functions are synced in level mode
          do_restrict = reflevel >= 0;
          break;
        default:
          assert(0);
        }
        if (do_restrict) {
          // Translate global mode to refinement level 0
          int const rl = reflevel >= 0 ? reflevel : 0;
          int const v0 = CCTK_FirstVarIndexI(gi);
          int const nv = CCTK_NumVarsInGroupI(gi);
          for (int vi=v0; vi<v0+nv; ++vi) {
            if (ignore_these_varindices.count(vi))
              continue;

            reflevels_t& rls = vars.AT(vi);
            int const reflevels = int(rls.size());
            maps_t& ms = rls.AT(rl);
            int const maps = int(ms.size());
            for (int m=0; m<maps; ++m) {
              timelevels_t& tls = ms.AT(m);
              int const tl = 0;
              gridpoint_t& gp = tls.AT(tl);
              
              // Restricting requires a valid interior (otherwise we
              // cannot be sure that all of the interior is valid
              // afterwards)
              if (not gp.interior) {
                gp.report_error
                  (NULL, vi, rl, m, tl, "restricting", "interior");
              }
              
              // Restricting requires valid data on the current time
              // level of the same map of the next finer refinement
              // level
              if (rl < reflevels-1) {
                int const frl = rl+1;
                maps_t const& fms = rls.AT(frl);
                timelevels_t const& ftls = fms.AT(m);
                int const ftl = 0;
                gridpoint_t const& fgp = ftls.AT(ftl);
                if (not (fgp.interior and fgp.boundary and fgp.ghostzones and
                         fgp.boundary_ghostzones))
                {
                  fgp.report_error
                    (NULL, vi, frl, m, ftl, "restricting", "everywhere");
                }
              }
              
              // Restricting fills (part of) the interior, but leaves
              // ghost zones and boundary zones undefined
              gp.boundary = false;
              gp.ghostzones = false;
              gp.boundary_ghostzones = false;
            }
          }
        }
      }
    }
    
    inline ostream& operator<< (ostream& os, const all_state_t& a) {
      a.output(os);
      return os;
    }

    void all_state_t::output(ostream& os) const
    {
      os << "all_state:" << std::endl;
      os << "vars:" << std::endl;
      os << vars << std::endl;
      os << "old_vars:" << std::endl;
      os << old_vars << std::endl;
    }
    
    // scheduled routines to handle boundary and symmetry conditions
    extern "C"
    void CarpetCheckReadsBeforeBoundary(CCTK_ARGUMENTS)
    {
      DECLARE_CCTK_ARGUMENTS;
      int num_vars, err;
      vector<CCTK_INT> vars, faces, widths, tables;

      num_vars = Boundary_SelectedGVs(cctkGH, 0, NULL, NULL, NULL, NULL, NULL);
      if (num_vars < 0) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Error retrieving number of selected GVs: %d", num_vars);
      }
      vars.resize(num_vars);
      faces.resize(num_vars);
      widths.resize(num_vars);
      tables.resize(num_vars);

      /* get selected vars for all bc */
      err = Boundary_SelectedGVs(cctkGH, num_vars, &vars[0], &faces[0], &widths[0], &tables[0],
                                      NULL);
      if (err<0) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Error in Boundary_SelectedGVs for all boundary conditions");
      } else if (err != num_vars) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Boundary_SelectedGVs returned %d selected variables for "
                   "all boundary conditions, but %d expected\n", err,
                   num_vars);
      }

      Requirements_CheckReads(cctkGH, num_vars, &vars[0], "interior");
    }

    extern "C"
    void CarpetNotifyWritesAfterBoundary(CCTK_ARGUMENTS)
    {
      DECLARE_CCTK_ARGUMENTS;
      int num_vars, err;
      vector<CCTK_INT> vars, faces, widths, tables;

      num_vars = Boundary_SelectedGVs(cctkGH, 0, NULL, NULL, NULL, NULL, NULL);
      if (num_vars < 0) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Error retrieving number of selected GVs: %d", num_vars);
      }
      vars.resize(num_vars);
      faces.resize(num_vars);
      widths.resize(num_vars);
      tables.resize(num_vars);

      /* get selected vars for all bc */
      err = Boundary_SelectedGVs(cctkGH, num_vars, &vars[0], &faces[0], &widths[0], &tables[0],
                                      NULL);
      if (err<0) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Error in Boundary_SelectedGVs for all boundary conditions");
      } else if (err != num_vars) {
        CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
                   "Boundary_SelectedGVs returned %d selected variables for "
                   "all boundary conditions, but %d expected\n", err,
                   num_vars);
      }

      Requirements_NotifyWrites(cctkGH, num_vars, &vars[0], "boundary;boundary_ghostzones");
    }
    
    
    template ostream& output (ostream& os, const vector<clause_t>& v);
    template ostream& output (ostream& os, const vector<all_state_t::timelevels_t>& v);
    template ostream& output (ostream& os, const vector<all_state_t::maps_t>& v);
    template ostream& output (ostream& os, const vector<all_state_t::reflevels_t>& v);
    template ostream& output (ostream& os, const vector<all_state_t::variables_t>& v);
  } // namespace Carpet
}   // namespace Requirements