Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
1cfd8696
Commit
1cfd8696
authored
Aug 04, 2014
by
PIACIBELLO Cyrille
Browse files
Changes for Matrix Kernel Class
parent
c1455fed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Examples/ChebyshevInterpolationMPIFMM.cpp
View file @
1cfd8696
...
...
@@ -123,7 +123,7 @@ int main(int argc, char* argv[])
typedef
FChebCell
<
ORDER
>
CellClass
;
typedef
FOctree
<
CellClass
,
ContainerClass
,
LeafClass
>
OctreeClass
;
typedef
FInterpMatrixKernelR
MatrixKernelClass
;
const
MatrixKernelClass
MatrixKernel
;
typedef
FChebSymKernel
<
CellClass
,
ContainerClass
,
MatrixKernelClass
,
ORDER
>
KernelClass
;
//
...
...
@@ -194,7 +194,7 @@ int main(int argc, char* argv[])
//
// Here we use a pointer due to the limited size of the stack
//
KernelClass
*
kernels
=
new
KernelClass
(
TreeHeight
,
loader
.
getBoxWidth
(),
loader
.
getCenterOfBox
());
KernelClass
*
kernels
=
new
KernelClass
(
TreeHeight
,
loader
.
getBoxWidth
(),
loader
.
getCenterOfBox
()
,
&
MatrixKernel
);
//
FmmClassProc
algorithm
(
app
.
global
(),
&
tree
,
kernels
);
//
...
...
Write
Preview
Supports
Markdown
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