Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
067ba67d
Commit
067ba67d
authored
Jun 28, 2010
by
Naumann, Andreas
Browse files
initialization flag of scalar implicit mesh was missing, added todo file for gui
parent
f5016830
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/ProblemImplicit.cc
View file @
067ba67d
...
...
@@ -181,8 +181,10 @@ namespace AMDiS {
GET_PARAMETER
(
0
,
path
+
"->macro file name"
,
&
meshFilename
);
std
::
string
serFilename
(
""
);
GET_PARAMETER
(
0
,
path
+
"->serialization file name"
,
&
serFilename
);
if
(
meshFilename
.
length
()
>
0
)
if
(
meshFilename
.
length
()
>
0
)
{
mesh
->
setName
(
path
);
readImplMesh
=
true
;
}
else
if
(
serFilename
.
length
()
>
0
)
{
//INFO(5,1)("loading implicit mesh %s \n", serFilename.c_str());
...
...
@@ -206,6 +208,8 @@ namespace AMDiS {
bool
ProblemImplicitScal
::
createImplicitMesh
()
{
FUNCNAME
(
"ProblemImplicitScal::createImplicitMesh()"
);
INFO
(
5
,
1
)(
"setting implicit mesh
\n
"
);
if
(
!
isImplicitMesh
())
return
false
;
std
::
string
path
=
name
+
"->implicit mesh->"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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