ridiculousfish
732b32c8b4
[muparser] Clean up constructors and other miscellaneous
2017-12-18 23:01:17 -08:00
ridiculousfish
3f21fb64de
[muparser] Remove additional unused functions
2017-12-18 23:01:17 -08:00
ridiculousfish
ab95f94048
[muparser] Remove m_nIfElseCounter instance variable
...
No idea why this isn't just a local.
2017-12-18 23:01:17 -08:00
ridiculousfish
4452d9ce18
[muparser] Remove m_pParseFormula function pointer
...
This is a very strange design that determines whether initialization
needs to be performed by reassigning a function pointer. A misguided
optimization? Just check explicitly.
2017-12-18 23:01:17 -08:00
ridiculousfish
3ed9c851a3
[muparser] Remove some OpenMP / "bulk mode" detritus
2017-12-18 23:01:17 -08:00
ridiculousfish
554382a286
[muparser] Remove 'AllowOpt' parameters
...
This parameter was used as a hint to optimize functions invoked
with constants, but is no longer used.
2017-12-18 23:01:17 -08:00
ridiculousfish
11d729d09c
[muparser] DefineFun() to return an error instead of throwing
2017-12-18 23:01:16 -08:00
ridiculousfish
0be08e4683
[muparser] DefinePostfixOprt and DefineInfixOprt to return errors
...
Return errors explicitly instead of throwing.
2017-12-18 23:01:16 -08:00
ridiculousfish
91c28449aa
[muparser] Parser mathematical functions to return errors instead of throw
...
Remove exceptions from Parser functions such as sqrt, min, and others.
2017-12-18 23:01:16 -08:00
ridiculousfish
3faccc8b3e
[muparser] Remove querying variables and constants
...
fish does not need to query variables and constants from muparser.
This simplifies the code.
2017-12-18 23:01:16 -08:00
ridiculousfish
234808bc32
[muparser] ApplyRemainingOprt to return explicit errors
2017-12-18 23:01:16 -08:00
ridiculousfish
60d9c9fa00
[muparser] More functions to return errors
...
Return OptionalError for more functions, allowing for explicit error
handling.
2017-12-18 23:01:16 -08:00
ridiculousfish
9443a4bf2d
[muparser] Remove copy and assignment
...
There is no reason for muParsers to be copyable or assignable.
Also remove some dead code and switch an auto_ptr to unique_ptr.
2017-12-18 23:01:15 -08:00
ridiculousfish
9649b132bd
[muparser] Continue adopting ValueOrError
2017-12-18 23:01:15 -08:00
ridiculousfish
bfd70880a5
[muparser] Begin adopting ValueOrError
...
Switch custom function types to return ValueOrError, which will
enable us to remove exceptions.
2017-12-18 23:01:15 -08:00
ridiculousfish
a7f6105497
[muparser] Remove the optimizer
...
The optimizer adds a fair amount of complexity in muparser with no
benefit to fish, since fish is not going to use complicated expressions
or cache parsed expressions.
2017-12-18 23:01:15 -08:00
ridiculousfish
85334432ed
[muparser] Remove cmFUNC_BULK
...
fish does not need bulk functions, which are used to enable parallel
computations.
2017-12-18 23:01:15 -08:00
ridiculousfish
38a2e0218d
[muparser] Remove muParserError.h
...
To help remove exception handling, we will need to have a type that
has visibility into both ParserError and value_type. We're going to
put this type in muParserDef.h. Remove the error header and fold its
contents into muParserDef.h.
2017-12-18 11:58:14 -08:00
ridiculousfish
cad9bbd2a2
[muparser] Remove muParserStack.h
...
This was a silly data structure that didn't carry its weight.
Replace it with a wrapper around std::vector that doesn't explicitly
throw exceptions. It's unclear if muparser relied on the exception
throwing behavior of ParserStack, and it seems there's no way to find
out except removing it and seeing what breaks.
The tests pass for what that's worth!
2017-12-18 11:58:13 -08:00
ridiculousfish
e2b798cda3
[muparser] Restyle muparser sources to match fish
...
Add muparser soruces to style.fish, and run it to make muparser
match fish style guidelines.
2017-12-18 11:58:13 -08:00
David Adam
86b1c5a5a4
Update MuParser source
...
Drop build system artefacts and move to versioned directory.
Tarball from
https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz with
samples/example2 directory removed.
2017-08-25 07:54:40 +08:00