Postby jamesjer » 07 Nov 2023, 16:16
The Fedora project builds packages with -D_GLIBCXX_ASSERTIONS. One of the assertions failed while running the polymake 4.11 test suite. In apps/topaz/src/barycentric_subdivision.cc, line 142, description.back() is called. However, during test suite execution at least, description can be empty. Calling back() on an empty string invokes undefined behavior. Please check that description.empty() is false before calling description.back(). (And thank you again for the 4.11 release!)