Skip to content

Commit

Permalink
Update name of shared library
Browse files Browse the repository at this point in the history
  • Loading branch information
fdrmrc committed Dec 5, 2023
1 parent 877e4ac commit 3ec9a91
Show file tree
Hide file tree
Showing 47 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ IF(NOT ${deal.II_FOUND})
ENDIF()

DEAL_II_INITIALIZE_CACHED_VARIABLES()
PROJECT(Agglomeration_suite)
PROJECT(polydeal)

# Enable testing and descent into tests/ subdirectory:
ENABLE_TESTING()
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)

ADD_SUBDIRECTORY(src)
ADD_SUBDIRECTORY(examples)
ADD_SUBDIRECTORY(test/agglomeration)
ADD_SUBDIRECTORY(test/polydeal)

# ADD_SUBDIRECTORY(tests/step)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![GitHub CI](https://github.com/fdrmrc/AggloDeal/actions/workflows/tests.yml/badge.svg)
![GitHub CI](https://github.com/fdrmrc/AggloDeal/actions/workflows/indentation.yml/badge.svg)

***PolyDEAL*** is an open source project in C++ which aims to provide building block for Polygonal Discontinuous Galerkin methods, within the Finite Element library [**deal.II**](https:dealii.org).
***PolyDEAL*** is an open source project in C++ which aims to provide building blocks for the implementation of Polygonal Discontinuous Galerkin methods, within the Finite Element library [**deal.II**](https:dealii.org).


## Getting started
Expand Down
5 changes: 3 additions & 2 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# set up executable with autopilot macro:
SET(TARGET "poisson")
SET(TARGET_SRC minimal_SIP.cc)
# SET(TARGET_SRC minimal_SIP.cc)
SET(TARGET_SRC poisson.cc)
DEAL_II_INVOKE_AUTOPILOT()
TARGET_LINK_LIBRARIES(${TARGET} Agglomeration_suite)
TARGET_LINK_LIBRARIES(${TARGET} polydeal)
2 changes: 1 addition & 1 deletion examples/poisson.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Poisson<dim>::make_grid()
const auto csr_and_agglomerates =
extract_children_of_level(tree, extraction_level);

boost::geometry::index::detail::rtree::utilities::print(std::cout, tree);
// boost::geometry::index::detail::rtree::utilities::print(std::cout, tree);

const auto &agglomerates = csr_and_agglomerates.second; // vec<vec<>>
[[maybe_unused]] auto csrs = csr_and_agglomerates.first;
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# src/CMakeLists.txt

# set up shared library by hand:
ADD_LIBRARY(Agglomeration_suite SHARED agglomeration_handler.cc)
DEAL_II_SETUP_TARGET(Agglomeration_suite)
ADD_LIBRARY(polydeal SHARED agglomeration_handler.cc)
DEAL_II_SETUP_TARGET(polydeal)

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tests/support/CMakeLists.txt

SET(TEST_LIBRARIES Agglomeration_suite)
SET(TEST_LIBRARIES polydeal)
DEAL_II_PICKUP_TESTS()

set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3ec9a91

Please sign in to comment.