Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
solverstack
ScalFMM
Commits
d288e5f8
Commit
d288e5f8
authored
Sep 23, 2013
by
COULAUD Olivier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some warnings
parent
cbbed01b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Src/Core/FFmmAlgorithm.hpp
Src/Core/FFmmAlgorithm.hpp
+1
-1
Src/Core/FFmmAlgorithmThreadProc.hpp
Src/Core/FFmmAlgorithmThreadProc.hpp
+2
-2
No files found.
Src/Core/FFmmAlgorithm.hpp
View file @
d288e5f8
...
...
@@ -81,7 +81,7 @@ public:
if
(
operationsToProceed
&
FFmmL2L
)
downardPass
();
if
(
operationsToProceed
&
FFmmP2P
||
operationsToProceed
&
FFmmL2P
)
directPass
();
if
(
(
operationsToProceed
&
FFmmP2P
)
||
(
operationsToProceed
&
FFmmL2P
)
)
directPass
();
}
private:
...
...
Src/Core/FFmmAlgorithmThreadProc.hpp
View file @
d288e5f8
...
...
@@ -112,7 +112,7 @@ public:
* An assert is launched if one of the arguments is null
*/
FFmmAlgorithmThreadProc
(
const
FMpi
::
FComm
&
inComm
,
OctreeClass
*
const
inTree
,
KernelClass
*
const
inKernels
)
:
tree
(
inTree
)
,
kernels
(
0
),
comm
(
inComm
),
numberOfLeafs
(
0
),
:
tree
(
inTree
)
,
kernels
(
0
),
comm
(
inComm
),
iterArray
(
nullptr
),
numberOfLeafs
(
0
),
MaxThreads
(
omp_get_max_threads
()),
nbProcess
(
inComm
.
processCount
()),
idProcess
(
inComm
.
processId
()),
OctreeHeight
(
tree
->
getHeight
()),
intervals
(
new
Interval
[
inComm
.
processCount
()]),
workingIntervalsPerLevel
(
new
Interval
[
inComm
.
processCount
()
*
tree
->
getHeight
()]){
...
...
@@ -205,7 +205,7 @@ public:
if
(
operationsToProceed
&
FFmmL2L
)
downardPass
();
if
(
operationsToProceed
&
FFmmP2P
||
operationsToProceed
&
FFmmL2P
)
directPass
();
if
(
(
operationsToProceed
&
FFmmP2P
)
||
(
operationsToProceed
&
FFmmL2P
)
)
directPass
();
// delete array
delete
[]
iterArray
;
...
...
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