Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102456785
array_of_string.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Feb 20, 22:37
Size
961 B
Mime Type
text/x-c
Expires
Sat, Feb 22, 22:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24324456
Attached To
rDLMA Diffusion limited mixed aggregation
array_of_string.cpp
View Options
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2016 Gael Guennebaud <gael.guennebaud@inria.fr>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include "main.h"
EIGEN_DECLARE_TEST
(
array_of_string
)
{
typedef
Array
<
std
::
string
,
1
,
Dynamic
>
ArrayXs
;
ArrayXs
a1
(
3
),
a2
(
3
),
a3
(
3
),
a3ref
(
3
);
a1
<<
"one"
,
"two"
,
"three"
;
a2
<<
"1"
,
"2"
,
"3"
;
a3ref
<<
"one (1)"
,
"two (2)"
,
"three (3)"
;
std
::
stringstream
s1
;
s1
<<
a1
;
VERIFY_IS_EQUAL
(
s1
.
str
(),
std
::
string
(
" one two three"
));
a3
=
a1
+
std
::
string
(
" ("
)
+
a2
+
std
::
string
(
")"
);
VERIFY
((
a3
==
a3ref
).
all
());
a3
=
a1
;
a3
+=
std
::
string
(
" ("
)
+
a2
+
std
::
string
(
")"
);
VERIFY
((
a3
==
a3ref
).
all
());
a1
.
swap
(
a3
);
VERIFY
((
a1
==
a3ref
).
all
());
VERIFY
((
a3
!=
a3ref
).
all
());
}
Event Timeline
Log In to Comment