aboutsummaryrefslogtreecommitdiffstats
path: root/muparser/muParser.cpp
blob: e92b1a232e3f0ec494fbb82f5c136a64f28d2f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
                 __________                                      
    _____   __ __\______   \_____  _______  ______  ____ _______ 
   /     \ |  |  \|     ___/\__  \ \_  __ \/  ___/_/ __ \\_  __ \
  |  Y Y  \|  |  /|    |     / __ \_|  | \/\___ \ \  ___/ |  | \/
  |__|_|  /|____/ |____|    (____  /|__|  /____  > \___  >|__|   
        \/                       \/            \/      \/        
  Copyright (C) 2004-2006 Ingo Berg

  Permission is hereby granted, free of charge, to any person obtaining a copy of this 
  software and associated documentation files (the "Software"), to deal in the Software
  without restriction, including without limitation the rights to use, copy, modify, 
  merge, publish, distribute, sublicense, and/or sell copies of the Software, and to 
  permit persons to whom the Software is furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in all copies or 
  substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
  NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
  DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
*/
#include "muParser.h"

#include <cmath>
#include <algorithm>
#include <numeric>

/** \brief Pi (what else?). */
#define PARSER_CONST_PI  3.141592653589793238462643

/** \brief The eulerian number. */
#define PARSER_CONST_E   2.718281828459045235360287

using namespace std;


/** \brief Namespace for mathematical applications. */
namespace mu
{

//---------------------------------------------------------------------------
// Trigonometric function
value_type Parser::Sin(value_type v)   { return sin(v);  }
value_type Parser::Cos(value_type v)   { return cos(v);  }
value_type Parser::Tan(value_type v)   { return tan(v);  }
value_type Parser::ASin(value_type v)  { return asin(v); }
value_type Parser::ACos(value_type v)  { return acos(v); }
value_type Parser::ATan(value_type v)  { return atan(v); }
value_type Parser::Sinh(value_type v)  { return sinh(v); }
value_type Parser::Cosh(value_type v)  { return cosh(v); }
value_type Parser::Tanh(value_type v)  { return tanh(v); }
value_type Parser::ASinh(value_type v) { return log(v + sqrt(v * v + 1)); }
value_type Parser::ACosh(value_type v) { return log(v + sqrt(v * v - 1)); }
value_type Parser::ATanh(value_type v) { return ((value_type)0.5 * log((1 + v) / (1 - v))); }

//---------------------------------------------------------------------------
// Logarithm functions
value_type Parser::Log2(value_type v)  { return log(v)/log((value_type)2); } // Logarithm base 2
value_type Parser::Log10(value_type v) { return log10(v); } // Logarithm base 10
value_type Parser::Ln(value_type v)    { return log(v);   } // Logarithm base e (natural logarithm)

//---------------------------------------------------------------------------
//  misc
value_type Parser::Exp(value_type v)  { return exp(v);   }
value_type Parser::Abs(value_type v)  { return fabs(v);  }
value_type Parser::Sqrt(value_type v) { return sqrt(v);  }
value_type Parser::Rint(value_type v) { return floor(v + (value_type)0.5); }
value_type Parser::Sign(value_type v) { return (value_type)((v<0) ? -1 : (v>0) ? 1 : 0); }

//---------------------------------------------------------------------------
// Conditional (if then else)
value_type Parser::Ite(value_type v1, value_type v2, value_type v3) { return (v1==1) ? v2 : v3; }

//---------------------------------------------------------------------------
// Unary operator Callbacks: Infix operators
value_type Parser::UnaryMinus(value_type v) { return -v; }

//---------------------------------------------------------------------------
// Functions with variable number of arguments
// sum
value_type Parser::Sum(const value_type *a_afArg, int a_iArgc)
{ 
  if (!a_iArgc)	
    throw exception_type(_T("too few arguments for function sum."));

  value_type fRes=0;
  for (int i=0; i<a_iArgc; ++i) fRes += a_afArg[i];
  return fRes;
}

//---------------------------------------------------------------------------
// mean value
value_type Parser::Avg(const value_type *a_afArg, int a_iArgc)
{ 
  if (!a_iArgc)	
    throw exception_type(_T("too few arguments for function sum."));

  value_type fRes=0;
  for (int i=0; i<a_iArgc; ++i) fRes += a_afArg[i];
  return fRes/(double)a_iArgc;
}

//---------------------------------------------------------------------------
// minimum
value_type Parser::Min(const value_type *a_afArg, int a_iArgc)
{ 
    if (!a_iArgc)	
        throw exception_type(_T("too few arguments for function min."));

    value_type fRes=a_afArg[0];
    for (int i=0; i<a_iArgc; ++i) fRes = std::min(fRes, a_afArg[i]);

    return fRes;
}

//---------------------------------------------------------------------------
// maximum
value_type Parser::Max(const value_type *a_afArg, int a_iArgc)
{ 
    if (!a_iArgc)	
        throw exception_type(_T("too few arguments for function min."));

    value_type fRes=a_afArg[0];
    for (int i=0; i<a_iArgc; ++i) fRes = std::max(fRes, a_afArg[i]);

    return fRes;
}

//---------------------------------------------------------------------------
// Default value recognition callback
bool Parser::IsVal(const char_type *a_szExpr, int &a_iPos, value_type &a_fVal)
{
  value_type fVal(0);

// thanks to CodeProject member sailorickm for writing this fix:
// http://www.codeproject.com/cpp/FastMathParser.asp?msg=1354598#xx1354598xx
// i cant test it myself, if you see problems please contact me.
#if defined (__hpux) || (defined __GNUC__ && (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 )))
  int iEnd = 0;
  int nAssigned = sscanf(a_szExpr, "%lf%n", &fVal, &iEnd);
  if (nAssigned == 0)
  iEnd = -1;
#else
  stringstream_type stream(a_szExpr);
  stream.seekg(0); // todo:  check if this really is necessary
  stream >> fVal;
  int iEnd = stream.tellg(); // Position after reading
#endif

  if (iEnd==-1)
    return false;

  a_iPos += iEnd;
  a_fVal = fVal;
  return true;
}

//---------------------------------------------------------------------------
/** \brief Constructor. 

  Call ParserBase class constructor and trigger Function, Operator and Constant initialization.
*/
Parser::Parser()
  :ParserBase()
  ,m_fEpsilon((value_type)1e-7)
{
  AddValIdent(IsVal);

  InitCharSets();
  InitFun();
  InitConst();
  InitOprt();
}

//---------------------------------------------------------------------------
/** Define the character sets. */
void Parser::InitCharSets()
{
  DefineNameChars( _T("0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ") );
  DefineOprtChars( _T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+-*^/?<>=#!$%&|~'_") );
  DefineInfixOprtChars( _T("/+-*^?<>=#!$%&|~'_") );
}

//---------------------------------------------------------------------------
/** \brief Initialize the default functions. */
void Parser::InitFun()
{
  // trigonometric functions
  DefineFun(_T("sin"), Sin);
  DefineFun(_T("cos"), Cos);
  DefineFun(_T("tan"), Tan);
  // arcus functions
  DefineFun(_T("asin"), ASin);
  DefineFun(_T("acos"), ACos);
  DefineFun(_T("atan"), ATan);
  // hyperbolic functions
  DefineFun(_T("sinh"), Sinh);
  DefineFun(_T("cosh"), Cosh);
  DefineFun(_T("tanh"), Tanh);
  // arcus hyperbolic functions
  DefineFun(_T("asinh"), ASinh);
  DefineFun(_T("acosh"), ACosh);
  DefineFun(_T("atanh"), ATanh);
  // Logarithm functions
  DefineFun(_T("log2"), Log2);
  DefineFun(_T("log10"), Log10);
  DefineFun(_T("log"), Log10);
  DefineFun(_T("ln"), Ln);
  // misc
  DefineFun(_T("exp"), Exp);
  DefineFun(_T("sqrt"), Sqrt);
  DefineFun(_T("sign"), Sign);
  DefineFun(_T("rint"), Rint);
  DefineFun(_T("abs"), Abs);
  DefineFun(_T("if"), Ite);
  // Functions with variable number of arguments
  DefineFun(_T("sum"), Sum);
  DefineFun(_T("avg"), Avg);
  DefineFun(_T("min"), Min);
  DefineFun(_T("max"), Max);
}

//---------------------------------------------------------------------------
/** \brief Initialize operators. */
void Parser::InitConst()
{
  DefineConst(_T("_pi"), (value_type)PARSER_CONST_PI);
  DefineConst(_T("_e"), (value_type)PARSER_CONST_E);
}

//---------------------------------------------------------------------------
/** \brief Initialize operators. */
void Parser::InitOprt()
{
  DefineInfixOprt(_T("-"), UnaryMinus);
}

//---------------------------------------------------------------------------
/** \brief Numerically differentiate with regard to a variable. */
value_type Parser::Diff(value_type *a_Var, value_type a_fPos) const
{
  assert(m_fEpsilon);
  value_type fEpsilon( (a_fPos==0) ? (value_type)1e-10 : m_fEpsilon * a_fPos ),
             fRes(0), fBuf(*a_Var), f[4] = {0,0,0,0};

 *a_Var = a_fPos+2*fEpsilon;  f[0] = Eval();
 *a_Var = a_fPos+1*fEpsilon;  f[1] = Eval();
 *a_Var = a_fPos-1*fEpsilon;  f[2] = Eval();
 *a_Var = a_fPos-2*fEpsilon;  f[3] = Eval();
 *a_Var = fBuf; // restore variable

  fRes = (-f[0] + 8*f[1] - 8*f[2] + f[3]) / (12*fEpsilon);
  return fRes;
}

} // namespace mu