You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Primal: `Polyhedron::volume()` function changed from returning a signed
64
+
volume to an unsigned volume. The added `Polyhedron::signedVolume()` function
65
+
returns the signed volume.
66
+
- Primal: `intersection_volume()` operators changed from returning a signed
67
+
volume to an unsigned volume.
68
+
- Primal's `BoundingBox::contains(BoundingBox)` now returns `true` when the input is empty
69
+
- Renamed axom's bit utility functions to conform to `C++20` standard: `popCount() -> popcount()`,
70
+
`trailingZeros() -> countr_zero()` and `leadingZeros() -> countl_zero()`
71
+
- Renamed `axom::utilities::swapEndian() -> byteswap()` to conform to `C++23` standard
72
+
73
+
### Fixed
74
+
- quest's `SamplingShaper` now properly handles material names containing underscores
75
+
- quest's `SamplingShaper` can now be used with an mfem that is configured for (GPU) devices
76
+
- primal's `Polygon` area computation in 3D previously only worked when the polygon was aligned with the XY-plane. It now works for arbitrary polygons.
77
+
- Upgrades our `vcpkg` usage for automated Windows builds of our TPLs to its [2023.12.12 release](https://github.com/microsoft/vcpkg/releases/tag/2023.12.12)
78
+
- Fixed a bug in the bounds checks for `primal::clip(Triangle, BoundingBox)`
79
+
- Fixed a bug when loading Sidre groups with attributes that already exist
80
+
- Fixed `std::locale` error when when compiling `src/axom/core/utilities/System.cpp` using nvcc
81
+
- Include `cstdint` for higher gcc version support (e.g. gcc-13)
82
+
- Fixed several memory leaks in `axom::Array`, `quest::Shaping` and `sidre::MFEMSidreDataCollection`
83
+
84
+
## [Version 0.8.1] - Release date 2023-08-16
23
85
24
86
### Changed
25
87
- Updates to [RAJA version 2023.06.0][https://github.com/LLNL/RAJA/releases/tag/v2023.06.0]
0 commit comments