]> www.ginac.de Git - ginac.git/blob - ginac/excompiler.h
Added calchash and compare_same_type for symmetries. Necessary for archiving.
[ginac.git] / ginac / excompiler.h
1 /** @file excompiler.h
2  *
3  *  Class to facilitate the conversion of a ex to a function pointer suited for
4  *  fast numerical integration. */
5
6 /*
7  *  GiNaC Copyright (C) 1999-2006 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_EXCOMPILER_H__
25 #define __GINAC_EXCOMPILER_H__
26
27 #include "basic.h"
28 #include "ex.h"
29
30 namespace GiNaC {
31
32
33 typedef double (*FP_dim1) (double);
34
35 FP_dim1 compile(const ex& expr, const symbol& sym);
36
37 typedef void (*FP_cuba) (const int*, const double[], const int*, double[]);
38
39 FP_cuba compile(const lst& exprs, const lst& syms);
40
41
42 } // namespace GiNaC
43
44 #endif // ndef __GINAC_EXCOMPILER_H__