Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
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
amdis
amdis-core
Merge requests
!59
change AMDiS::init to Environment in BackupRestoreTest
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
change AMDiS::init to Environment in BackupRestoreTest
issue/environment_in_tests
into
master
Overview
0
Commits
1
Changes
1
Merged
Praetorius, Simon
requested to merge
issue/environment_in_tests
into
master
5 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
5d2ddcab
1 commit,
5 years ago
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
test/BackupRestoreTest.cpp
+
1
−
2
Options
@@ -89,7 +89,7 @@ void test_simplex()
int
main
(
int
argc
,
char
**
argv
)
{
AMDiS
::
init
(
argc
,
argv
);
Environment
env
(
argc
,
argv
);
std
::
string
filename
=
"test"
;
Parameters
::
set
(
"test->backup->grid"
,
filename
+
".grid"
);
@@ -131,6 +131,5 @@ int main(int argc, char** argv)
// test_simplex<Dune::AlbertaGrid<2,2>>(); // Segmentation fault
// test_simplex<Dune::FoamGrid<2,2>>(); // Segmentation fault
AMDiS
::
finalize
();
return
report_errors
();
}
Loading