22 |
|
|
23 |
#include <sstream> |
#include <sstream> |
24 |
#include <iostream> |
#include <iostream> |
|
#include <vector> |
|
25 |
|
|
26 |
namespace escript { |
namespace escript { |
27 |
|
|
42 |
// The type of the underlying data array under management. |
// The type of the underlying data array under management. |
43 |
// The multi-dimensional data points are flattened and stored |
// The multi-dimensional data points are flattened and stored |
44 |
// serially as a vector of doubles. |
// serially as a vector of doubles. |
|
//typedef std::vector<double> ValueType; |
|
45 |
typedef DataVector ValueType; |
typedef DataVector ValueType; |
46 |
|
|
47 |
/** |
/** |