wok view muparser/description.txt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (22 months ago)
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.