Skip to content

Commit

Permalink
missing math defines fixed in combigrid
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Franzelin committed Feb 11, 2016
1 parent f1ce986 commit 7e1032b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

#include <sgpp/combigrid/domain/CombiBasuStretching.hpp>
#include <math.h>
#include <sgpp/globaldef.hpp>

void combigrid::CombiBasuStretching::get1DStretching(
int level, double min, double max, std::vector<double>* stretching,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

#include <sgpp/combigrid/domain/CombiChebyshevStretching.hpp>
#include <math.h>
#include <sgpp/globaldef.hpp>

/**
* Implements a simple coordinate transform :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <sgpp/combigrid/quadratures/BasuQuadrature.hpp>
#include <vector>
#include <sgpp/globaldef.hpp>

template <typename _Tp>
combigrid::BasuQuadrature<_Tp>::BasuQuadrature(int max_lvl) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#include <sgpp/combigrid/quadratures/ClenshawCurtisQuadrature.hpp>
#include <vector>
#include <sgpp/globaldef.hpp>


template <typename _Tp>
combigrid::ClenshawCurtisQuadrature<_Tp>::ClenshawCurtisQuadrature(
Expand Down

0 comments on commit 7e1032b

Please sign in to comment.