]> www.ginac.de Git - ginac.git/blob - check/error_report.h
Make sure add::eval() collects all numeric terms.
[ginac.git] / check / error_report.h
1 /** @file error_report.h
2  *
3  *  Macro for additional debugging output.
4  */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2010 Johannes Gutenberg University Mainz, Germany
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #ifndef GINAC_CHECK_ERROR_REPORT_H
25 #define GINAC_CHECK_ERROR_REPORT_H
26
27 #include <sstream>
28 #include <stdexcept>
29
30 #define cbug_on(cond, what)                             \
31 do {                                                    \
32 if (cond) {                                             \
33         std::ostringstream err_stream;                  \
34         err_stream << __FILE__ << ':' << __LINE__       \
35                    << what;                             \
36         throw std::logic_error(err_stream.str());       \
37 }                                                       \
38 } while (0)
39
40 #endif // ndef GINAC_CHECK_ERROR_REPORT_H