Commit fe6b6277 authored by Cianciosa, Mark's avatar Cianciosa, Mark
Browse files

Fix header includes for when PCH are disabled,

parent 94b945f3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
#include "trigonometry.hpp"
#include "piecewise.hpp"
#include "math.hpp"
#include "arithmetic.hpp"

namespace equilibrium {
//******************************************************************************
+2 −0
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@
#endif

#include "../graph_framework/math.hpp"
#include "../graph_framework/arithmetic.hpp"
#include "../graph_framework/piecewise.hpp"

//------------------------------------------------------------------------------
///  @brief Tests for addition nodes.
+2 −0
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@
#endif

#include "../graph_framework/math.hpp"
#include "../graph_framework/arithmetic.hpp"
#include "../graph_framework/piecewise.hpp"

//------------------------------------------------------------------------------
///  @brief Tests for sqrt nodes.
+3 −1
Original line number Diff line number Diff line
@@ -8,7 +8,9 @@
#undef NDEBUG
#endif

#include "../graph_framework/node.hpp"
#include "../graph_framework/piecewise.hpp"
#include "../graph_framework/math.hpp"
#include "../graph_framework/arithmetic.hpp"

//------------------------------------------------------------------------------
///  @brief Tests for constant nodes.
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@
#undef NDEBUG
#endif

#include "../graph_framework/arithmetic.hpp"
#include "../graph_framework/piecewise.hpp"
#include "../graph_framework/math.hpp"
#include "../graph_framework/trigonometry.hpp"
#include "../graph_framework/jit.hpp"
Loading