Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dg
dg
Commits
0256576c
Commit
0256576c
authored
Oct 20, 2016
by
Jonathan Lambrechts
Browse files
old swig does not understand c++11 map initializer
parent
792dba47
Pipeline
#1183
passed with stage
in 34 minutes and 21 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
dofContainer/dgDofContainer.h
View file @
0256576c
...
...
@@ -190,7 +190,7 @@ class dgDofContainer
/** Import a msh file in the dof container using the "NodeData" file format. 'filename' refers to the part of the file name before _COMPXX.msh */
void
importMshNodeData
(
const
std
::
string
name
,
bool
multiFile
=
true
);
/** Import all the idx and msh files listed in an idx file*/
double
importIdx
(
const
std
::
string
name
,
std
::
map
<
int
,
int
>
componentMap
=
{}
);
double
importIdx
(
const
std
::
string
name
,
std
::
map
<
int
,
int
>
componentMap
=
std
::
map
<
int
,
int
>
()
);
/** Export a function for gmsh visualization, (this dof is used as solution). If the function is a vector, export a vector field instead of the three component fields of the vector */
void
exportFunctionMsh
(
const
functor
*
fun
,
const
std
::
string
name
,
double
time
=
0.0
,
int
step
=
0
,
std
::
string
fieldname
=
""
)
const
;
/** Export a function for gmsh visualization, (this dof is used as solution). It will export a field on a physical surface*/
...
...
Write
Preview
Supports
Markdown
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