]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
14 months agoAvoid a warning about an unused variable.
Wolfgang Bangerth [Wed, 12 Jul 2023 19:09:18 +0000 (13:09 -0600)]
Avoid a warning about an unused variable.

14 months agoKeep track of constraints we have already determined are finalized.
Wolfgang Bangerth [Tue, 11 Jul 2023 05:08:16 +0000 (23:08 -0600)]
Keep track of constraints we have already determined are finalized.

14 months agoRestructure the loop in AffineConstraints::close().
Wolfgang Bangerth [Tue, 11 Jul 2023 02:16:50 +0000 (20:16 -0600)]
Restructure the loop in AffineConstraints::close().

14 months agoMerge pull request #15725 from tamiko/compilation_fix
Matthias Maier [Wed, 12 Jul 2023 14:28:46 +0000 (14:28 +0000)]
Merge pull request #15725 from tamiko/compilation_fix

bundled/tbb: fix compilation with gcc-13

14 months agoMerge pull request #15683 from luca-heltai/add_simplex_fe_names
Martin Kronbichler [Wed, 12 Jul 2023 11:49:09 +0000 (13:49 +0200)]
Merge pull request #15683 from luca-heltai/add_simplex_fe_names

Make sure get_fe_by_name works for simplices.

14 months agoMerge pull request #15713 from bangerth/affine-constraints-10
Martin Kronbichler [Wed, 12 Jul 2023 11:46:35 +0000 (13:46 +0200)]
Merge pull request #15713 from bangerth/affine-constraints-10

Some more small AffineConstraints code improvements.

14 months agobundled/tbb: fix compilation with gcc-13 15725/head
Matthias Maier [Wed, 12 Jul 2023 06:02:19 +0000 (01:02 -0500)]
bundled/tbb: fix compilation with gcc-13

This fixes compilation with gcc-13 that complains about the unqualified
identifier "task" changing meaning: it first refers to `class task` in
the offending line and later is defined as a member function `task()`:
```
FAILED: bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o
/usr/bin/c++ -DDO_ITT_NOTIFY -DNDEBUG -DUSE_PTHREAD -D__TBB_BUILD=1 -I/home/tamiko/workspace/dealii/build/bundled/tbb-2018_U2/src -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include -I/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/rml/include -I/home/tamiko/workspace/dealii/build/include -I/home/tamiko/workspace/dealii/include -std=c++17 -fPIC -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -Wno-parentheses -Wno-unused-local-typedefs -Wno-implicit-fallthrough -Wno-stringop-overflow -Wno-deprecated-copy -fopenmp-simd -flifetime-dse=1 -O2 -funroll-loops -funroll-all-loops -fstrict-aliasing -MD -MT bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o -MF bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o.d -o bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_release.dir/tbb/arena.cpp.o -c /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/arena.cpp
In file included from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/scheduler_common.h:43,
                 from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/scheduler.h:24,
                 from /home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/tbb/arena.cpp:23:
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:266:20: error: declaration of ‘tbb::task& tbb::internal::task_prefix::task()’ changes meaning of
 task’ [-Wchanges-meaning]
  266 |         tbb::task& task() {return *reinterpret_cast<tbb::task*>(this+1);}
      |                    ^~~~
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:225:9: note: used here to mean ‘class tbb::task’
  225 |         task* next_offloaded;
      |         ^~~~
/home/tamiko/workspace/dealii/bundled/tbb-2018_U2/src/../include/tbb/task.h:33:7: note: declared here
   33 | class task;
      |       ^~~~
```

14 months agoMerge pull request #15719 from tamiko/print_summary
Matthias Maier [Wed, 12 Jul 2023 03:24:45 +0000 (03:24 +0000)]
Merge pull request #15719 from tamiko/print_summary

Testsuite: let run_testsuite() print a summary

14 months agoMerge pull request #15721 from tjhei/test-examples2
Matthias Maier [Tue, 11 Jul 2023 23:28:27 +0000 (23:28 +0000)]
Merge pull request #15721 from tjhei/test-examples2

tests/examples/ fix script return value

14 months agotests/examples/ fix script return value 15721/head
Timo Heister [Tue, 11 Jul 2023 20:03:42 +0000 (16:03 -0400)]
tests/examples/ fix script return value

The target update_diffs fails for me without the explicit ``exit 0``

14 months agoMerge pull request #15717 from lethe-cfd/fix_step_68_perf_warnings
Daniel Arndt [Tue, 11 Jul 2023 19:27:56 +0000 (15:27 -0400)]
Merge pull request #15717 from lethe-cfd/fix_step_68_perf_warnings

14 months agoMerge pull request #15718 from bergbauer/empty_quadrature
Daniel Arndt [Tue, 11 Jul 2023 19:27:01 +0000 (15:27 -0400)]
Merge pull request #15718 from bergbauer/empty_quadrature

14 months agoTestsuite: exclude configure warnings from "failure" condition 15719/head
Matthias Maier [Tue, 11 Jul 2023 18:16:47 +0000 (13:16 -0500)]
Testsuite: exclude configure warnings from "failure" condition

14 months agoTestsuite: add more emojis
Matthias Maier [Tue, 11 Jul 2023 18:13:04 +0000 (13:13 -0500)]
Testsuite: add more emojis

14 months agoTestsuite: also report status and summary
Matthias Maier [Tue, 11 Jul 2023 16:34:02 +0000 (11:34 -0500)]
Testsuite: also report status and summary

14 months agoTestsuite: print summary also for SKIP_SUBMISSION=true
Matthias Maier [Tue, 11 Jul 2023 15:53:21 +0000 (10:53 -0500)]
Testsuite: print summary also for SKIP_SUBMISSION=true

14 months agoTestsuite: also record revision and start to report on status
Matthias Maier [Tue, 11 Jul 2023 15:48:44 +0000 (10:48 -0500)]
Testsuite: also record revision and start to report on status

14 months agoTestsuite: Print submission URL after successful upload in run_testsuite.cmake
Matthias Maier [Tue, 11 Jul 2023 06:13:09 +0000 (01:13 -0500)]
Testsuite: Print submission URL after successful upload in run_testsuite.cmake

14 months agoUpdate tests/performance/timing_step_68.cc 15717/head
Bruno Blais [Tue, 11 Jul 2023 14:56:40 +0000 (10:56 -0400)]
Update tests/performance/timing_step_68.cc

Co-authored-by: Timo Heister <timo.heister@gmail.com>
14 months agoMerge pull request #15716 from tamiko/remove_run_memcheck
Timo Heister [Tue, 11 Jul 2023 13:34:48 +0000 (09:34 -0400)]
Merge pull request #15716 from tamiko/remove_run_memcheck

CMake: remove support for ctest_memcheck() and run_memorycheck.cmake

14 months agoFix warnings + remove uncessary mpi call
Bruno Blais [Tue, 11 Jul 2023 11:58:38 +0000 (07:58 -0400)]
Fix warnings + remove uncessary mpi call

14 months agoempty() function for Quadrature 15718/head
Maximilian Bergbauer [Tue, 11 Jul 2023 11:09:24 +0000 (13:09 +0200)]
empty() function for Quadrature

14 months agoMerge pull request #15687 from bangerth/consistency
Martin Kronbichler [Tue, 11 Jul 2023 08:25:44 +0000 (10:25 +0200)]
Merge pull request #15687 from bangerth/consistency

Assert some basic mesh consistency notions.

14 months agoCMake: remove support for ctest_memcheck() and run_memorycheck.cmake 15716/head
Matthias Maier [Tue, 11 Jul 2023 05:59:32 +0000 (00:59 -0500)]
CMake: remove support for ctest_memcheck() and run_memorycheck.cmake

Instead of using valgrind it is much better to use compiler sanitizers
such as "-fsanitize=address,undefined,leak" with clang.

14 months agoMerge pull request #15709 from masterleinad/restrict_nox_tests
Martin Kronbichler [Tue, 11 Jul 2023 05:24:36 +0000 (07:24 +0200)]
Merge pull request #15709 from masterleinad/restrict_nox_tests

Restrict tests requiring NOX

14 months agoMerge pull request #15711 from bangerth/nox
Martin Kronbichler [Tue, 11 Jul 2023 05:23:38 +0000 (07:23 +0200)]
Merge pull request #15711 from bangerth/nox

Recommend NOX for building Trilinos.

14 months agoMerge pull request #15707 from tamiko/proper_cell_status_deprecation
Matthias Maier [Tue, 11 Jul 2023 04:34:46 +0000 (04:34 +0000)]
Merge pull request #15707 from tamiko/proper_cell_status_deprecation

Triangulation::CellStatus: provide proper compatibility type

14 months agoTriangulation::CellStatus: add compatibility identifiers for CellStatus::* members 15707/head
Matthias Maier [Tue, 11 Jul 2023 00:02:48 +0000 (19:02 -0500)]
Triangulation::CellStatus: add compatibility identifiers for CellStatus::* members

14 months agoTriangulation: include compatibility CellStatus via using instead of defining a new...
Matthias Maier [Mon, 10 Jul 2023 20:40:35 +0000 (15:40 -0500)]
Triangulation: include compatibility CellStatus via using instead of defining a new enum

14 months agoCellStatus: provide old name aliases
Matthias Maier [Mon, 10 Jul 2023 20:40:17 +0000 (15:40 -0500)]
CellStatus: provide old name aliases

14 months agoSome more small AffineConstraints code improvements. 15713/head
Wolfgang Bangerth [Mon, 10 Jul 2023 23:23:53 +0000 (17:23 -0600)]
Some more small AffineConstraints code improvements.

14 months agoRecommend NOX for building Trilinos. 15711/head
Wolfgang Bangerth [Mon, 10 Jul 2023 22:36:50 +0000 (16:36 -0600)]
Recommend NOX for building Trilinos.

14 months agoRestrict tests requiring NOX 15709/head
Daniel Arndt [Mon, 10 Jul 2023 21:55:24 +0000 (17:55 -0400)]
Restrict tests requiring NOX

14 months agoMerge pull request #15704 from masterleinad/guard_nox
Wolfgang Bangerth [Mon, 10 Jul 2023 20:40:33 +0000 (14:40 -0600)]
Merge pull request #15704 from masterleinad/guard_nox

Guard NOX support in include/deal.II/numerics/nonlinear.h

14 months agoMerge pull request #15697 from RichardYCJ/doc_name_fix
Daniel Arndt [Mon, 10 Jul 2023 17:28:32 +0000 (13:28 -0400)]
Merge pull request #15697 from RichardYCJ/doc_name_fix

14 months agoGuard NOX support in include/deal.II/numerics/nonlinear.h 15704/head
Daniel Arndt [Mon, 10 Jul 2023 15:32:14 +0000 (11:32 -0400)]
Guard NOX support in include/deal.II/numerics/nonlinear.h

14 months agoMerge pull request #15702 from pcafrica/fix_doc
Daniel Arndt [Mon, 10 Jul 2023 14:37:46 +0000 (10:37 -0400)]
Merge pull request #15702 from pcafrica/fix_doc

14 months agoFix doc typo 15702/head
Pasquale Africa [Mon, 10 Jul 2023 14:23:16 +0000 (14:23 +0000)]
Fix doc typo

14 months agofix indent by check_indentation.sh 15697/head
Chengjiang Yin [Mon, 10 Jul 2023 14:20:28 +0000 (22:20 +0800)]
fix indent by check_indentation.sh

14 months agoremove some incorrect subtitle numbers
Chengjiang Yin [Mon, 10 Jul 2023 05:33:25 +0000 (13:33 +0800)]
remove some incorrect subtitle numbers

14 months agoAdditional incorrect doxygen-style brackets
Chengjiang Yin [Mon, 10 Jul 2023 02:58:02 +0000 (10:58 +0800)]
Additional incorrect doxygen-style brackets

14 months agoFix incorrect and missing doxygen-style name brackets
Chengjiang Yin [Sun, 9 Jul 2023 12:48:37 +0000 (20:48 +0800)]
Fix incorrect and missing doxygen-style name brackets

14 months agoMerge pull request #15688 from bangerth/vsv-final
Daniel Arndt [Mon, 10 Jul 2023 12:41:21 +0000 (08:41 -0400)]
Merge pull request #15688 from bangerth/vsv-final

14 months agoMerge pull request #15700 from peterrum/instantiate_cellattacheddata
Martin Kronbichler [Mon, 10 Jul 2023 11:43:56 +0000 (13:43 +0200)]
Merge pull request #15700 from peterrum/instantiate_cellattacheddata

Instantiate CellAttachedData and CellAttachedDataSerializer

14 months agoMerge pull request #15699 from bangerth/c-str
Martin Kronbichler [Mon, 10 Jul 2023 09:19:28 +0000 (11:19 +0200)]
Merge pull request #15699 from bangerth/c-str

Address more unnecessary calls to .c_str().

14 months agoInstantiate CellAttachedData and CellAttachedDataSerializer 15700/head
Peter Munch [Mon, 10 Jul 2023 08:37:37 +0000 (10:37 +0200)]
Instantiate CellAttachedData and CellAttachedDataSerializer

14 months agoMerge pull request #15695 from bangerth/manifold
Martin Kronbichler [Mon, 10 Jul 2023 07:20:02 +0000 (09:20 +0200)]
Merge pull request #15695 from bangerth/manifold

Minor doc update in manifold.cc.

14 months agoMake input arguments 'const'. 15688/head
Wolfgang Bangerth [Sun, 9 Jul 2023 04:53:09 +0000 (22:53 -0600)]
Make input arguments 'const'.

14 months agoAdd a changelog entry.
Wolfgang Bangerth [Thu, 6 Jul 2023 13:16:34 +0000 (07:16 -0600)]
Add a changelog entry.

14 months agoRemove class VectorSpaceVector.
Wolfgang Bangerth [Thu, 6 Jul 2023 13:12:11 +0000 (07:12 -0600)]
Remove class VectorSpaceVector.

14 months agoFix a misplaced forward declaration.
Wolfgang Bangerth [Mon, 10 Jul 2023 06:12:08 +0000 (00:12 -0600)]
Fix a misplaced forward declaration.

14 months agoAddress more unnecessary calls to .c_str(). 15699/head
Wolfgang Bangerth [Mon, 10 Jul 2023 06:06:41 +0000 (00:06 -0600)]
Address more unnecessary calls to .c_str().

14 months agoMinor doc update in manifold.cc. 15695/head
Wolfgang Bangerth [Mon, 10 Jul 2023 04:55:52 +0000 (22:55 -0600)]
Minor doc update in manifold.cc.

14 months agoMerge pull request #15694 from bangerth/fstream
Matthias Maier [Mon, 10 Jul 2023 04:10:40 +0000 (04:10 +0000)]
Merge pull request #15694 from bangerth/fstream

std::[io]fstream can now deal with std::string for filenames.

14 months agostd::[io]fstream can now deal with std::string for filenames. 15694/head
Wolfgang Bangerth [Sun, 9 Jul 2023 23:00:24 +0000 (17:00 -0600)]
std::[io]fstream can now deal with std::string for filenames.

14 months agoMerge pull request #15576 from pcafrica/serialization_tria_base
Peter Munch [Sun, 9 Jul 2023 18:57:14 +0000 (20:57 +0200)]
Merge pull request #15576 from pcafrica/serialization_tria_base

Unified interface for serializing triangulations.

14 months agoMerge pull request #15686 from bangerth/create-t
Luca Heltai [Sun, 9 Jul 2023 17:05:28 +0000 (19:05 +0200)]
Merge pull request #15686 from bangerth/create-t

Make sure we always generate consistently oriented meshes.

14 months agoAssert some basic mesh consistency notions. 15687/head
Wolfgang Bangerth [Sun, 9 Jul 2023 01:18:13 +0000 (19:18 -0600)]
Assert some basic mesh consistency notions.

14 months agoMerge pull request #15610 from tjhei/taskflow-3.6.0
Matthias Maier [Sun, 9 Jul 2023 02:59:38 +0000 (02:59 +0000)]
Merge pull request #15610 from tjhei/taskflow-3.6.0

bundle taskflow 3.6.0

14 months agoMerge pull request #15652 from tamiko/update_github_runners
Matthias Maier [Sun, 9 Jul 2023 02:56:00 +0000 (02:56 +0000)]
Merge pull request #15652 from tamiko/update_github_runners

github: update linux runners

14 months agoMake sure we always generate consistently oriented meshes. 15686/head
Wolfgang Bangerth [Sat, 8 Jul 2023 22:50:44 +0000 (16:50 -0600)]
Make sure we always generate consistently oriented meshes.

14 months agoMerge pull request #15684 from tamiko/master
Matthias Maier [Sat, 8 Jul 2023 20:45:28 +0000 (20:45 +0000)]
Merge pull request #15684 from tamiko/master

CMake: avoid "binding to none" for performance tests

14 months agoMerge pull request #15667 from bangerth/vsv-rwvector
Daniel Arndt [Sat, 8 Jul 2023 19:47:48 +0000 (15:47 -0400)]
Merge pull request #15667 from bangerth/vsv-rwvector

14 months agoMerge pull request #15677 from sebproell/kinsol-custom-setup
Wolfgang Bangerth [Sat, 8 Jul 2023 18:17:35 +0000 (12:17 -0600)]
Merge pull request #15677 from sebproell/kinsol-custom-setup

KINSOL: allow for custom setup

14 months agoCMake: avoid "binding to none" for performance tests 15684/head
Matthias Maier [Sat, 8 Jul 2023 14:39:42 +0000 (09:39 -0500)]
CMake: avoid "binding to none" for performance tests

It turns out that this change introduces a lot of noise. Let us thus not
override the mpi binding policy if we already run exclusively.

14 months agoMerge pull request #15682 from bangerth/array
Peter Munch [Sat, 8 Jul 2023 12:43:12 +0000 (14:43 +0200)]
Merge pull request #15682 from bangerth/array

Replace use of C-style array by std::array.

14 months agoKINSOL: allow for custom setup 15677/head
Sebastian Proell [Fri, 7 Jul 2023 14:12:40 +0000 (16:12 +0200)]
KINSOL: allow for custom setup

14 months agoMake sure get_fe_by_name works for simplices. 15683/head
Luca Heltai [Sat, 8 Jul 2023 09:12:38 +0000 (11:12 +0200)]
Make sure get_fe_by_name works for simplices.

14 months agoReplace use of C-style array by std::array in a second place. 15682/head
Wolfgang Bangerth [Sat, 8 Jul 2023 06:26:06 +0000 (00:26 -0600)]
Replace use of C-style array by std::array in a second place.

14 months agoReplace use of C-style array by std::array.
Wolfgang Bangerth [Sat, 8 Jul 2023 06:21:13 +0000 (00:21 -0600)]
Replace use of C-style array by std::array.

14 months agoPythonWrappers: fall back to Release if Debug is unavailable 15652/head
Matthias Maier [Sat, 8 Jul 2023 04:40:45 +0000 (23:40 -0500)]
PythonWrappers: fall back to Release if Debug is unavailable

14 months agogithub: linux/serial: sanitize python environment
Matthias Maier [Wed, 5 Jul 2023 02:49:52 +0000 (21:49 -0500)]
github: linux/serial: sanitize python environment

14 months agoMerge pull request #15681 from gassmoeller/update_cmake_documentation
Wolfgang Bangerth [Sat, 8 Jul 2023 05:20:42 +0000 (23:20 -0600)]
Merge pull request #15681 from gassmoeller/update_cmake_documentation

Update cmake variable documentation

14 months agoQuick tests: avoid -Wunused-variable
Matthias Maier [Wed, 5 Jul 2023 02:36:17 +0000 (21:36 -0500)]
Quick tests: avoid -Wunused-variable

14 months agogithub: reenable runners on push
Matthias Maier [Tue, 4 Jul 2023 22:25:06 +0000 (17:25 -0500)]
github: reenable runners on push

14 months agogithub: serial: increase output verbosity
Matthias Maier [Sat, 8 Jul 2023 03:22:22 +0000 (22:22 -0500)]
github: serial: increase output verbosity

14 months agogithub: update intel oneapi runner
Matthias Maier [Tue, 4 Jul 2023 22:14:13 +0000 (17:14 -0500)]
github: update intel oneapi runner

14 months agogithub: update parallel runner
Matthias Maier [Tue, 4 Jul 2023 21:46:10 +0000 (16:46 -0500)]
github: update parallel runner

 - rename to linux parallel debug
 - also configure example and quick_tests

14 months agogithub: update serial linux runner
Matthias Maier [Tue, 4 Jul 2023 21:05:01 +0000 (16:05 -0500)]
github: update serial linux runner

 - bump to Ubuntu 22.04
 - enable examples and quick tests

14 months agoMerge pull request #15678 from peterrum/orienatation_simplex_dg
Wolfgang Bangerth [Sat, 8 Jul 2023 04:11:12 +0000 (22:11 -0600)]
Merge pull request #15678 from peterrum/orienatation_simplex_dg

Fix face orientation

14 months agoUpdate cmake variable documentation 15681/head
Rene Gassmoeller [Fri, 7 Jul 2023 23:41:39 +0000 (16:41 -0700)]
Update cmake variable documentation

14 months agoMove CellAttachedDataSerializer to internal namespace 15576/head
Pasquale Africa [Tue, 4 Jul 2023 16:02:14 +0000 (16:02 +0000)]
Move CellAttachedDataSerializer to internal namespace

14 months agoDeprecate Triangulation<dim, spacedim>::CellStatus
Pasquale Africa [Mon, 3 Jul 2023 19:51:46 +0000 (19:51 +0000)]
Deprecate Triangulation<dim, spacedim>::CellStatus

14 months agoImplement DataTransfer for disabled MPI support
Pasquale Africa [Sun, 2 Jul 2023 21:18:57 +0000 (21:18 +0000)]
Implement DataTransfer for disabled MPI support

14 months agoMove CellAttachedData and DataTransfer to Triangulation base class
Pasquale Africa [Sat, 1 Jul 2023 19:08:49 +0000 (19:08 +0000)]
Move CellAttachedData and DataTransfer to Triangulation base class

14 months agoMerge pull request #15679 from bangerth/parallel
Matthias Maier [Fri, 7 Jul 2023 23:06:47 +0000 (23:06 +0000)]
Merge pull request #15679 from bangerth/parallel

Use parallel::apply_to_subranges().

14 months agoMerge pull request #15671 from masterleinad/avoid_const_return_type
Wolfgang Bangerth [Fri, 7 Jul 2023 22:20:20 +0000 (16:20 -0600)]
Merge pull request #15671 from masterleinad/avoid_const_return_type

Avoid const return type in functions

14 months agoMerge pull request #15641 from masterleinad/even_more_clang_tidy
Wolfgang Bangerth [Fri, 7 Jul 2023 22:19:29 +0000 (16:19 -0600)]
Merge pull request #15641 from masterleinad/even_more_clang_tidy

Fix some more clang-tidy findings

14 months agoMerge pull request #15672 from masterleinad/deprecated_implciit_conversions_of_masks
Wolfgang Bangerth [Fri, 7 Jul 2023 18:26:39 +0000 (12:26 -0600)]
Merge pull request #15672 from masterleinad/deprecated_implciit_conversions_of_masks

Introduce DEAL_II[_DEPRECATED_EARLY]_WITH_COMMENT

14 months agoUse parallel::apply_to_subranges(). 15679/head
Wolfgang Bangerth [Fri, 7 Jul 2023 17:39:57 +0000 (11:39 -0600)]
Use parallel::apply_to_subranges().

14 months agoRemove reference to VectorSpaceVector from ReadWriteVector's documentation. 15667/head
Wolfgang Bangerth [Thu, 6 Jul 2023 13:03:40 +0000 (07:03 -0600)]
Remove reference to VectorSpaceVector from ReadWriteVector's documentation.

14 months agoFix tests 15671/head
Daniel Arndt [Fri, 7 Jul 2023 17:31:32 +0000 (13:31 -0400)]
Fix tests

14 months agoFix face orientation 15678/head
Peter Munch [Sun, 2 Jul 2023 01:22:27 +0000 (03:22 +0200)]
Fix face orientation

14 months agoMerge pull request #15010 from sebproell/callable-member-function
David Wells [Fri, 7 Jul 2023 13:49:20 +0000 (09:49 -0400)]
Merge pull request #15010 from sebproell/callable-member-function

Forward implementation of std::bind_front

14 months agoMerge pull request #15675 from tamiko/adjust_test
David Wells [Fri, 7 Jul 2023 13:48:37 +0000 (09:48 -0400)]
Merge pull request #15675 from tamiko/adjust_test

Test examples/step-40: avoid std::cout race condition

14 months agoDefine DEAL_II_DEPRECATED_EARLY_WITH_COMMENT(x) for doxygen 15672/head
Daniel Arndt [Fri, 7 Jul 2023 12:10:16 +0000 (08:10 -0400)]
Define DEAL_II_DEPRECATED_EARLY_WITH_COMMENT(x) for doxygen

14 months agoAvoid const return type
Daniel Arndt [Thu, 6 Jul 2023 18:05:10 +0000 (14:05 -0400)]
Avoid const return type

14 months agoMerge pull request #15666 from bangerth/vsv-la-vector
Daniel Arndt [Fri, 7 Jul 2023 11:53:15 +0000 (07:53 -0400)]
Merge pull request #15666 from bangerth/vsv-la-vector

14 months agoMerge pull request #15665 from masterleinad/compiler_versions_c++17
Daniel Arndt [Fri, 7 Jul 2023 11:52:22 +0000 (07:52 -0400)]
Merge pull request #15665 from masterleinad/compiler_versions_c++17

14 months agoForward implementation of std::bind_front 15010/head
Sebastian Proell [Fri, 31 Mar 2023 15:47:37 +0000 (17:47 +0200)]
Forward implementation of std::bind_front


In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.