wok view muparser/description.txt @ rev 24933

updated muparser and muparser-dev (2.2.6.1 -> 2.3.3)
author Hans-G?nter Theisgen
date Wed Apr 13 17:29:40 2022 +0100 (2022-04-13)
parents
children
line source
1 Many applications require the parsing of mathematical expressions.
2 The main objective muparser is to provide a fast, easy and secure way
3 of doing this.
4 Muparser is an extensible high performance math expression parser
5 library written in C++.
6 It works by transforming a mathematical expression into bytecode and
7 precalculating constant parts of the expression.
8 For best performance muparser allows parallelized evaluation of
9 expressions with OpenMP.
11 The library was designed with portability in mind and should compile
12 on every standard compliant C++ compiler.
13 The build system is based on CMake.
14 The code runs on both 32 bit and 64 bit architechtures and has been
15 tested using Visual Studio 2019, CLANG and GCC.
16 Code samples are provided in order to help you understand its usage.