Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
ScalFMM
Commits
5c486c56
Commit
5c486c56
authored
Jan 28, 2015
by
BRAMAS Berenger
Browse files
remove ../Src in utest
parent
fa137a72
Changes
28
Hide whitespace changes
Inline
Side-by-side
UTests/FUKernelTester.hpp
View file @
5c486c56
...
...
@@ -17,14 +17,14 @@
#define FUKERNELTESTER_HPP
#include "ScalFmmConfig.h"
#include "
../Src/
Utils/FGlobal.hpp"
#include "Utils/FGlobal.hpp"
#include "FUTester.hpp"
#include "
../Src/
Containers/FOctree.hpp"
#include "
../Src/
Files/FFmaGenericLoader.hpp"
#include "
../Src/
Core/FFmmAlgorithm.hpp"
#include "
../Src/
Utils/FPoint.hpp"
#include "Containers/FOctree.hpp"
#include "Files/FFmaGenericLoader.hpp"
#include "Core/FFmmAlgorithm.hpp"
#include "Utils/FPoint.hpp"
#include <memory>
#include <functional>
...
...
UTests/FUTester.hpp
View file @
5c486c56
...
...
@@ -208,7 +208,7 @@ public :
#ifdef ScalFMM_USE_MPI
#include "
../Src/
Utils/FMpi.hpp"
#include "Utils/FMpi.hpp"
#define TestClassMpi(X) \
int main(int argc, char** argv){ \
...
...
UTests/utestAlgorithmBuilder.cpp
View file @
5c486c56
...
...
@@ -15,15 +15,15 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Core/FAlgorithmBuilder.hpp"
#include "Core/FAlgorithmBuilder.hpp"
#include "
../../Src/
Containers/FOctree.hpp"
#include "Containers/FOctree.hpp"
#include "
../../Src/
Components/FSimpleLeaf.hpp"
#include "
../../Src/
Components/FTestParticleContainer.hpp"
#include "
../../Src/
Components/FTestCell.hpp"
#include "
../../Src/
Components/FTestKernels.hpp"
#include "
../../Src/
Components/FBasicKernels.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "Components/FTestParticleContainer.hpp"
#include "Components/FTestCell.hpp"
#include "Components/FTestKernels.hpp"
#include "Components/FBasicKernels.hpp"
/** This class test the core algorithm builder */
...
...
UTests/utestBoolArray.cpp
View file @
5c486c56
...
...
@@ -15,7 +15,7 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Containers/FBoolArray.hpp"
#include "Containers/FBoolArray.hpp"
/**
...
...
UTests/utestBuffer.cpp
View file @
5c486c56
...
...
@@ -18,8 +18,8 @@
#include "FUTester.hpp"
#include "
../Src/
Containers/FBufferReader.hpp"
#include "
../Src/
Containers/FBufferWriter.hpp"
#include "Containers/FBufferReader.hpp"
#include "Containers/FBufferWriter.hpp"
...
...
UTests/utestChebyshev.cpp
View file @
5c486c56
...
...
@@ -20,14 +20,14 @@
#include "FUKernelTester.hpp"
#include "
../Src/
Components/FSimpleLeaf.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebCell.hpp"
#include "
../Src/
Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebSymKernel.hpp"
#include "Kernels/Chebyshev/FChebCell.hpp"
#include "Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "Kernels/Chebyshev/FChebKernel.hpp"
#include "Kernels/Chebyshev/FChebSymKernel.hpp"
#include "
../Src/
Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
/*
In this test we compare the Chebyschev fmm results and the direct results.
*/
...
...
UTests/utestChebyshevAdaptative.cpp
View file @
5c486c56
...
...
@@ -20,19 +20,19 @@
#include "FUKernelTester.hpp"
#include "
../Src/
Components/FSimpleLeaf.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebCell.hpp"
#include "
../Src/
Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebSymKernel.hpp"
#include "Kernels/Chebyshev/FChebCell.hpp"
#include "Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "Kernels/Chebyshev/FChebKernel.hpp"
#include "Kernels/Chebyshev/FChebSymKernel.hpp"
#include "
../Src/
Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "
../Src/
Adaptive/FAdaptiveCell.hpp"
#include "
../Src/
Adaptive/FAdaptiveKernelWrapper.hpp"
#include "
../Src/
Adaptive/FAbstractAdaptiveKernel.hpp"
#include "
../Src/
Adaptive/FAdaptChebSymKernel.hpp"
#include "Adaptive/FAdaptiveCell.hpp"
#include "Adaptive/FAdaptiveKernelWrapper.hpp"
#include "Adaptive/FAbstractAdaptiveKernel.hpp"
#include "Adaptive/FAdaptChebSymKernel.hpp"
/*
In this test we compare the Chebyschev fmm results and the direct results.
...
...
UTests/utestChebyshevMultiRhs.cpp
View file @
5c486c56
...
...
@@ -19,26 +19,26 @@
// ==============
#include "ScalFmmConfig.h"
#include "
../Src/
Utils/FGlobal.hpp"
#include "Utils/FGlobal.hpp"
#include "
../Src/
Containers/FOctree.hpp"
#include "Containers/FOctree.hpp"
#include "Files/FFmaGenericLoader.hpp"
#include "
../Src/
Core/FFmmAlgorithmThread.hpp"
#include "
../Src/
Core/FFmmAlgorithm.hpp"
#include "Core/FFmmAlgorithmThread.hpp"
#include "Core/FFmmAlgorithm.hpp"
#include "FUTester.hpp"
#include "
../Src/
Components/FSimpleLeaf.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebCell.hpp"
#include "
../Src/
Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebKernel.hpp"
#include "
../Src/
Kernels/Chebyshev/FChebSymKernel.hpp"
#include "Kernels/Chebyshev/FChebCell.hpp"
#include "Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "Kernels/Chebyshev/FChebKernel.hpp"
#include "Kernels/Chebyshev/FChebSymKernel.hpp"
#include "
../Src/
Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
/*
In this test we compare the spherical FMM results and the direct results.
*/
...
...
UTests/utestFmmAlgorithmProc.cpp
View file @
5c486c56
...
...
@@ -20,31 +20,31 @@
#include "FUTester.hpp"
#include "
../../Src/
Utils/FMpi.hpp"
#include "
../../Src/
Utils/FTic.hpp"
#include "Utils/FMpi.hpp"
#include "Utils/FTic.hpp"
#include "
../../Src/
Containers/FOctree.hpp"
#include "
../../Src/
Containers/FVector.hpp"
#include "
../../Src/
Utils/FParameters.hpp"
#include "
../../Src/
Utils/FGlobal.hpp"
#include "Containers/FOctree.hpp"
#include "Containers/FVector.hpp"
#include "Utils/FParameters.hpp"
#include "Utils/FGlobal.hpp"
#include "
../../Src/
Components/FSimpleLeaf.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "
../../Src/
Utils/FPoint.hpp"
#include "Utils/FPoint.hpp"
#include "
../../Src/
Components/FTestCell.hpp"
#include "
../../Src/
Components/FTestKernels.hpp"
#include "
../../Src/
Components/FTestParticleContainer.hpp"
#include "Components/FTestCell.hpp"
#include "Components/FTestKernels.hpp"
#include "Components/FTestParticleContainer.hpp"
#include "
../../Src/
Core/FFmmAlgorithmThreadProc.hpp"
#include "
../../Src/
Core/FFmmAlgorithmThread.hpp"
#include "Core/FFmmAlgorithmThreadProc.hpp"
#include "Core/FFmmAlgorithmThread.hpp"
#include "
../../Src/
Files/FMpiFmaGenericLoader.hpp"
#include "
../../Src/
Files/FMpiTreeBuilder.hpp"
#include "Files/FMpiFmaGenericLoader.hpp"
#include "Files/FMpiTreeBuilder.hpp"
#include "
../../Src/
Components/FBasicKernels.hpp"
#include "Components/FBasicKernels.hpp"
#include "
../../Src/
BalanceTree/FLeafBalance.hpp"
#include "BalanceTree/FLeafBalance.hpp"
#include <iostream>
#include <cstdio>
...
...
UTests/utestLagrange.cpp
View file @
5c486c56
...
...
@@ -34,9 +34,9 @@
#include "Components/FSimpleLeaf.hpp"
#include "
../../Src/
Kernels/Uniform/FUnifCell.hpp"
#include "
../../Src/
Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "
../../Src/
Kernels/Uniform/FUnifKernel.hpp"
#include "Kernels/Uniform/FUnifCell.hpp"
#include "Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "Kernels/Uniform/FUnifKernel.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
/*
...
...
UTests/utestLagrangeThread.cpp
View file @
5c486c56
...
...
@@ -34,9 +34,9 @@
#include "Components/FSimpleLeaf.hpp"
#include "
../../Src/
Kernels/Uniform/FUnifCell.hpp"
#include "
../../Src/
Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "
../../Src/
Kernels/Uniform/FUnifKernel.hpp"
#include "Kernels/Uniform/FUnifCell.hpp"
#include "Kernels/Interpolation/FInterpMatrixKernel.hpp"
#include "Kernels/Uniform/FUnifKernel.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
/*
...
...
UTests/utestList.cpp
View file @
5c486c56
...
...
@@ -15,7 +15,7 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Containers/FList.hpp"
#include "Containers/FList.hpp"
// compile by g++ utestList.cpp -o utestList.exe
...
...
UTests/utestListBlockAllocator.cpp
View file @
5c486c56
...
...
@@ -16,7 +16,7 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Containers/FBlockAllocator.hpp"
#include "Containers/FBlockAllocator.hpp"
#include <cstring>
...
...
UTests/utestMorton.cpp
View file @
5c486c56
...
...
@@ -15,7 +15,7 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Containers/FTreeCoordinate.hpp"
#include "Containers/FTreeCoordinate.hpp"
// compile by g++ utestMorton.cpp -o utestMorton.exe
...
...
UTests/utestMpiBitonic.cpp
View file @
5c486c56
...
...
@@ -16,11 +16,11 @@
#ifndef UTESTMPIBITONIC_CPP
#define UTESTMPIBITONIC_CPP
#include "
../Src/
Utils/FGlobal.hpp"
#include "Utils/FGlobal.hpp"
#include "FUTester.hpp"
#include "
../Src/
Utils/FMpi.hpp"
#include "
../Src/
Utils/FBitonicSort.hpp"
#include "Utils/FMpi.hpp"
#include "Utils/FBitonicSort.hpp"
#include <memory>
#include <limits>
...
...
UTests/utestMpiQs.cpp
View file @
5c486c56
...
...
@@ -16,11 +16,11 @@
#ifndef UTESTMPIQS_HPP
#define UTESTMPIQS_HPP
#include "
../Src/
Utils/FGlobal.hpp"
#include "Utils/FGlobal.hpp"
#include "FUTester.hpp"
#include "
../Src/
Utils/FMpi.hpp"
#include "
../Src/
Utils/FQuickSortMpi.hpp"
#include "Utils/FMpi.hpp"
#include "Utils/FQuickSortMpi.hpp"
#include <memory>
#include <limits>
...
...
UTests/utestMpiTreeBuilder.cpp
View file @
5c486c56
...
...
@@ -27,22 +27,22 @@
#include "FUTester.hpp"
#include "
../Src/
Utils/FMpi.hpp"
#include "
../Src/
Containers/FVector.hpp"
#include "Utils/FMpi.hpp"
#include "Containers/FVector.hpp"
#include "
../Src/
Files/FFmaGenericLoader.hpp"
#include "
../Src/
Files/FMpiFmaGenericLoader.hpp"
#include "
../Src/
BalanceTree/FLeafBalance.hpp"
#include "
../Src/
Containers/FTreeCoordinate.hpp"
#include "Files/FFmaGenericLoader.hpp"
#include "Files/FMpiFmaGenericLoader.hpp"
#include "BalanceTree/FLeafBalance.hpp"
#include "Containers/FTreeCoordinate.hpp"
#include "
../Src/
Utils/FQuickSortMpi.hpp"
#include "
../Src/
Utils/FBitonicSort.hpp"
#include "
../Src/
Files/FMpiTreeBuilder.hpp"
#include "
../Src/
Core/FCoreCommon.hpp"
#include "Utils/FQuickSortMpi.hpp"
#include "Utils/FBitonicSort.hpp"
#include "Files/FMpiTreeBuilder.hpp"
#include "Core/FCoreCommon.hpp"
#include "
../Src/
Utils/FPoint.hpp"
#include "
../Src/
Utils/FMath.hpp"
#include "Utils/FPoint.hpp"
#include "Utils/FMath.hpp"
class
TestMpiTreeBuilder
:
public
FUTesterMpi
<
class
TestMpiTreeBuilder
>
{
...
...
UTests/utestOctree.cpp
View file @
5c486c56
...
...
@@ -15,18 +15,18 @@
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Containers/FOctree.hpp"
#include "
../Src/
Containers/FBlockAllocator.hpp"
#include "
../Src/
Containers/FVector.hpp"
#include "
../Src/
Components/FSimpleLeaf.hpp"
#include "Containers/FOctree.hpp"
#include "Containers/FBlockAllocator.hpp"
#include "Containers/FVector.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "
../Src/
Utils/FAssert.hpp"
#include "
../Src/
Utils/FPoint.hpp"
#include "Utils/FAssert.hpp"
#include "Utils/FPoint.hpp"
#include "
../Src/
Components/FBasicParticleContainer.hpp"
#include "
../Src/
Components/FBasicCell.hpp"
#include "Components/FBasicParticleContainer.hpp"
#include "Components/FBasicCell.hpp"
#include "
../Src/
Utils/FTic.hpp"
#include "Utils/FTic.hpp"
/**
In this test we create a lot of different octree by using various height and subheigt
...
...
UTests/utestQuicksort.cpp
View file @
5c486c56
...
...
@@ -14,7 +14,7 @@
// "http://www.gnu.org/licenses".
// ===================================================================================
#include "FUTester.hpp"
#include "
../Src/
Utils/FQuickSort.hpp"
#include "Utils/FQuickSort.hpp"
#include <unistd.h>
...
...
UTests/utestRotation.cpp
View file @
5c486c56
...
...
@@ -14,22 +14,22 @@
// "http://www.gnu.org/licenses".
// ===================================================================================
#include "
../Src/
Utils/FGlobal.hpp"
#include "
../Src/
Utils/FTic.hpp"
#include "
../Src/
Utils/FTemplate.hpp"
#include "Utils/FGlobal.hpp"
#include "Utils/FTic.hpp"
#include "Utils/FTemplate.hpp"
#include "
../Src/
Containers/FOctree.hpp"
#include "
../Src/
Containers/FVector.hpp"
#include "Containers/FOctree.hpp"
#include "Containers/FVector.hpp"
#include "
../Src/
Kernels/Rotation/FRotationCell.hpp"
#include "
../Src/
Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "Kernels/Rotation/FRotationCell.hpp"
#include "Kernels/P2P/FP2PParticleContainerIndexed.hpp"
#include "
../Src/
Components/FSimpleLeaf.hpp"
#include "
../Src/
Kernels/Rotation/FRotationKernel.hpp"
#include "Components/FSimpleLeaf.hpp"
#include "Kernels/Rotation/FRotationKernel.hpp"
#include "
../Src/
Files/FFmaGenericLoader.hpp"
#include "Files/FFmaGenericLoader.hpp"
#include "
../Src/
Core/FFmmAlgorithm.hpp"
#include "Core/FFmmAlgorithm.hpp"
#include "FUTester.hpp"
...
...
Prev
1
2
Next
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