Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/algebra/CholeskyRobust.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <iostream>

#include "CholeskyRobust.h"
#include "core/vector/Algorithms.h"
#include "../vector/Algorithms.h"

#ifdef NICE_USELIB_CUDACHOLESKY
#include "cholesky-gpu/niceinterface/CudaCholeskyNICE.h"
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/CholeskyRobust.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _NICE_NICE_CHOLESKYROBUSTINCLUDE

#include <limits>
#include "core/vector/MatrixT.h"
#include "../vector/MatrixT.h"

namespace NICE
{
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/CholeskyRobustAuto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
#include <iostream>

#include "core/vector/Algorithms.h"
#include "../vector/Algorithms.h"

#include "CholeskyRobustAuto.h"

Expand Down
2 changes: 1 addition & 1 deletion core/algebra/CholeskyRobustAuto.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define _NICE_NICE_CHOLESKYROBUSTAUTOINCLUDE

#include <limits>
#include "core/vector/MatrixT.h"
#include "../vector/MatrixT.h"

#include "CholeskyRobust.h"

Expand Down
6 changes: 3 additions & 3 deletions core/algebra/DiagonalMatrixApprox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
*/
#include <iostream>

#include <core/optimization/gradientBased/FirstOrderRasmussen.h>
#include <core/vector/Eigen.h>
#include "../optimization/gradientBased/FirstOrderRasmussen.h"
#include "../vector/Eigen.h"

#include "DiagonalMatrixApprox.h"

#include "core/basics/numerictools.h"
#include "../basics/numerictools.h"

using namespace NICE;
using namespace std;
Expand Down
8 changes: 4 additions & 4 deletions core/algebra/DiagonalMatrixApprox.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#ifndef _NICE_DIAGONALMATRIXAPPROXINCLUDE
#define _NICE_DIAGONALMATRIXAPPROXINCLUDE

#include <core/vector/MatrixT.h>
#include <core/vector/VectorT.h>
#include <core/optimization/gradientBased/OptimizationProblemFirst.h>
#include <core/optimization/gradientBased/OptimizationAlgorithmFirst.h>
#include "../vector/MatrixT.h"
#include "../vector/VectorT.h"
#include "../optimization/gradientBased/OptimizationProblemFirst.h"
#include "../optimization/gradientBased/OptimizationAlgorithmFirst.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/algebra/GBCDSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
#include <iostream>

#include <core/basics/Timer.h>
#include "../basics/Timer.h"
#include "GBCDSolver.h"

using namespace NICE;
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/GMStandard.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <core/basics/Exception.h>
#include "../basics/Exception.h"

#include "GMStandard.h"

Expand Down
4 changes: 2 additions & 2 deletions core/algebra/GenericMatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#ifndef GENERICMATRIXINCLUDE
#define GENERICMATRIXINCLUDE

#include "core/basics/triplet.h"
#include "core/vector/SparseVectorT.h"
#include "../basics/triplet.h"
#include "../vector/SparseVectorT.h"


namespace NICE
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/ILSConjugateGradients.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
#include <iostream>

#include <core/basics/Timer.h>
#include "../basics/Timer.h"
#include "ILSConjugateGradients.h"

using namespace NICE;
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/ILSConjugateGradients.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _NICE_ILSConjugateGradients_INCLUDE
#define _NICE_ILSConjugateGradients_INCLUDE

#include "core/vector/VectorT.h"
#include "../vector/VectorT.h"
#include "GenericMatrix.h"
#include "IterativeLinearSolver.h"

Expand Down
2 changes: 1 addition & 1 deletion core/algebra/ILSConjugateGradientsLanczos.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _NICE_ILSConjugateGradientsLanczos_INCLUDE
#define _NICE_ILSConjugateGradientsLanczos_INCLUDE

#include "core/vector/VectorT.h"
#include "../vector/VectorT.h"
#include "GenericMatrix.h"
#include "IterativeLinearSolver.h"
#include "EigValues.h"
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/ILSMinResLanczos.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _NICE_ILSMinResLanczos_INCLUDE
#define _NICE_ILSMinResLanczos_INCLUDE

#include "core/vector/VectorT.h"
#include "../vector/VectorT.h"
#include "GenericMatrix.h"
#include "IterativeLinearSolver.h"
#include "EigValues.h"
Expand Down
4 changes: 2 additions & 2 deletions core/algebra/ILSPlainGradient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/
#include <iostream>

#include "core/optimization/gradientBased/FirstOrderRasmussen.h"
#include "core/optimization/gradientBased/FirstOrderTrustRegion.h"
#include "../optimization/gradientBased/FirstOrderRasmussen.h"
#include "../optimization/gradientBased/FirstOrderTrustRegion.h"
#include "ILSPlainGradient.h"

using namespace NICE;
Expand Down
6 changes: 3 additions & 3 deletions core/algebra/ILSPlainGradient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#ifndef _NICE_ILSPlainGradient_INCLUDE
#define _NICE_ILSPlainGradient_INCLUDE

#include "core/vector/VectorT.h"
#include "core/optimization/gradientBased/OptimizationProblemFirst.h"
#include "core/optimization/gradientBased/OptimizationAlgorithmFirst.h"
#include "../vector/VectorT.h"
#include "../optimization/gradientBased/OptimizationProblemFirst.h"
#include "../optimization/gradientBased/OptimizationAlgorithmFirst.h"

#include "IterativeLinearSolver.h"

Expand Down
2 changes: 1 addition & 1 deletion core/algebra/ILSSymmLqLanczos.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _NICE_ILSSymmLqLanczos_INCLUDE
#define _NICE_ILSSymmLqLanczos_INCLUDE

#include "core/vector/VectorT.h"
#include "../vector/VectorT.h"
#include "GenericMatrix.h"
#include "IterativeLinearSolver.h"
#include "EigValues.h"
Expand Down
2 changes: 1 addition & 1 deletion core/algebra/IterativeLinearSolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _NICE_ITERATIVELINEARSOLVERINCLUDE
#define _NICE_ITERATIVELINEARSOLVERINCLUDE

#include "core/vector/VectorT.h"
#include "../vector/VectorT.h"
#include "GenericMatrix.h"

namespace NICE {
Expand Down
4 changes: 2 additions & 2 deletions core/algebra/LUDecomposition.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#ifndef _NICE_LUDECOMPOSITION_
#define _NICE_LUDECOMPOSITION_

#include "core/vector/MatrixT.h"
#include "core/vector/VectorT.h"
#include "../vector/MatrixT.h"
#include "../vector/VectorT.h"
#include "MatrixDecomposition.h"

namespace NICE
Expand Down
6 changes: 3 additions & 3 deletions core/basics/BinStreamable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* See file License for license information.
*/
/*****************************************************************************/
#include "core/basics/BinStreamable.h"
#include "BinStreamable.h"
#include <stdexcept>
#include <fstream>
#include <core/basics/gzbinstream.h>
#include "../basics/gzbinstream.h"

#include "core/basics/Exception.h"
#include "../basics/Exception.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/BinStreamable.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include <iostream>

#include <core/basics/binstream.h>
#include "../basics/binstream.h"

namespace NICE {

Expand Down
10 changes: 5 additions & 5 deletions core/basics/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
#include <fstream>

// nice-core includes
#include "core/basics/Exception.h"
#include "core/basics/Config.h"
#include "core/basics/ossettings.h"
#include "core/basics/StringTools.h"
#include "core/basics/FileName.h"
#include "Exception.h"
#include "Config.h"
#include "ossettings.h"
#include "StringTools.h"
#include "FileName.h"

using namespace NICE;

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <vector>

#include "StructuredMap.h"
#include "core/basics/Persistent.h"
#include "Persistent.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* - libfbasics - library of some basic tools
* See file License for license information.
*/
#include "core/basics/Exception.h"
#include "Exception.h"
#include <sstream>
#include <iostream>

Expand Down
2 changes: 1 addition & 1 deletion core/basics/FileName.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "core/basics/FileName.h"
#include "FileName.h"
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion core/basics/FrameRateCounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* - libfbasics - library of some basic tools
* See file License for license information.
*/
#include "core/basics/FrameRateCounter.h"
#include "FrameRateCounter.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/FrameRateCounter.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


#include <string>
#include <core/basics/Timer.h>
#include "Timer.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Observable.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "core/basics/Observable.h"
#include "Observable.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Observable.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define _OBSERVABLE_FBASICS_H

#include <vector>
#include <core/basics/Observer.h>
#include "Observer.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Observer.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "core/basics/Observer.h"
#include "Observer.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/Observer.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ class Observer {

} // namespace

#include <core/basics/Observable.h>
#include "Observable.h"

#endif // _OBSERVER_FBASICS_H
2 changes: 1 addition & 1 deletion core/basics/Persistent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <fstream>
#include <algorithm>

#include "core/basics/Exception.h"
#include "Exception.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/ResourceStatistics.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <sys/resource.h>
#endif

#include <core/basics/Exception.h>
#include "Exception.h"

namespace NICE {

Expand Down
8 changes: 4 additions & 4 deletions core/basics/Streamable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
* See file License for license information.
*/
/*****************************************************************************/
#include "core/basics/Streamable.h"
#include "Streamable.h"
#include <stdexcept>
#include <fstream>
#include <sstream>
#include <core/basics/gzstream.h>
#include <core/basics/bzstream.h>
#include "gzstream.h"
#include "bzstream.h"

#include "core/basics/Exception.h"
#include "Exception.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/StringTools.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <string>
#include <sstream>

#include <core/vector/VectorT.h>
#include "../vector/VectorT.h"

namespace NICE
{
Expand Down
2 changes: 1 addition & 1 deletion core/basics/StructuredMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <math.h>

#include "core/basics/Persistent.h"
#include "Persistent.h"



Expand Down
4 changes: 2 additions & 2 deletions core/basics/Timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* - libfbasics - library of some basic tools
* See file License for license information.
*/
#include "core/basics/Timer.h"
#include <core/basics/Exception.h>
#include "Timer.h"
#include "Exception.h"
#include <limits>

#ifdef WIN32
Expand Down
2 changes: 1 addition & 1 deletion core/basics/Timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#endif
#endif
#include <string>
#include <core/basics/Log.h>
#include "Log.h"

namespace NICE {

Expand Down
2 changes: 1 addition & 1 deletion core/basics/binstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <iostream>
#include <fstream>
#include <vector>
#include <core/basics/types.h>
#include "types.h"
#include <string.h>
#include "CrossplatformDefines.h"
#ifdef NICE_USELIB_LINAL
Expand Down
2 changes: 1 addition & 1 deletion core/basics/bzstream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// Standard C++ Library".
// ============================================================================

#include <core/basics/bzstream.h>
#include "bzstream.h"
#include "CrossplatformDefines.h"

#ifdef NICE_USELIB_BZLIB
Expand Down
2 changes: 1 addition & 1 deletion core/basics/gzbinstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// ============================================================================


#include "core/basics/binstream.h"
#include "../basics/binstream.h"
// standard C++ with new header file names and std:: namespace
#ifdef NICE_USELIB_ZLIB
#ifdef NICE_USELIB_LINAL
Expand Down
Loading