#define BGHOSTS 2
int main (int argc, char * argv[])
{
  origin (-0.6, -0.6, -0.6);
  init_grid (1);
  int depth = argc > 1 ? atoi(argv[1]) : 4;
  refine (level < depth - 2 ||
	  level <= depth*(1. - sqrt(sq(x) + sq(y) + sq(z))));
  
  scalar s[];
  foreach()
    s[] = 1;
  output_cells (stdout);
  // check boundary conditions on leaves
  foreach()
    foreach_neighbor()
      assert (s[] == 1.);
  // check boundary conditions on levels
  scalar s1[];
  for (int l = 0; l <= depth(); l++) {
    foreach_level (l)
      s1[] = 2;
    boundary_level ({s1}, l);
    foreach_level_or_leaf (l)
      foreach_neighbor(1) // fixme: shoud work with foreach_neighbor()
        assert (s1[] == 2.);
  }
  
  // check restriction
  for (int l = 0; l < depth; l++)
    foreach_coarse_level (l) {
      fprintf (qerr, "res %g %g %g %g %d\n", x, y, z, s[], level);
      assert (s[] == 1.);
    }
  // check face traversal
  foreach_face() {
    fprintf (qerr, "face %g %g %g %g\n", x, y, z, s[] - s[-1]);
    assert (s[] == s[-1]);
  }
}