wok diff muparser/description.txt @ rev 24936
created recipe for mypaint-brushes
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 14 09:08:33 2022 +0100 (2022-04-14) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/muparser/description.txt Thu Apr 14 09:08:33 2022 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +Many applications require the parsing of mathematical expressions. 1.5 +The main objective muparser is to provide a fast, easy and secure way 1.6 +of doing this. 1.7 +Muparser is an extensible high performance math expression parser 1.8 +library written in C++. 1.9 +It works by transforming a mathematical expression into bytecode and 1.10 +precalculating constant parts of the expression. 1.11 +For best performance muparser allows parallelized evaluation of 1.12 +expressions with OpenMP. 1.13 + 1.14 +The library was designed with portability in mind and should compile 1.15 +on every standard compliant C++ compiler. 1.16 +The build system is based on CMake. 1.17 +The code runs on both 32 bit and 64 bit architechtures and has been 1.18 +tested using Visual Studio 2019, CLANG and GCC. 1.19 +Code samples are provided in order to help you understand its usage.