Skip to content
Snippets Groups Projects

Fix for build issue with fundamentals-differentiation tutorial code

6 files
+ 16
22
Compare changes
  • Side-by-side
  • Inline

Files

@@ -3,12 +3,11 @@
#include <LibUtilities/Foundations/ManagerAccess.h>
#include <LibUtilities/Polylib/Polylib.h>
#include <LibUtilities/LinearAlgebra/NekTypeDefs.hpp>
using namespace Nektar;
using namespace std;
typedef std::shared_ptr<NekMatrix<NekDouble> > MatrixSharedPtrType;
#define WITHSOLUTION 1
int main(int argc, char *argv[])
@@ -40,8 +39,8 @@ int main(int argc, char *argv[])
// Declare pointers (to type NekMatrix<NekDouble>) to hold the
// differentiation matrices
MatrixSharedPtrType derivMatrixDir1;
MatrixSharedPtrType derivMatrixDir2;
DNekMatSharedPtr derivMatrixDir1;
DNekMatSharedPtr derivMatrixDir2;
// Calculate the GLL-quadrature zeros and the differentiation
// matrices in both directions. This is done in 2 steps.
Loading