Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90517222
test_mesh_io_msh.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 2, 09:54
Size
747 B
Mime Type
text/x-c
Expires
Mon, Nov 4, 09:54 (2 d)
Engine
blob
Format
Raw Data
Handle
22091786
Attached To
rAKA akantu
test_mesh_io_msh.cc
View Options
/**
* @file mesh_io_msh.cc
* @author Nicolas Richart <nicolas.richart@epfl.ch>
* @date Wed Jul 14 14:27:11 2010
*
* @brief unit test for the MeshIOMSH class
*
* @section LICENSE
*
* \<insert license here\>
*
*/
/* -------------------------------------------------------------------------- */
#include <cstdlib>
/* -------------------------------------------------------------------------- */
#include "mesh.hh"
#include "mesh_io.hh"
#include "mesh_io_msh.hh"
/* -------------------------------------------------------------------------- */
int
main
(
int
argc
,
char
*
argv
[])
{
akantu
::
MeshIOMSH
mesh_io
;
akantu
::
Mesh
mesh
(
3
);
mesh_io
.
read
(
"./cube.msh"
,
mesh
);
std
::
cout
<<
mesh
<<
std
::
endl
;
return
EXIT_SUCCESS
;
}
Event Timeline
Log In to Comment