Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-tectonic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
agnumpde
dune-tectonic
Commits
d7b93bea
"README.md" did not exist on "a40df4be775f84b2ac639fe92cc0df7989eadb0c"
Commit
d7b93bea
authored
7 years ago
by
Elias Pipping
Browse files
Options
Downloads
Patches
Plain Diff
[Cleanup] Remove boost::format dependency
parent
62056cfa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/one-body-problem.cc
+2
-2
2 additions, 2 deletions
src/one-body-problem.cc
with
2 additions
and
2 deletions
src/one-body-problem.cc
+
2
−
2
View file @
d7b93bea
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
#include
<boost/filesystem/operations.hpp>
#include
<boost/filesystem/operations.hpp>
#include
<boost/filesystem/path.hpp>
#include
<boost/filesystem/path.hpp>
#include
<boost/format.hpp>
#include
<dune/common/bitsetvector.hh>
#include
<dune/common/bitsetvector.hh>
#include
<dune/common/exceptions.hh>
#include
<dune/common/exceptions.hh>
...
@@ -72,7 +71,8 @@ Dune::ParameterTree getParameters(int argc, char *argv[],
...
@@ -72,7 +71,8 @@ Dune::ParameterTree getParameters(int argc, char *argv[],
fs
::
path
sharedParsetPath
(
dataDirectory
/
fs
::
path
(
sharedParsetName
));
fs
::
path
sharedParsetPath
(
dataDirectory
/
fs
::
path
(
sharedParsetName
));
Dune
::
ParameterTreeParser
::
readINITree
(
sharedParsetPath
.
string
(),
parset
);
Dune
::
ParameterTreeParser
::
readINITree
(
sharedParsetPath
.
string
(),
parset
);
std
::
string
individualParsetName
(
str
(
boost
::
format
(
"parset-%dD.cfg"
)
%
dims
));
std
::
string
individualParsetName
=
Dune
::
Fufem
::
formatString
(
"parset-%dD.cfg"
,
dims
);
fs
::
path
individualParsetPath
(
dataDirectory
/
fs
::
path
(
individualParsetName
));
fs
::
path
individualParsetPath
(
dataDirectory
/
fs
::
path
(
individualParsetName
));
Dune
::
ParameterTreeParser
::
readINITree
(
individualParsetPath
.
string
(),
parset
);
Dune
::
ParameterTreeParser
::
readINITree
(
individualParsetPath
.
string
(),
parset
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment