Teuchos - Trilinos Tools Package
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
core
src
Teuchos_ArrayView.cpp
1
// @HEADER
2
// ***********************************************************************
3
//
4
// Teuchos: Common Tools Package
5
// Copyright (2004) Sandia Corporation
6
//
7
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8
// license for use of this work by or on behalf of the U.S. Government.
9
//
10
// Redistribution and use in source and binary forms, with or without
11
// modification, are permitted provided that the following conditions are
12
// met:
13
//
14
// 1. Redistributions of source code must retain the above copyright
15
// notice, this list of conditions and the following disclaimer.
16
//
17
// 2. Redistributions in binary form must reproduce the above copyright
18
// notice, this list of conditions and the following disclaimer in the
19
// documentation and/or other materials provided with the distribution.
20
//
21
// 3. Neither the name of the Corporation nor the names of the
22
// contributors may be used to endorse or promote products derived from
23
// this software without specific prior written permission.
24
//
25
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
//
37
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
38
//
39
// ***********************************************************************
40
// @HEADER
41
42
#include <Teuchos_ArrayView.hpp>
43
44
namespace
Teuchos
{
45
46
template
<>
47
TEUCHOSCORE_LIB_DLL_EXPORT std::string
48
ArrayView<float>::toString
()
const
49
{
50
using
Teuchos::as
;
51
std::ostringstream ss;
52
53
debug_assert_valid_ptr();
54
55
ss.setf (std::ios::scientific);
56
// 8 = round(23 * log10(2)) + 1. That's one decimal digit more
57
// than the binary precision justifies, which should be plenty.
58
// Guy Steele et al. have a better algorithm for floating-point
59
// I/O, but using a lot of digits is the lazy approach.
60
ss.precision (8);
61
ss <<
"{"
;
62
for
(size_type i = 0; i < size (); ++i) {
63
ss << operator[] (i);
64
if
(i + 1 < size ()) {
65
ss <<
", "
;
66
}
67
}
68
ss <<
"}"
;
69
return
ss.str ();
70
}
71
72
template
<>
73
TEUCHOSCORE_LIB_DLL_EXPORT std::string
74
ArrayView<const float>::toString
()
const
75
{
76
using
Teuchos::as
;
77
std::ostringstream ss;
78
79
debug_assert_valid_ptr();
80
81
ss.setf (std::ios::scientific);
82
// 8 = round(23 * log10(2)) + 1. That's one decimal digit more
83
// than the binary precision justifies, which should be plenty.
84
// Guy Steele et al. have a better algorithm for floating-point
85
// I/O, but using a lot of digits is the lazy approach.
86
ss.precision (8);
87
ss <<
"{"
;
88
for
(size_type i = 0; i < size (); ++i) {
89
ss << operator[] (i);
90
if
(i + 1 < size ()) {
91
ss <<
", "
;
92
}
93
}
94
ss <<
"}"
;
95
return
ss.str ();
96
}
97
98
template
<>
99
TEUCHOSCORE_LIB_DLL_EXPORT std::string
100
ArrayView<double>::toString
()
const
101
{
102
using
Teuchos::as
;
103
std::ostringstream ss;
104
105
debug_assert_valid_ptr();
106
107
ss.setf (std::ios::scientific);
108
// 17 = round(52 * log10(2)) + 1. That's one decimal digit more
109
// than the binary precision justifies, which should be plenty. Guy
110
// Steele et al. have a better algorithm for floating-point I/O, but
111
// using a lot of digits is the lazy approach.
112
ss.precision (17);
113
ss <<
"{"
;
114
for
(size_type i = 0; i < size (); ++i) {
115
ss << operator[] (i);
116
if
(i + 1 < size ()) {
117
ss <<
", "
;
118
}
119
}
120
ss <<
"}"
;
121
return
ss.str ();
122
}
123
124
template
<>
125
TEUCHOSCORE_LIB_DLL_EXPORT std::string
126
ArrayView<const double>::toString
()
const
127
{
128
using
Teuchos::as
;
129
std::ostringstream ss;
130
131
debug_assert_valid_ptr();
132
133
ss.setf (std::ios::scientific);
134
// 17 = round(52 * log10(2)) + 1. That's one decimal digit more
135
// than the binary precision justifies, which should be plenty. Guy
136
// Steele et al. have a better algorithm for floating-point I/O, but
137
// using a lot of digits is the lazy approach.
138
ss.precision (17);
139
ss <<
"{"
;
140
for
(size_type i = 0; i < size (); ++i) {
141
ss << operator[] (i);
142
if
(i + 1 < size ()) {
143
ss <<
", "
;
144
}
145
}
146
ss <<
"}"
;
147
return
ss.str ();
148
}
149
150
}
// namespace Teuchos
Teuchos::ArrayView::toString
std::string toString() const
Convert an ArrayView<T> to an std::string.
Definition
Teuchos_ArrayView.hpp:243
Teuchos::as
TypeTo as(const TypeFrom &t)
Convert from one value type to another.
Definition
Teuchos_as.hpp:2840
Teuchos
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...
Generated by
1.17.0