Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dumux-repositories
dumux
Commits
75be3278
"README.md" did not exist on "47faae7f2f3f6bd6723dfa26ecf24dfe342c9aed"
Commit
75be3278
authored
5 years ago
by
Bernd Flemisch
Browse files
Options
Downloads
Patches
Plain Diff
[test][spline] add explanation for flag argument
parent
94d352a4
No related branches found
No related tags found
1 merge request
!1620
Feature/monotone cubic spline
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/common/spline/test_monotonecubicspline.cc
+1
-1
1 addition, 1 deletion
test/common/spline/test_monotonecubicspline.cc
with
1 addition
and
1 deletion
test/common/spline/test_monotonecubicspline.cc
+
1
−
1
View file @
75be3278
...
...
@@ -94,7 +94,7 @@ int main(int argc, char** argv)
const
auto
resultPlot
=
eval
([
&
](
const
double
x
)
{
return
spline
.
eval
(
x
);
},
plotPoints
);
const
auto
resultDerivPlot
=
eval
([
&
](
const
double
x
)
{
return
spline
.
evalDerivative
(
x
);
},
plotPoints
);
Dumux
::
GnuplotInterface
<
double
>
gnuplot
(
false
);
Dumux
::
GnuplotInterface
<
double
>
gnuplot
(
/*persist=*/
false
);
gnuplot
.
addDataSetToPlot
(
plotPoints
,
refPlot
,
"exp_reference"
);
gnuplot
.
addDataSetToPlot
(
plotPoints
,
refDerivPlot
,
"exp_reference_derivative"
);
gnuplot
.
addDataSetToPlot
(
plotPoints
,
resultPlot
,
"monotspline"
);
...
...
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