In search for a c++ parser I recently stumbled across the project below. Within it there's a parser that seems extremely well suited to my needs, however I believe the author(s) have deliberately obfuscated some of the core pieces of code, which make examining the code a little difficult.
https://github.com/ArashPartow/math-parser-benchmark-project/blob/master/fparser/fpoptimizer.cc
There is a description in the file and on the author's website about there being a plain deobfuscated version, however the indicated site seems to only have a dead-link and attempts to contact the author have been fruitless.
I was wondering if fellow SOers would know of a quick and easy way to reverse the obfuscation in the above mentioned file.
Now I'm not sure because I'm not a C++ expert, but it could be that there is a legitimate reasons for the code to be the way it is, presumably as the name of the file suggests it could be for performance reasons.