Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mpp
MLUQ
Commits
acb377cf
Commit
acb377cf
authored
Jul 13, 2021
by
niklas.baumgarten
Browse files
fixed linking error
parent
694b9480
Changes
3
Hide whitespace changes
Inline
Side-by-side
mluq/src/pdesolvers/CMakeLists.txt
View file @
acb377cf
...
...
@@ -2,6 +2,7 @@ add_library(PDESOLVERS STATIC
PDESolverCreator.cpp
EllipticPDESolver.cpp
TransportPDESolver.cpp
ParabolicPDESolver.cpp
assembling/elliptic/LagrangeEllipticAssemble.cpp
assembling/elliptic/MixedEllipticAssemble.cpp
assembling/elliptic/HybridEllipticAssemble.cpp
...
...
mluq/src/pdesolvers/ParabolicPDESolver.hpp
View file @
acb377cf
...
...
@@ -4,6 +4,8 @@
#include "DGReactionAssemble.hpp"
#include "PGReactionAssemble.hpp"
#include "PDESolver.hpp"
class
ParabolicPDESolver
:
public
PDESolver
{
private:
...
...
@@ -59,7 +61,7 @@ public:
IStochasticProblem
*
GetProblem
()
const
override
{
return
nullptr
;
}
void
DrawSample
(
const
SampleID
&
id
)
override
{
}
void
DrawSample
(
const
SampleID
&
id
)
override
{}
std
::
string
Name
()
const
override
{
return
"ParabolicPDESolver"
;
}
};
...
...
mluq/src/problems/CMakeLists.txt
View file @
acb377cf
add_library
(
PROBLEMS STATIC
IStochasticProblem.cpp
StochasticEllipticProblem.cpp
StochasticReactionProblem.cpp
StochasticTransportProblem.cpp
)
target_link_libraries
(
PROBLEMS GENERATORS
)
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