From 26a4f75b09a78c49dbdc8747f643018923a7d24f Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Sat, 12 Nov 2011 19:18:05 +0000
Subject: [PATCH] use Dune::array instead of std::tr1::array

[[Imported from SVN: r8147]]
---
 test/fdcheck.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/fdcheck.cc b/test/fdcheck.cc
index 67624ff7..619151f2 100644
--- a/test/fdcheck.cc
+++ b/test/fdcheck.cc
@@ -18,7 +18,7 @@ using namespace Dune;
 
 void testDDExp()
 {
-    std::tr1::array<FieldVector<double,3>, 125> v;
+    array<FieldVector<double,3>, 125> v;
     int ct = 0;
     double eps = 1e-4;
 
@@ -94,7 +94,7 @@ void testDDExp()
 
 void testDerivativeOfInterpolatedPosition()
 {
-    std::tr1::array<Quaternion<double>, 6> q;
+    array<Quaternion<double>, 6> q;
 
     FieldVector<double,3>  xAxis(0);    xAxis[0] = 1;
     FieldVector<double,3>  yAxis(0);    yAxis[1] = 1;
@@ -117,7 +117,7 @@ void testDerivativeOfInterpolatedPosition()
 
                 double s = k/6.0;
 
-                std::tr1::array<Quaternion<double>,6> fdGrad;
+                array<Quaternion<double>,6> fdGrad;
 
                 // ///////////////////////////////////////////////////////////
                 //   First: test the interpolated position
@@ -147,7 +147,7 @@ void testDerivativeOfInterpolatedPosition()
                 fdGrad[5] /= 2*eps;
 
                 // Compute analytical gradient
-                std::tr1::array<Quaternion<double>,6> grad;
+                array<Quaternion<double>,6> grad;
                 RodLocalStiffness<OneDGrid,double>::interpolationDerivative(q[i], q[j], s, grad);
 
                 for (int l=0; l<6; l++) {
-- 
GitLab