Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
0d58e0b6
Commit
0d58e0b6
authored
Sep 30, 2018
by
Praetorius, Simon
Browse files
corrected virtual function error
parent
4ee463b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
0d58e0b6
---
before_script
:
-
source ~/toolchain
-
export CMAKE_FLAGS="-DCMAKE_C_COMPILER='$CC' -DCMAKE_CXX_COMPILER='$CXX'"
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
debian:10 gcc-8-17
:
image
:
registry.dune-project.org/docker/ci/dune:2.6-debian-10-gcc-8-17
script
:
-
duneci-standard-test
-
dunecontrol --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
-
dunecontrol --current make examples
debian:10 clang-6-libcpp-17
:
image
:
registry.dune-project.org/docker/ci/dune:2.6-debian-10-clang-6-libcpp-17
script
:
-
duneci-standard-test
-
dunecontrol --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
-
dunecontrol --current make examples
debian:9 gcc-6-14
:
image
:
registry.dune-project.org/docker/ci/dune:2.6-debian-9-gcc-6-14
script
:
-
duneci-standard-test
-
dunecontrol --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
-
dunecontrol --current make examples
ubuntu:18.04 clang-6-17
:
image
:
registry.dune-project.org/docker/ci/dune:2.6-ubuntu-18.04-clang-6-17
script
:
-
duneci-standard-test
-
dunecontrol --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
-
dunecontrol --current make examples
src/amdis/linear_algebra/istl/ISTL_Preconditioner.hpp
View file @
0d58e0b6
...
...
@@ -9,6 +9,7 @@ namespace AMDiS
template
<
class
Matrix
,
class
VectorX
,
class
VectorB
>
struct
ISTLPreconInterface
{
virtual
~
ISTLPreconInterface
()
=
default
;
using
PreconBase
=
Dune
::
Preconditioner
<
VectorX
,
VectorB
>
;
virtual
std
::
unique_ptr
<
PreconBase
>
create
(
Matrix
const
&
matrix
)
const
=
0
;
};
...
...
src/amdis/linear_algebra/mtl/UmfpackRunner.hpp
View file @
0d58e0b6
...
...
@@ -46,9 +46,6 @@ namespace AMDiS
Parameters
::
get
(
prefix
+
"->alloc init"
,
allocInit_
);
}
/// Destructor
~
UmfpackRunnerBase
()
=
default
;
/// Implementation of \ref RunnerBase::solve()
virtual
int
solve
(
Matrix
const
&
A
,
Vector
&
x
,
Vector
const
&
b
,
SolverInfo
&
solverInfo
)
override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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