wok diff muparser/description.txt @ rev 24975

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 16:22:04 2022 +0000 (2022-05-02)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/muparser/description.txt	Mon May 02 16:22:04 2022 +0000
     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.