Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ScalFMM
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
List
Boards
Labels
Milestones
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
ScalFMM
Commits
811143be
Commit
811143be
authored
Sep 07, 2015
by
BRAMAS Berenger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use int because it is not morton index anymore in these functions
parent
e289f1c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Src/GroupTree/Core/FGroupOfCells.hpp
Src/GroupTree/Core/FGroupOfCells.hpp
+2
-2
No files found.
Src/GroupTree/Core/FGroupOfCells.hpp
View file @
811143be
...
...
@@ -294,14 +294,14 @@ public:
}
/** Return the address of the cell if it exists (or NULL) */
CompositeCellClass
getUpCell
(
const
MortonIndex
cellPos
){
CompositeCellClass
getUpCell
(
const
int
cellPos
){
FAssertLF
(
cellMultipoles
);
FAssertLF
(
cellPos
<
blockHeader
->
numberOfCellsInBlock
);
return
CompositeCellClass
(
&
blockCells
[
cellPos
],
&
cellMultipoles
[
cellPos
],
nullptr
);
}
/** Return the address of the cell if it exists (or NULL) */
CompositeCellClass
getDownCell
(
const
MortonIndex
cellPos
){
CompositeCellClass
getDownCell
(
const
int
cellPos
){
FAssertLF
(
cellLocals
);
FAssertLF
(
cellPos
<
blockHeader
->
numberOfCellsInBlock
);
return
CompositeCellClass
(
&
blockCells
[
cellPos
],
nullptr
,
&
cellLocals
[
cellPos
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment