Skip to content

Commit

Permalink
Merge pull request #30 from EinsteinToolkit/lwji/development
Browse files Browse the repository at this point in the history
Fix bug in PunctureTracker schedule
  • Loading branch information
lwJi authored Jun 29, 2024
2 parents 61211cf + 8811d66 commit dea620d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Multipole/src/surface.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Surface {
public:
Surface(int nTheta, int nPhi, bool isMidPoint)
: nTheta_(nTheta), nPhi_(nPhi) {
constexpr CCTK_REAL PI = std::acos(-1.0);
const CCTK_REAL PI = std::acos(-1.0);
const int arraySize = (nTheta + 1) * (nPhi + 1);
theta_.resize(arraySize);
phi_.resize(arraySize);
Expand Down
2 changes: 1 addition & 1 deletion PunctureTracker/schedule.ccl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Schedule definitions for thorn PunctureTracker

SCHEDULE PunctureTracker_Setup AT initial
SCHEDULE PunctureTracker_Setup AT wragh
{
LANG: C
OPTIONS: GLOBAL
Expand Down

0 comments on commit dea620d

Please sign in to comment.