Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90710271
terms_to_assemble.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
Mon, Nov 4, 01:52
Size
3 KB
Mime Type
text/x-c++
Expires
Wed, Nov 6, 01:52 (1 d, 4 h)
Engine
blob
Format
Raw Data
Handle
22015924
Attached To
rAKA akantu
terms_to_assemble.hh
View Options
/**
* @file terms_to_assemble.hh
*
* @author Nicolas Richart
*
* @date creation Tue Dec 20 2016
*
* @brief List of terms to assemble to a matrix
*
* @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_common.hh"
/* -------------------------------------------------------------------------- */
#include <vector>
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_TERMS_TO_ASSEMBLE_HH__
#define __AKANTU_TERMS_TO_ASSEMBLE_HH__
namespace
akantu
{
class
TermsToAssemble
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
TermsToAssemble
()
=
default
;
virtual
~
TermsToAssemble
()
=
default
;
class
TermToAssemble
{
public
:
TermToAssemble
(
UInt
i
,
UInt
j
)
:
_i
(
i
),
_j
(
j
),
val
(
0.
)
{}
inline
TermToAssemble
&
operator
=
(
Real
val
)
{
this
->
val
=
val
;
return
*
this
;
}
inline
TermToAssemble
operator
+=
(
Real
val
)
{
this
->
val
+=
val
;
return
*
this
;
}
inline
operator
Real
()
const
{
return
val
;
}
inline
UInt
i
()
const
{
return
_i
;
}
inline
UInt
j
()
const
{
return
_j
;
}
private
:
UInt
_i
,
_j
;
Real
val
;
};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
inline
TermToAssemble
&
operator
()(
UInt
i
,
UInt
j
)
{
terms
.
emplace_back
(
i
,
j
);
return
terms
.
back
();
}
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
private
:
using
TermsContainer
=
std
::
vector
<
TermToAssemble
>
;
public
:
using
const_terms_iterator
=
TermsContainer
::
const_iterator
;
const_terms_iterator
begin
()
const
{
return
terms
.
begin
();
}
const_terms_iterator
end
()
const
{
return
terms
.
end
();
}
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
TermsContainer
terms
;
};
}
// akantu
#endif
/* __AKANTU_TERMS_TO_ASSEMBLE_HH__ */
Event Timeline
Log In to Comment