Nestedsums library
flags.h
Go to the documentation of this file.
1
8/*
9 * Copyright (C) 2001-2017 Stefan Weinzierl
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26#ifndef __NESTEDSUMS_FLAGS_H__
27#define __NESTEDSUMS_FLAGS_H__
28
29#include "ginac/ginac.h"
30
31namespace nestedsums {
32
35
36 public:
37 enum {
38 start,
39 expansion_required,
40 check_for_poles,
41 expand_gamma_functions,
42 do_partial_fractioning,
43 adjust_summation_index,
44 hash_checked,
45 do_outermost_sum,
46 do_hoelder_convolution,
47 hoelder_hash_checked,
48 evaluated,
49 no_eval_to_scalar,
50 eval_to_scalar,
51 zombie
52 };
53 };
54
57
58 public:
59 enum {
60 start = 0x0000,
61 power = 0x0001,
62 member_variables = 0x0002,
63 one_level = 0x0004
64 };
65 };
66
69
70 public:
71 enum {
72 standard = 0x0000,
73 no_harmonic_polylog = 0x0001,
74 no_nielsen_polylog = 0x0002,
75 no_classical_polylog = 0x0004,
76 no_special_cases = 0x0007,
77 no_reversed_order = 0x0008
78 };
79 };
80
83 public:
84 enum {
85 expanded = 0x1004
86 };
87 };
88
89} // namespace nestedsums
90
91#endif // ndef __NESTEDSUMS_FLAGS_H__
92
93
94
95
96
97
98
99
100
Flags for the nestedsum_helper_expand function.
Definition flags.h:56
Flags for the status of the expansion.
Definition flags.h:34
Additional status flags.
Definition flags.h:82
Flags for the print format for polylogs.
Definition flags.h:68
Definition basic_letter.cc:35