Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
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
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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-solvers
Commits
8e53f1d0
Commit
8e53f1d0
authored
11 years ago
by
Elias Pipping
Committed by
pipping
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
kill src/
[[Imported from SVN: r12932]]
parent
57e522d0
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.am
+1
-1
1 addition, 1 deletion
Makefile.am
configure.ac
+1
-2
1 addition, 2 deletions
configure.ac
src/Makefile.am
+0
-19
0 additions, 19 deletions
src/Makefile.am
src/dune_solvers.cc
+0
-27
0 additions, 27 deletions
src/dune_solvers.cc
with
2 additions
and
49 deletions
Makefile.am
+
1
−
1
View file @
8e53f1d0
...
...
@@ -3,7 +3,7 @@
# we need the module file to be able to build via dunecontrol
EXTRA_DIST
=
dune.module
SUBDIRS
=
src
m4 dune
SUBDIRS
=
m4 dune
if
BUILD_DOCS
SUBDIRS
+=
doc
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
2
View file @
8e53f1d0
...
...
@@ -3,7 +3,7 @@
AC_PREREQ(2.50)
DUNE_AC_INIT # gets module version from dune.module file
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([
src/
dune
_
solvers.
cc
])
AC_CONFIG_SRCDIR([dune
-
solvers.
pc.in
])
AC_CONFIG_HEADERS([config.h])
...
...
@@ -18,7 +18,6 @@ LIBS="$DUNE_LIBS"
AC_CONFIG_FILES([
Makefile
doc/doxygen/Doxyfile
src/Makefile
dune/Makefile
dune/solvers/Makefile
dune/solvers/common/Makefile
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
deleted
100644 → 0
+
0
−
19
View file @
57e522d0
SUBDIRS
=
noinst_PROGRAMS
=
dune_solvers
dune_solvers_SOURCES
=
dune_solvers.cc
dune_solvers_CXXFLAGS
=
$(
MPI_CPPFLAGS
)
$(
UG_CPPFLAGS
)
$(
AMIRAMESH_CPPFLAGS
)
$(
ALBERTA_CPPFLAGS
)
$(
ALU_CPPFLAGS
)
dune_solvers_LDADD
=
$(
MPI_LDFLAGS
)
$(
ALBERTA_LDFLAGS
)
$(
ALBERTA_LIBS
)
$(
ALU_LIBS
)
$(
AMIRAMESH_LDFLAGS
)
$(
AMIRAMESH_LIBS
)
$(
UG_LDFLAGS
)
$(
UG_LIBS
)
$(
MPI_LDFLAGS
)
$(
DUNE_LDFLAGS
)
$(
DUNE_LIBS
)
# don't follow the full GNU-standard
# we need automake 1.5
AUTOMAKE_OPTIONS
=
foreign 1.5
# pass most important options when "make distcheck" is used
DISTCHECK_CONFIGURE_FLAGS
=
--with-dune-common
=
$(
DUNE_COMMON_ROOT
)
--with-dune-grid
=
$(
DUNE_GRID_ROOT
)
--with-dune-istl
=
$(
DUNE_ISTL_ROOT
)
CXX
=
"
$(
CXX
)
"
CC
=
"
$(
CC
)
"
include
$(top_srcdir)/am/global-rules
This diff is collapsed.
Click to expand it.
src/dune_solvers.cc
deleted
100644 → 0
+
0
−
27
View file @
57e522d0
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include
<iostream>
#include
<dune/common/parallel/mpihelper.hh>
// An initializer of MPI
#include
"dune/common/exceptions.hh"
// We use exceptions
int
main
(
int
argc
,
char
**
argv
)
{
try
{
//Maybe initialize Mpi
Dune
::
MPIHelper
&
helper
=
Dune
::
MPIHelper
::
instance
(
argc
,
argv
);
std
::
cout
<<
"Hello World! This is dune/solvers."
<<
std
::
endl
;
if
(
Dune
::
MPIHelper
::
isFake
)
std
::
cout
<<
"This is a sequential program."
<<
std
::
endl
;
else
std
::
cout
<<
"I am rank "
<<
helper
.
rank
()
<<
" of "
<<
helper
.
size
()
<<
" processes!"
<<
std
::
endl
;
return
0
;
}
catch
(
Dune
::
Exception
&
e
){
std
::
cerr
<<
"Dune reported error: "
<<
e
<<
std
::
endl
;
}
catch
(...){
std
::
cerr
<<
"Unknown exception thrown!"
<<
std
::
endl
;
}
}
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