GiNaC 1.8.7
excompiler.h
Go to the documentation of this file.
1
6/*
7 * GiNaC Copyright (C) 1999-2023 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 "lst.h"
28
29#include <string>
30
31namespace GiNaC {
32
33class ex;
34class symbol;
35
39typedef double (*FUNCP_1P) (double);
40
44typedef double (*FUNCP_2P) (double, double);
45
49typedef void (*FUNCP_CUBA) (const int*, const double[], const int*, double[]);
50
61void compile_ex(const ex& expr, const symbol& sym, FUNCP_1P& fp, const std::string filename = "");
62
74void compile_ex(const ex& expr, const symbol& sym1, const symbol& sym2, FUNCP_2P& fp, const std::string filename = "");
75
86void compile_ex(const lst& exprs, const lst& syms, FUNCP_CUBA& fp, const std::string filename = "");
87
96void link_ex(const std::string filename, FUNCP_1P& fp);
97
106void link_ex(const std::string filename, FUNCP_2P& fp);
107
116void link_ex(const std::string filename, FUNCP_CUBA& fp);
117
123void unlink_ex(const std::string filename);
124
125} // namespace GiNaC
126
127#endif // ndef GINAC_EXCOMPILER_H
Wrapper template for making GiNaC classes out of STL containers.
Definition: container.h:73
Lightweight wrapper for GiNaC's symbolic objects.
Definition: ex.h:72
Basic CAS symbol.
Definition: symbol.h:39
exset syms
Definition: factor.cpp:2429
Definition of GiNaC's lst.
Definition: add.cpp:38
void compile_ex(const ex &expr, const symbol &sym, FUNCP_1P &fp, const std::string filename)
Takes an expression and produces a function pointer to the compiled and linked C code equivalent in d...
Definition: excompiler.cpp:323
void(* FUNCP_CUBA)(const int *, const double[], const int *, double[])
Function pointer for use with the CUBA library (http://www.feynarts.de/cuba).
Definition: excompiler.h:49
void link_ex(const std::string filename, FUNCP_1P &fp)
Opens an existing so-file and returns a function pointer of type FUNCP_1P to the contained function.
Definition: excompiler.cpp:338
double(* FUNCP_1P)(double)
Function pointer with one function parameter.
Definition: excompiler.h:39
void unlink_ex(const std::string filename)
Closes all linked .so files that have the supplied filename.
Definition: excompiler.cpp:353
double(* FUNCP_2P)(double, double)
Function pointer with two function parameters.
Definition: excompiler.h:44

This page is part of the GiNaC developer's reference. It was generated automatically by doxygen. For an introduction, see the tutorial.