NumeRe v1.1.4
NumeRe: Framework für Numerische Rechnungen
muParserTest.cpp File Reference

This file contains the implementation of parser test cases. More...

#include "muParserTest.h"
#include <cstdio>
#include <cmath>
#include <iostream>
#include <limits>
Include dependency graph for muParserTest.cpp:

Go to the source code of this file.

Namespaces

namespace  mu
 Namespace for mathematical applications.
 
namespace  mu::Test
 Namespace for test cases.
 

Macros

#define PARSER_CONST_PI   3.141592653589793238462643
 
#define PARSER_CONST_E   2.718281828459045235360287
 
#define PARSER_THROWCHECK(DOMAIN, FAIL, EXPR, ARG)
 

Detailed Description

This file contains the implementation of parser test cases.

Definition in file muParserTest.cpp.

Macro Definition Documentation

◆ PARSER_CONST_E

#define PARSER_CONST_E   2.718281828459045235360287

Definition at line 34 of file muParserTest.cpp.

◆ PARSER_CONST_PI

#define PARSER_CONST_PI   3.141592653589793238462643

Definition at line 33 of file muParserTest.cpp.

◆ PARSER_THROWCHECK

#define PARSER_THROWCHECK (   DOMAIN,
  FAIL,
  EXPR,
  ARG 
)
Value:
iErr = 0; \
ParserTester::c_iCount++; \
try \
{ \
p.Define##DOMAIN(EXPR, ARG); \
} \
catch(Parser::exception_type&) \
{ \
iErr = (FAIL==false) ? 0 : 1; \
} \
iStat += iErr;