Max Sagebaum

Results 39 comments of Max Sagebaum

Cleaned up the merge request and updated the first comment. Removed WIP status.

Hi, took me a little longer. I ran the same command with the additional arguments `-XClang -enzyme-print-type`. I also created a version where I used c++filt. Hope this helps. [out.txt.zip](https://github.com/EnzymeAD/Enzyme/files/11897898/out.txt.zip)...

I checked out the newest version of Enzyme and performed the output again. Here are the newest results. [out.txt.zip](https://github.com/EnzymeAD/Enzyme/files/12728486/out.txt.zip) On a side note: I had problems getting the command to...

Just an idea: Directly specifying the specialized template arguments in the declaration name comes from the current cpp1 syntax. In cpp2 syntax this could be moved nearly anywhere else. So...

> Actually, first comes the template-argument-list (as lowered to Cpp1) before the template-parameter-list. Which matches "declaration follows use". > > ``` > same1: for type = { > this: std::true_type...

As shown in the comment https://github.com/hsutter/cppfront/pull/904#issuecomment-2150622367 UFCS macro/template can have a real impact on compile times. name | compile | compile adjusted | compile relative -- | -- | --...

I am aiming to implement the POSIX extended specification with a few extras from perl. All in all I am sticking to the perl interpretation of regular expressions.

The feature set is now complete as stated in https://en.wikipedia.org/wiki/Regular_expression. I grabbed the test suite from https://wiki.haskell.org/Regex_Posix https://hackage.haskell.org/package/regex-posix-unittest. I am currently working my way through the tests by fixing all...

I finished now the basic implementation and most of the test suite is passed. Some notable differences with respect to posix ERE: - Alternatives are not greedy: `a|ab` matches `a`...