Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91295009
test_mesh_iterators.cc
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
Sat, Nov 9, 18:14
Size
2 KB
Mime Type
text/x-c
Expires
Mon, Nov 11, 18:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22238035
Attached To
rAKA akantu
test_mesh_iterators.cc
View Options
/**
* @file test_mesh_iterators.cc
*
* @author Nicolas Richart
*
* @date creation Wed Aug 09 2017
*
* @brief Test the mesh iterators
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "aka_iterators.hh"
#include "element_group.hh"
#include "mesh.hh"
#include "mesh_iterators.hh"
#include "node_group.hh"
/* -------------------------------------------------------------------------- */
using
namespace
akantu
;
int
main
(
int
argc
,
char
*
argv
[])
{
initialize
(
argc
,
argv
);
Mesh
mesh
(
3
);
const
Mesh
&
cmesh
=
mesh
;
mesh
.
read
(
"iterators_mesh.msh"
);
for
(
auto
&&
element_group
:
ElementGroupsIterable
(
mesh
))
{
std
::
cout
<<
element_group
.
getName
()
<<
std
::
endl
;
}
for
(
auto
&&
node_group
:
NodeGroupsIterable
(
cmesh
))
{
std
::
cout
<<
node_group
.
getName
()
<<
std
::
endl
;
}
for
(
auto
&&
element_group
:
enumerate
(
ElementGroupsIterable
(
mesh
)))
{
std
::
cout
<<
std
::
get
<
0
>
(
element_group
)
<<
" "
<<
std
::
get
<
1
>
(
element_group
).
getName
()
<<
std
::
endl
;
}
// for (auto && node_group :
// counting(NodeGroupsIterable(cmesh))) {
// std::cout << std::get<0>(node_group) << " " << std::get<1>(node_group).getName() << std::endl;
// }
finalize
();
return
EXIT_SUCCESS
;
}
Event Timeline
Log In to Comment