Skip to content

Commit 86dd7a4

Browse files
committed
fixed cosmetic issues
1 parent f47e01e commit 86dd7a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CartLatticeAccess.hpp.Rt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ resolve.symmetries = function(D) {
250250

251251
?>
252252

253-
CudaDeviceFunction flag_t getContainerType(const CartLatticeContainer& container, int x, int y, int z) {
253+
CudaDeviceFunction flag_t fetchNodeType(const CartLatticeContainer& container, int x, int y, int z) {
254254
return container.NodeType[(x + container.nx*(y + container.ny*z))];
255255
}
256256

@@ -265,7 +265,7 @@ class CartLatticeAccess {
265265
public:
266266
CudaDeviceFunction CartLatticeAccess(const int& x_, const int& y_, const int& z_) :
267267
x(x_),y(y_),z(z_),
268-
nt{getContainerType(constContainer, x, y, z)},
268+
nt(fetchNodeType(constContainer, x, y, z)),
269269
nx(constContainer.nx),ny(constContainer.ny),nz(constContainer.nz)
270270
{ }
271271
CudaDeviceFunction real_t getX() const { return constContainer.px + x; }

0 commit comments

Comments
 (0)