Skip to content

Commit

Permalink
Merge pull request #366 from scottaiton/fix_regions_initialization
Browse files Browse the repository at this point in the history
Fix regions initialization for restart
  • Loading branch information
scottaiton authored Nov 13, 2024
2 parents fea33fc + b03f1b7 commit d7fcd28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fclaw_initialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ void build_initial_domain(fclaw_global_t *glob)
int minlevel = fclaw_opt->minlevel;
int maxlevel = fclaw_opt->maxlevel;

/* Initialize regions */
fclaw_regions_initialize(glob);

int time_interp = 0;

/* ------------------------------------------------
Expand Down Expand Up @@ -258,6 +255,9 @@ pre_setup(fclaw_global_t* glob)

/* User defined problem setup */
fclaw_problem_setup(glob);

/* Initialize regions */
fclaw_regions_initialize(glob);
}

static void
Expand Down

0 comments on commit d7fcd28

Please sign in to comment.