Skip to content
This repository was archived by the owner on Apr 12, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@

set( SHIVA_ENABLE_UNIT_TESTS OFF CACHE BOOL "" FORCE )
set( SHIVA_ENABLE_BENCHMARKS OFF CACHE BOOL "" FORCE )
set( SHIVA_ENABLE_EXAMPLES OFF CACHE BOOL "" FORCE )
set( SHIVA_ENABLE_BLT OFF CACHE BOOL "" FORCE )
set( SHIVA_ENABLE_CAMP OFF CACHE BOOL "" FORCE )
set( SHIVA_ENABLE_BOUNDS_CHECKS OFF CACHE BOOL "" FORCE )


add_subdirectory(Shiva)

shiva_add_code_checks( PREFIX SEMKernels
EXCLUDES "Shiva/*" )


add_subdirectory(finiteElement)
2 changes: 1 addition & 1 deletion src/Shiva
Submodule Shiva updated 69 files
+109 −75 CMakeLists.txt
+0 −46 cmake/CMakeBasics.cmake
+31 −60 cmake/Config.cmake
+1 −1 cmake/Macros.cmake
+12 −0 cmake/ShivaConfig.cmake.in
+1 −1 cmake/blt
+0 −11 cmake/shiva-config.cmake.in
+10 −10 docs/doxygen/ShivaConfig.hpp
+3 −3 hostconfigs/apple/macOS_base.cmake
+5 −1 hostconfigs/environment.cmake
+0 −0 include/.clang-format
+0 −0 include/shiva/Shiva.hpp
+4 −6 include/shiva/ShivaConfig.hpp.in
+2 −2 include/shiva/common/CArray.hpp
+3 −3 include/shiva/common/CArrayHelper.hpp
+0 −0 include/shiva/common/IndexTypes.hpp
+0 −0 include/shiva/common/LinearIndex.hpp
+1 −1 include/shiva/common/MathUtilities.hpp
+1 −1 include/shiva/common/MultiIndex.hpp
+1 −1 include/shiva/common/NestedSequenceUtilities.hpp
+1 −1 include/shiva/common/SequenceUtilities.hpp
+0 −0 include/shiva/common/ShivaErrorHandling.hpp
+5 −5 include/shiva/common/ShivaMacros.hpp
+6 −6 include/shiva/common/pmpl.hpp
+5 −5 include/shiva/common/types.hpp
+4 −4 include/shiva/discretizations/finiteElementMethod/parentElements/ParentElement.hpp
+3 −3 include/shiva/functions/bases/BasisProduct.hpp
+2 −2 include/shiva/functions/bases/LagrangeBasis.hpp
+0 −0 include/shiva/functions/quadrature/Quadrature.hpp
+1 −1 include/shiva/functions/spacing/Spacing.hpp
+0 −0 include/shiva/geometry/mapping/JacobianTransforms.hpp
+6 −6 include/shiva/geometry/mapping/LinearTransform.hpp
+3 −3 include/shiva/geometry/mapping/Scaling.hpp
+4 −4 include/shiva/geometry/mapping/UniformScaling.hpp
+4 −5 include/shiva/geometry/shapes/InterpolatedShape.hpp
+4 −4 include/shiva/geometry/shapes/NCube.hpp
+4 −4 include/shiva/geometry/shapes/NSimplex.hpp
+0 −0 include/shiva/namespaceDocumentation.hpp
+0 −0 include/uncrustify.cfg
+0 −44 src/CMakeLists.txt
+0 −58 src/common/CMakeLists.txt
+0 −31 src/discretizations/CMakeLists.txt
+0 −37 src/functions/CMakeLists.txt
+0 −45 src/geometry/CMakeLists.txt
+91 −0 tests/CMakeLists.txt
+0 −0 tests/common/CMakeLists.txt
+7 −8 tests/common/testCArray.cpp
+2 −2 tests/common/testIndexTypes.cpp
+3 −3 tests/common/testNestedSequenceUtilities.cpp
+3 −3 tests/common/testSequenceUtilities.cpp
+2 −2 tests/common/testShivaErrorHandling.cpp
+0 −0 tests/discretizations/finiteElementMethod/CMakeLists.txt
+8 −8 tests/discretizations/finiteElementMethod/testParentElement.cpp
+0 −0 tests/functions/CMakeLists.txt
+8 −8 tests/functions/testLagrangeBasis.cpp
+1 −1 tests/functions/testQuadrature.cpp
+6 −6 tests/functions/testSpacing.cpp
+0 −0 tests/geometry/mapping/CMakeLists.txt
+0 −0 tests/geometry/mapping/LinearTransformSolutions.nb
+0 −0 tests/geometry/mapping/testGeometryHelpers.hpp
+8 −8 tests/geometry/mapping/testLinearTransform.cpp
+4 −4 tests/geometry/mapping/testScaling.cpp
+4 −4 tests/geometry/mapping/testUniformScaling.cpp
+0 −0 tests/geometry/shapes/CMakeLists.txt
+8 −8 tests/geometry/shapes/testInterpolatedShape.cpp
+0 −0 tests/geometry/shapes/testInterpolatedShapeSolutions.hpp
+2 −2 tests/geometry/shapes/testNCube.cpp
+2 −2 tests/geometry/shapes/testNSimplex.cpp
+1 −1 tpl/camp
20 changes: 10 additions & 10 deletions src/finiteElement/shiva/SEMQkGLIntegralsShiva.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
#include "common/macros.hpp"
#include "common/mathUtilites.hpp"

#include "functions/bases/LagrangeBasis.hpp"
#include "functions/quadrature/Quadrature.hpp"
#include "functions/spacing/Spacing.hpp"
#include "geometry/shapes/NCube.hpp"
#include "geometry/shapes/InterpolatedShape.hpp"
#include "geometry/mapping/LinearTransform.hpp"
#include "common/ShivaMacros.hpp"
#include "common/pmpl.hpp"
#include "common/types.hpp"
#include "discretizations/finiteElementMethod/parentElements/ParentElement.hpp"
#include "shiva/functions/bases/LagrangeBasis.hpp"
#include "shiva/functions/quadrature/Quadrature.hpp"
#include "shiva/functions/spacing/Spacing.hpp"
#include "shiva/geometry/shapes/NCube.hpp"
#include "shiva/geometry/shapes/InterpolatedShape.hpp"
#include "shiva/geometry/mapping/LinearTransform.hpp"
#include "shiva/common/ShivaMacros.hpp"
#include "shiva/common/pmpl.hpp"
#include "shiva/common/types.hpp"
#include "shiva/discretizations/finiteElementMethod/parentElements/ParentElement.hpp"

#include <stdio.h>

Expand Down