Skip to content
Snippets Groups Projects
Commit dc91d81b authored by chantrait's avatar chantrait
Browse files

fixup! merge with develop

parent 316e85f0
Branches
No related tags found
No related merge requests found
...@@ -244,6 +244,7 @@ else() ...@@ -244,6 +244,7 @@ else()
if (PUGS_ENABLE_COSTO MATCHES "^ON$") if (PUGS_ENABLE_COSTO MATCHES "^ON$")
message(FATAL_ERROR "Could not find Costo!") message(FATAL_ERROR "Could not find Costo!")
endif() endif()
endif()
# search for HDF5 # search for HDF5
set(PUGS_ENABLE_HDF5 AUTO CACHE STRING set(PUGS_ENABLE_HDF5 AUTO CACHE STRING
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <language/utils/BinaryOperatorProcessorBuilder.hpp> #include <language/utils/BinaryOperatorProcessorBuilder.hpp>
#include <language/utils/BuiltinFunctionEmbedder.hpp> #include <language/utils/BuiltinFunctionEmbedder.hpp>
#include <language/utils/TypeDescriptor.hpp> #include <language/utils/TypeDescriptor.hpp>
#include <memory>
#include <mesh/Connectivity.hpp> #include <mesh/Connectivity.hpp>
#include <mesh/IBoundaryDescriptor.hpp> #include <mesh/IBoundaryDescriptor.hpp>
#include <mesh/IZoneDescriptor.hpp> #include <mesh/IZoneDescriptor.hpp>
...@@ -50,6 +49,8 @@ ...@@ -50,6 +49,8 @@
#include <utils/CouplingData.hpp> #include <utils/CouplingData.hpp>
#include <utils/Socket.hpp> #include <utils/Socket.hpp>
#include <memory>
SchemeModule::SchemeModule() SchemeModule::SchemeModule()
{ {
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const DiscreteFunctionVariant>>); this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const DiscreteFunctionVariant>>);
......
#ifndef ACOUSTIC_SOLVER_HPP #ifndef ACOUSTIC_SOLVER_HPP
#define ACOUSTIC_SOLVER_HPP #define ACOUSTIC_SOLVER_HPP
#include <memory> #include <memory>
#include <tuple> #include <tuple>
#include <vector> #include <vector>
......
...@@ -11,7 +11,7 @@ add_library( ...@@ -11,7 +11,7 @@ add_library(
DiscreteFunctionVectorInterpoler.cpp DiscreteFunctionVectorInterpoler.cpp
ScalarDiamondScheme.cpp ScalarDiamondScheme.cpp
VectorDiamondScheme.cpp VectorDiamondScheme.cpp
FluxingAdvectionSolver.cpp) FluxingAdvectionSolver.cpp
) )
target_link_libraries( target_link_libraries(
......
#ifndef FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP #ifndef FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP
#define FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP #define FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP
#include <language/utils/FunctionSymbolId.hpp> #include <language/utils/FunctionSymbolId.hpp>
#include <mesh/IBoundaryDescriptor.hpp> #include <mesh/IBoundaryDescriptor.hpp>
#include <scheme/IBoundaryConditionDescriptor.hpp> #include <scheme/IBoundaryConditionDescriptor.hpp>
...@@ -42,4 +43,5 @@ class FixedBoundaryConditionDescriptor : public IBoundaryConditionDescriptor ...@@ -42,4 +43,5 @@ class FixedBoundaryConditionDescriptor : public IBoundaryConditionDescriptor
~FixedBoundaryConditionDescriptor() = default; ~FixedBoundaryConditionDescriptor() = default;
}; };
#endif // FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP #endif // FIXED_BOUNDARY_CONDITION_DESCRIPTOR_HPP
#ifndef HYPERELASTIC_SOLVER_HPP #ifndef HYPERELASTIC_SOLVER_HPP
#define HYPERELASTIC_SOLVER_HPP #define HYPERELASTIC_SOLVER_HPP
#include <memory> #include <memory>
#include <tuple> #include <tuple>
#include <vector> #include <vector>
...@@ -85,4 +86,5 @@ class HyperelasticSolverHandler ...@@ -85,4 +86,5 @@ class HyperelasticSolverHandler
HyperelasticSolverHandler(const std::shared_ptr<const IMesh>& mesh); HyperelasticSolverHandler(const std::shared_ptr<const IMesh>& mesh);
}; };
#endif // HYPERELASTIC_SOLVER_HPP #endif // HYPERELASTIC_SOLVER_HPP
...@@ -43,4 +43,5 @@ class IBoundaryConditionDescriptor ...@@ -43,4 +43,5 @@ class IBoundaryConditionDescriptor
virtual ~IBoundaryConditionDescriptor() = default; virtual ~IBoundaryConditionDescriptor() = default;
}; };
#endif // I_BOUNDARY_CONDITION_DESCRIPTOR_HPP #endif // I_BOUNDARY_CONDITION_DESCRIPTOR_HPP
...@@ -28,11 +28,8 @@ target_link_libraries( ...@@ -28,11 +28,8 @@ target_link_libraries(
PugsUtils PugsUtils
${PETSC_LIBRARIES} ${PETSC_LIBRARIES}
${SLEPC_LIBRARIES} ${SLEPC_LIBRARIES}
<<<<<<< HEAD
${Costo_LIBRARIES} ${Costo_LIBRARIES}
=======
${HIGHFIVE_TARGET} ${HIGHFIVE_TARGET}
>>>>>>> develop
) )
# --------------- get git revision info --------------- # --------------- get git revision info ---------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment