Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90504235
wrap.hh
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, 07:00
Size
2 KB
Mime Type
text/x-c++
Expires
Mon, Nov 4, 07:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22086457
Attached To
rTAMAAS tamaas
wrap.hh
View Options
/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-2020 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __WRAP_HH__
#define __WRAP_HH__
/* -------------------------------------------------------------------------- */
#include "tamaas.hh"
#include "numpy.hh"
#include "cast.hh"
/* -------------------------------------------------------------------------- */
#include <pybind11/pybind11.h>
/* -------------------------------------------------------------------------- */
namespace
tamaas
{
namespace
wrap
{
namespace
py
=
pybind11
;
/// For naming classes templated with dimension
inline
std
::
string
makeDimensionName
(
const
std
::
string
&
name
,
UInt
dim
)
{
std
::
stringstream
str
;
str
<<
name
<<
dim
<<
"D"
;
return
str
.
str
();
}
template
<
typename
T
>
class
smart_pointer
{
public
:
smart_pointer
(
T
*
ptr
)
:
ptr
(
ptr
)
{}
void
assign
(
T
val
)
{
*
ptr
=
val
;
}
private
:
T
*
ptr
;
};
/* -------------------------------------------------------------------------- */
/* Prototypes for wrapping of tamaas components */
/* -------------------------------------------------------------------------- */
void
wrapCore
(
py
::
module
&
mod
);
void
wrapPercolation
(
py
::
module
&
mod
);
void
wrapSurface
(
py
::
module
&
mod
);
void
wrapModel
(
py
::
module
&
mod
);
void
wrapSolvers
(
py
::
module
&
mod
);
void
wrapTestFeatures
(
py
::
module
&
mod
);
void
wrapCompute
(
py
::
module
&
mod
);
void
wrapMPI
(
py
::
module
&
mod
);
#if defined(TAMAAS_LEGACY_BEM)
void
wrapBEM
(
py
::
module
&
mod
);
#endif
}
// namespace wrap
}
// namespace tamaas
#endif
// __WRAP_HH__
Event Timeline
Log In to Comment