/usr/include/swiginac/function.i is in python-swiginac 1.5.1.1-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | /*
(c) Copyright 2003, 2004, 2005
Author: Ola Skavhaug and Ondrej Certik
This file is part of swiginac.
swiginac is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
swiginac is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with swiginac; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
class function;
class symmetry;
class function_options
{
public:
function_options();
function_options(std::string const & n, std::string const & tn=std::string());
function_options(std::string const & n, unsigned np);
~function_options();
void initialize();
function_options & dummy() { return *this; }
function_options & set_name(std::string const & n, std::string const & tn=std::string());
function_options & latex_name(std::string const & tn);
// the following lines have been generated for max. 14 parameters
function_options & eval_func(eval_funcp_1 e);
function_options & eval_func(eval_funcp_2 e);
function_options & eval_func(eval_funcp_3 e);
function_options & eval_func(eval_funcp_4 e);
function_options & eval_func(eval_funcp_5 e);
function_options & evalf_func(evalf_funcp_1 ef);
function_options & evalf_func(evalf_funcp_2 ef);
function_options & evalf_func(evalf_funcp_3 ef);
function_options & evalf_func(evalf_funcp_4 ef);
function_options & evalf_func(evalf_funcp_5 ef);
function_options & conjugate_func(conjugate_funcp_1 d);
function_options & conjugate_func(conjugate_funcp_2 d);
function_options & conjugate_func(conjugate_funcp_3 d);
function_options & conjugate_func(conjugate_funcp_4 d);
function_options & conjugate_func(conjugate_funcp_5 d);
function_options & derivative_func(derivative_funcp_1 d);
function_options & derivative_func(derivative_funcp_2 d);
function_options & derivative_func(derivative_funcp_3 d);
function_options & derivative_func(derivative_funcp_4 d);
function_options & derivative_func(derivative_funcp_5 d);
function_options & series_func(series_funcp_1 s);
function_options & series_func(series_funcp_2 s);
function_options & series_func(series_funcp_3 s);
function_options & series_func(series_funcp_4 s);
function_options & series_func(series_funcp_5 s);
template <class Ctx> function_options & print_func(print_funcp_1 p)
{
test_and_set_nparams(1);
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
template <class Ctx> function_options & print_func(print_funcp_2 p)
{
test_and_set_nparams(2);
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
template <class Ctx> function_options & print_func(print_funcp_3 p)
{
test_and_set_nparams(3);
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
template <class Ctx> function_options & print_func(print_funcp_4 p)
{
test_and_set_nparams(4);
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
template <class Ctx> function_options & print_func(print_funcp_5 p)
{
test_and_set_nparams(5);
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
// end of generated lines
function_options & eval_func(eval_funcp_exvector e);
function_options & evalf_func(evalf_funcp_exvector ef);
function_options & conjugate_func(conjugate_funcp_exvector d);
function_options & derivative_func(derivative_funcp_exvector d);
function_options & series_func(series_funcp_exvector s);
template <class Ctx> function_options & print_func(print_funcp_exvector p)
{
print_use_exvector_args = true;
set_print_func(Ctx::get_class_info_static().options.get_id(), print_funcp(p));
return *this;
}
function_options & set_return_type(unsigned rt, const return_type_t* rtt = 0);
function_options & do_not_evalf_params();
function_options & remember(unsigned size, unsigned assoc_size=0,
unsigned strategy=remember_strategies::delete_never);
function_options & overloaded(unsigned o);
function_options & set_symmetry(const symmetry & s);
std::string get_name() const { return name; }
unsigned get_nparams() const { return nparams; }
};
/** Exception class thrown by classes which provide their own series expansion
* to signal that ordinary Taylor expansion is safe. */
class do_taylor {};
/** The class function is used to implement builtin functions like sin, cos...
and user defined functions */
//class function : public exprseq
//class function
class function : public basic
{
public:
function(unsigned ser);
// the following lines have been generated for max. 14 parameters
function(unsigned ser, const ex & param1);
function(unsigned ser, const ex & param1, const ex & param2);
function(unsigned ser, const ex & param1, const ex & param2, const ex & param3);
function(unsigned ser, const ex & param1, const ex & param2, const ex & param3, const ex & param4);
function(unsigned ser, const ex & param1, const ex & param2, const ex & param3, const ex & param4, const ex & param5);
// end of generated lines
//function(unsigned ser, const exprseq & es);
//function(unsigned ser, const exvector & v, bool discardable = false);
// function(unsigned ser, std::auto_ptr<exvector> vp);
// functions overriding virtual functions from base classes
unsigned precedence() const {return 70;}
unsigned calchash() const;
ex thiscontainer(const exvector & v) const;
// ex thiscontainer(std::auto_ptr<exvector> vp) const;
//ex conjugate() const;
static unsigned register_new(function_options const & opt);
static unsigned current_serial;
static unsigned find_function(const std::string &name, unsigned nparams);
unsigned get_serial() const {return serial;}
std::string get_name() const;
};
//size_t nops(const ex & thisex);
//ex expand(const ex & thisex, unsigned options = 0);
ex conjugate(const ex & thisex);
bool has(const ex & thisex, const ex & pattern);
bool find(const ex & thisex, const ex & pattern, exset & found);
int degree(const ex & thisex, const ex & s);
int ldegree(const ex & thisex, const ex & s);
ex coeff(const ex & thisex, const ex & s, int n=1);
ex numer(const ex & thisex);
ex denom(const ex & thisex);
ex numer_denom(const ex & thisex);
ex normal(const ex & thisex, int level=0);
ex to_rational(const ex & thisex, lst & repl_lst);
//ex to_rational(const ex & thisex, exmap & repl);
//ex to_polynomial(const ex & thisex, exmap & repl);
ex to_polynomial(const ex & thisex, lst & repl_lst);
ex collect(const ex & thisex, const ex & s, bool distributed = false);
//ex eval(const ex & thisex, int level = 0);
//ex evalf(const ex & thisex, int level = 0);
ex evalm(const ex & thisex);
ex eval_integ(const ex & thisex);
ex diff(const ex & thisex, const symbol & s, unsigned nth = 1);
ex series(const ex & thisex, const ex & r, int order, unsigned options = 0);
bool match(const ex & thisex, const ex & pattern, exmap & repl_lst);
ex simplify_indexed(const ex & thisex, unsigned options = 0);
ex simplify_indexed(const ex & thisex, const scalar_products & sp, unsigned options = 0);
ex symmetrize(const ex & thisex);
ex symmetrize(const ex & thisex, const lst & l);
ex antisymmetrize(const ex & thisex);
ex antisymmetrize(const ex & thisex, const lst & l);
ex symmetrize_cyclic(const ex & thisex);
ex symmetrize_cyclic(const ex & thisex, const lst & l);
ex op(const ex & thisex, size_t i);
ex lhs(const ex & thisex);
ex rhs(const ex & thisex);
//bool is_zero(const ex & thisex);
void swap(ex & e1, ex & e2);
//ex ex::subs(const exmap & m, unsigned options) const;
//ex subs(const ex & thisex, const exmap & m, unsigned options = 0);
ex subs(const ex & thisex, const lst & ls, const lst & lr, unsigned options = 0);
ex subs(const ex & thisex, const ex & e);
//this doesn't work. why?
//ex subs(const ex & thisex, const ex & e, unsigned options = 0);
ex sqrt(const ex & a);
//ex expand(const ex & thisex, unsigned options = 0);
ex expand(const ex & thisex);
%define DECLARE_FUNCTION_1P_TEMPLATES(NAME)
%template(NAME##_basic) NAME<basic>;
%template(NAME##_int) NAME<int>;
%template(NAME##_double) NAME<double>;
%enddef
%define DECLARE_FUNCTION_1P_PYTHONCODE(FUNCNAME, TEMPLATENAME)
%pythoncode %{
def FUNCNAME(x):
if isinstance(x,basic):
return TEMPLATENAME##_basic(x).eval()
elif isinstance(x,int):
return TEMPLATENAME##_int(x).eval()
elif isinstance(x,float):
return TEMPLATENAME##_double(x).eval()
else:
raise "Unimplented type. Fix in function.i."
%}
%enddef
%define DECLARE_FUNCTION_2P_TEMPLATES(NAME)
%template(NAME##_basic_basic) NAME<basic,basic>;
%template(NAME##_basic_int) NAME<basic,int>;
%template(NAME##_basic_double) NAME<basic,double>;
%template(NAME##_int_basic) NAME<int,basic>;
%template(NAME##_int_int) NAME<int,int>;
%template(NAME##_int_double) NAME<int,double>;
%template(NAME##_double_basic) NAME<double,basic>;
%template(NAME##_double_int) NAME<double,int>;
%template(NAME##_double_double) NAME<double,double>;
%enddef
%define DECLARE_FUNCTION_2P_PYTHONCODE(FUNCNAME,TEMPLATENAME)
%pythoncode %{
def FUNCNAME(x,y):
def which(p):
types = [basic,int,float]
for t in types:
if isinstance(p,t):
return t
raise "Unimplemented type. Fix in function.i."
xt = which(x)
yt = which(y)
func_hash = {(basic,basic) : TEMPLATENAME##_basic_basic,
(basic,int) : TEMPLATENAME##_basic_int,
(basic,float) : TEMPLATENAME##_basic_double,
(int,basic) : TEMPLATENAME##_int_basic,
(int,int) : TEMPLATENAME##_int_int,
(int,float) : TEMPLATENAME##_int_double,
(float,basic) : TEMPLATENAME##_double_basic,
(float,int) : TEMPLATENAME##_double_int,
(float,float) : TEMPLATENAME##_double_double}
return func_hash[(xt,yt)](x,y)
%}
%enddef
%define DECLARE_FUNCTION_3P_TEMPLATES(NAME)
%template(NAME##_basic_basic_basic) NAME<basic,basic,basic>;
%template(NAME##_basic_basic_int) NAME<basic,basic,int>;
%template(NAME##_basic_basic_double) NAME<basic,basic,double>;
%template(NAME##_basic_int_basic) NAME<basic,int,basic>;
%template(NAME##_basic_int_int) NAME<basic,int,int>;
%template(NAME##_basic_int_double) NAME<basic,int,double>;
%template(NAME##_basic_double_basic) NAME<basic,double,basic>;
%template(NAME##_basic_double_int) NAME<basic,double,int>;
%template(NAME##_basic_double_double) NAME<basic,double,double>;
%template(NAME##_int_basic_basic) NAME<int,basic,basic>;
%template(NAME##_int_basic_int) NAME<int,basic,int>;
%template(NAME##_int_basic_double) NAME<int,basic,double>;
%template(NAME##_int_int_basic) NAME<int,int,basic>;
%template(NAME##_int_int_int) NAME<int,int,int>;
%template(NAME##_int_int_double) NAME<int,int,double>;
%template(NAME##_int_double_basic) NAME<int,double,basic>;
%template(NAME##_int_double_int) NAME<int,double,int>;
%template(NAME##_int_double_double) NAME<int,double,double>;
%template(NAME##_double_basic_basic) NAME<double,basic,basic>;
%template(NAME##_double_basic_int) NAME<double,basic,int>;
%template(NAME##_double_basic_double) NAME<double,basic,double>;
%template(NAME##_double_int_basic) NAME<double,int,basic>;
%template(NAME##_double_int_int) NAME<double,int,int>;
%template(NAME##_double_int_double) NAME<double,int,double>;
%template(NAME##_double_double_basic) NAME<double,double,basic>;
%template(NAME##_double_double_int) NAME<double,double,int>;
%template(NAME##_double_double_double) NAME<double,double,double>;
%enddef
%define DECLARE_FUNCTION_3P_PYTHONCODE(FUNCNAME,TEMPLATENAME)
%pythoncode %{
def FUNCNAME(x,y,z):
def which(p):
types = [basic,int,float]
for t in types:
if isinstance(p,t):
return t
raise "Unimplemented type. Fix in function.i."
xt = which(x)
yt = which(y)
zt = which(z)
func_hash = {(basic,basic,basic) : TEMPLATENAME##_basic_basic_basic,
(basic,basic,int) : TEMPLATENAME##_basic_basic_int,
(basic,basic,float) : TEMPLATENAME##_basic_basic_double,
(basic,int,basic) : TEMPLATENAME##_basic_int_basic,
(basic,int,int) : TEMPLATENAME##_basic_int_int,
(basic,int,float) : TEMPLATENAME##_basic_int_double,
(basic,float,basic) : TEMPLATENAME##_basic_double_basic,
(basic,float,int) : TEMPLATENAME##_basic_double_int,
(basic,float,float) : TEMPLATENAME##_basic_double_double,
(int,basic,basic) : TEMPLATENAME##_int_basic_basic,
(int,basic,int) : TEMPLATENAME##_int_basic_int,
(int,basic,float) : TEMPLATENAME##_int_basic_double,
(int,int,basic) : TEMPLATENAME##_int_int_basic,
(int,int,int) : TEMPLATENAME##_int_int_int,
(int,int,float) : TEMPLATENAME##_int_int_double,
(int,float,basic) : TEMPLATENAME##_int_double_basic,
(int,float,int) : TEMPLATENAME##_int_double_int,
(int,float,float) : TEMPLATENAME##_int_double_double,
(float,basic,basic) : TEMPLATENAME##_double_basic_basic,
(float,basic,int) : TEMPLATENAME##_double_basic_int,
(float,basic,float) : TEMPLATENAME##_double_basic_double,
(float,int,basic) : TEMPLATENAME##_double_int_basic,
(float,int,int) : TEMPLATENAME##_double_int_int,
(float,int,float) : TEMPLATENAME##_double_int_double,
(float,float,basic) : TEMPLATENAME##_double_double_basic,
(float,float,int) : TEMPLATENAME##_double_double_int,
(float,float,float) : TEMPLATENAME##_double_double_double}
return func_hash[(xt,yt,zt)](x,y,z)
%}
%enddef
%define DECLARE_FUNCTION_1P(NAME)
class NAME##_SERIAL { public: static unsigned serial; };
const unsigned NAME##_NPARAMS = 1;
template<typename T1> const GiNaC::function NAME(const T1 & p1) {
return GiNaC::function(NAME##_SERIAL::serial, GiNaC::ex(p1));
}
DECLARE_FUNCTION_1P_TEMPLATES(NAME)
DECLARE_FUNCTION_1P_PYTHONCODE(NAME, NAME)
%enddef
%define DECLARE_FUNCTION_2P(NAME)
class NAME##_SERIAL { public: static unsigned serial; };
const unsigned NAME##_NPARAMS = 2;
template<typename T1, typename T2> const GiNaC::function NAME(const T1 & p1, const T2 & p2) {
return GiNaC::function(NAME##_SERIAL::serial, GiNaC::ex(p1), GiNaC::ex(p2));
}
DECLARE_FUNCTION_2P_TEMPLATES(NAME)
DECLARE_FUNCTION_2P_PYTHONCODE(NAME, NAME)
%enddef
%define DECLARE_FUNCTION_3P(NAME)
class NAME##_SERIAL { public: static unsigned serial; };
const unsigned NAME##_NPARAMS = 3;
template<typename T1, typename T2, typename T3> const GiNaC::function NAME(const T1 & p1, const T2 & p2, const T3 & p3) {
return GiNaC::function(NAME##_SERIAL::serial, GiNaC::ex(p1), GiNaC::ex(p2), GiNaC::ex(p3));
}
DECLARE_FUNCTION_3P_TEMPLATES(NAME)
DECLARE_FUNCTION_3P_PYTHONCODE(NAME, NAME)
%enddef
DECLARE_FUNCTION_1P(conjugate_function)
DECLARE_FUNCTION_1P(abs)
DECLARE_FUNCTION_1P(csgn)
DECLARE_FUNCTION_2P(eta)
DECLARE_FUNCTION_1P(sin)
DECLARE_FUNCTION_1P(cos)
DECLARE_FUNCTION_1P(tan)
DECLARE_FUNCTION_1P(exp)
DECLARE_FUNCTION_1P(log)
DECLARE_FUNCTION_1P(asin)
DECLARE_FUNCTION_1P(acos)
DECLARE_FUNCTION_1P(atan)
DECLARE_FUNCTION_2P(atan2)
DECLARE_FUNCTION_1P(sinh)
DECLARE_FUNCTION_1P(cosh)
DECLARE_FUNCTION_1P(tanh)
DECLARE_FUNCTION_1P(asinh)
DECLARE_FUNCTION_1P(acosh)
DECLARE_FUNCTION_1P(atanh)
DECLARE_FUNCTION_1P(Li2)
DECLARE_FUNCTION_1P(Li3)
DECLARE_FUNCTION_2P(zetaderiv)
DECLARE_FUNCTION_2P(Li)
DECLARE_FUNCTION_3P(S)
DECLARE_FUNCTION_2P(H)
DECLARE_FUNCTION_1P(lgamma)
DECLARE_FUNCTION_1P(tgamma)
DECLARE_FUNCTION_2P(beta)
DECLARE_FUNCTION_1P(factorial)
DECLARE_FUNCTION_2P(binomial)
DECLARE_FUNCTION_1P(Order)
/** Multiple zeta value including Riemann's zeta-function. */
class zeta1_SERIAL { public: static unsigned serial; };
template<typename T1>
inline function zeta(const T1& p1) {
return function(zeta1_SERIAL::serial, ex(p1));
}
/** Alternating Euler sum or colored MZV. */
class zeta2_SERIAL { public: static unsigned serial; };
template<typename T1, typename T2>
inline function zeta(const T1& p1, const T2& p2) {
return function(zeta2_SERIAL::serial, ex(p1), ex(p2));
}
/* Since zeta() is overloaded, we first create separate Python
functions for both versions, and then one that takes an
arbitrary argument list and checks for the actual number of
them. The same takes place for G and psi below.*/
DECLARE_FUNCTION_1P_TEMPLATES(zeta)
DECLARE_FUNCTION_1P_PYTHONCODE(zeta1, zeta)
DECLARE_FUNCTION_2P_TEMPLATES(zeta)
DECLARE_FUNCTION_2P_PYTHONCODE(zeta2, zeta)
%pythoncode %{
def zeta(*args):
if len(args)==1:
return zeta1(*args)
elif len(args)==2:
return zeta2(*args)
else:
raise "zeta() takes 1 or 2 arguments"
%}
/** Generalized multiple polylogarithm. */
class G2_SERIAL { public: static unsigned serial; };
template<typename T1, typename T2>
inline function G(const T1& x, const T2& y) {
return function(G2_SERIAL::serial, ex(x), ex(y));
}
/** Generalized multiple polylogarithm with explicit imaginary parts. */
class G3_SERIAL { public: static unsigned serial; };
template<typename T1, typename T2, typename T3>
inline function G(const T1& x, const T2& s, const T3& y) {
return function(G3_SERIAL::serial, ex(x), ex(s), ex(y));
}
DECLARE_FUNCTION_2P_TEMPLATES(G)
DECLARE_FUNCTION_2P_PYTHONCODE(G2, G)
DECLARE_FUNCTION_3P_TEMPLATES(G)
DECLARE_FUNCTION_3P_PYTHONCODE(G3, G)
%pythoncode %{
def G(*args):
if len(args)==2:
return G2(*args)
elif len(args)==3:
return G3(*args)
else:
raise "G() takes 2 or 3 arguments"
%}
/** Psi-function (aka digamma-function). */
class psi1_SERIAL { public: static unsigned serial; };
template<typename T1>
inline function psi(const T1 & p1) {
return function(psi1_SERIAL::serial, ex(p1));
}
/** Derivatives of Psi-function (aka polygamma-functions). */
class psi2_SERIAL { public: static unsigned serial; };
template<typename T1, typename T2>
inline function psi(const T1 & p1, const T2 & p2) {
return function(psi2_SERIAL::serial, ex(p1), ex(p2));
}
DECLARE_FUNCTION_1P_TEMPLATES(psi)
DECLARE_FUNCTION_1P_PYTHONCODE(psi1, psi)
DECLARE_FUNCTION_2P_TEMPLATES(psi)
DECLARE_FUNCTION_2P_PYTHONCODE(psi2, psi)
%pythoncode %{
def psi(*args):
if len(args)==1:
return psi1(*args)
elif len(args)==2:
return psi2(*args)
else:
raise "psi() takes 1 or 2 arguments"
%}
ex lsolve(const ex &eqns, const ex &symbols, unsigned options = solve_algo::automatic);
// vim:ft=cpp:
|