/usr/include/swiginac/normal.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 | /*
(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
*/
ex quo(const ex &a, const ex &b, const ex &x, bool check_args = true);
ex quo(const ex &a, const ex &b, const ex &x) throw(std::invalid_argument);
ex rem(const ex &a, const ex &b, const ex &x, bool check_args = true);
ex decomp_rational(const ex &a, const ex &x);
ex prem(const ex &a, const ex &b, const ex &x, bool check_args = true);
ex sprem(const ex &a, const ex &b, const ex &x, bool check_args = true);
bool divide(const ex &a, const ex &b, ex &q, bool check_args = true);
ex gcd(const ex &a, const ex &b, ex *ca = NULL, ex *cb = NULL, bool check_args = true);
ex gcd(const ex &a, const ex &b) throw(std::invalid_argument);
ex lcm(const ex &a, const ex &b, bool check_args = true);
ex sqrfree(const ex &a, const lst &l = lst());
ex sqrfree_parfrac(const ex & a, const symbol & x);
ex collect_common_factors(const ex & e);
ex resultant(const ex & e1, const ex & e2, const ex & s);
/* From normal.cpp */
//static void add_symbol(const ex &s, sym_desc_vec &v);
//extern void collect_symbols(const ex &e, sym_desc_vec &v);
//extern void get_symbol_stats(const ex &a, const ex &b, sym_desc_vec &v);
// vim:ft=cpp:
|