Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MoReFEM
CoreLibrary
MoReFEM
Commits
513f84ea
Commit
513f84ea
authored
Apr 30, 2015
by
GILLES Sebastien
Browse files
#531
Add comments.
parent
2ebb42f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Sources/FiniteElement/Operators/GlobalVariationalOperator/GlobalVariationalOperator.hxx
View file @
513f84ea
...
...
@@ -390,10 +390,14 @@ namespace HappyHeart
static_cast
<
const
DerivedT
&>
(
*
this
).
SupplArgumentsComputeEltArray
(
local_operator
,
local_felt_space
,
std
::
move
(
additional_arguments
));
// Basically below we call:
// local_operator.ComputeEltArray(* argument from tuple *);
// Way to do this though is very advanced C++ which is hidden inside function from Tuple namespace.
Utilities
::
Tuple
::
CallMethodWithArgumentsFromTuple
<
void
>
(
local_operator
,
&
LocalVariationalOperatorT
::
template
ComputeEltArray
<
LocalVariationalOperatorT
::
GetMatrixVectorNature
()>,
compute_elt_array_variadic_arguments
);
}
...
...
Sources/FiniteElement/Operators/GlobalVariationalOperatorInstances/LinearForm/TransientSource.hpp
View file @
513f84ea
...
...
@@ -119,9 +119,6 @@ namespace HappyHeart
double
time
,
const
Domain
&
domain
=
Domain
())
const
;
// void Assemble(double coefficient, GlobalVector& global_vector, double time,
// const Domain& domain = Domain()) const;
private:
...
...
Sources/FiniteElement/Operators/GlobalVariationalOperatorInstances/LinearForm/TransientSource.hxx
View file @
513f84ea
...
...
@@ -27,17 +27,7 @@ namespace HappyHeart
domain
,
time
);
}
//
// inline void TransientSource::Assemble(double coefficient,
// GlobalVector& global_vector,
// double time,
// const Domain& domain) const
// {
// return Parent::AssembleWithVariadicArguments(coefficient, global_vector, domain, time);
// }
//
inline
std
::
tuple
<
double
>
TransientSource
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment