Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Bauer
waLBerla
Commits
7c3d7714
Commit
7c3d7714
authored
Mar 09, 2021
by
Dominik Thoennes
Browse files
some fixes
parent
2053db2f
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/core/math/CMakeLists.txt
View file @
7c3d7714
...
...
@@ -42,4 +42,17 @@ target_sources( core
Vector2.h
Vector3.h
extern/exprtk.h
equation_system/Equation.cpp
equation_system/Equation.h
equation_system/EquationParser.cpp
equation_system/EquationParser.h
equation_system/EquationSystem.cpp
equation_system/EquationSystem.h
equation_system/FwdEquation.h
equation_system/FwdOperator.h
equation_system/FwdVariable.h
equation_system/Operator.cpp
equation_system/Operator.h
equation_system/Variable.cpp
equation_system/Variable.h
)
src/core/math/all.h
View file @
7c3d7714
...
...
@@ -48,5 +48,3 @@
#include
"Utility.h"
#include
"Vector2.h"
#include
"Vector3.h"
#include
"equation_system/all.h"
src/core/math/equation_system/all.h
deleted
100644 → 0
View file @
2053db2f
//======================================================================================================================
//
// This file is part of waLBerla. waLBerla is free software: you can
// redistribute it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// waLBerla is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License along
// with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
//
//! \file all.h
//! \ingroup core
//! \author Florian Schornbaum <florian.schornbaum@fau.de>
//! \brief Collective header file for module core
//
//======================================================================================================================
#pragma once
#include
"Equation.h"
#ifdef WALBERLA_BUILD_WITH_BOOST
#include
"EquationParser.h"
#include
"EquationSystem.h"
#endif
#include
"Operator.h"
#include
"Variable.h"
\ No newline at end of file
tests/core/CMakeLists.txt
View file @
7c3d7714
...
...
@@ -90,8 +90,9 @@ waLBerla_execute_test( NAME GenericAABBTest )
if
(
WALBERLA_BUILD_WITH_BOOST
)
waLBerla_compile_test
(
FILES math/PhysicalCheckTest.cpp DEPENDS stencil
)
waLBerla_execute_test
(
NAME PhysicalCheckTest
COMMAND $<TARGET_FILE:PhysicalCheckTest>
${
CMAKE_CURRENT_SOURCE_DIR
}
/math/PhysicalCheckTestInput.prm
)
waLBerla_execute_test
(
NAME PhysicalCheckTest
COMMAND $<TARGET_FILE:PhysicalCheckTest>
${
CMAKE_CURRENT_SOURCE_DIR
}
/math/PhysicalCheckTestInput.prm
DEPENDS_ON_TARGETS PhysicalCheckTest
)
endif
(
WALBERLA_BUILD_WITH_BOOST
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment