/usr/include/swiginac/swiginac.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 | /*
(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
*/
%module swiginac
%{
#include "ginac/ginac.h"
using namespace GiNaC;
#include <sstream>
%}
%{
#include <map>
#include<string>
std::map<std::string, symbol> symbol_collection;
const symbol & get_symbol(const std::string & name)
{
std::map<std::string, symbol>::iterator i = symbol_collection.find(name);
if( i != symbol_collection.end() )
{
return i->second;
}
return symbol_collection.insert(make_pair(name, symbol(name))).first->second;
}
%}
%include "pyexceptions.i"
%include std_sstream.i
%include std_string.i
%include std_map.i
%include std_vector.i
%include stl.i
%feature("autodoc", "1");
namespace GiNaC {
//%feature("ref") refcounted "$this->add_reference();"
//%feature("unref") refcounted "$this->remove_reference();"
%include "ex.i"
%include "typemaps.i"
%include "ptr.i"
%include "registrar.i"
%include "basic.i"
%include "symbol.i"
%include "numeric.i"
%include "relational.i"
%include "normal.i"
%include "constant.i"
%include "container.i"
%include "integral.i"
%include "matrix.i"
%include "expairseq.i"
%include "mul.i"
%include "ncmul.i"
%include "power.i"
%include "add.i"
%include "function.i"
%include "tensor.i"
%include "indexed.i"
%include "idx.i"
%include "symmetry.i"
%include "clifford.i"
%include "color.i"
%include "wildcard.i"
%include "flags.i"
%include "pseries.i"
%include "inifcns.i"
%include "archive.i"
%define ADD_REPR(name)
%extend name {
%pythoncode %{
def __repr__(self):
return self.__str__()
%}
};
%enddef
ADD_REPR(add);
ADD_REPR(mul);
ADD_REPR(power);
ADD_REPR(matrix);
ADD_REPR(clifford);
ADD_REPR(relational);
ADD_REPR(numeric);
ADD_REPR(function);
ADD_REPR(constant);
ADD_REPR(symbol);
ADD_REPR(integral);
ADD_REPR(idx);
ADD_REPR(varidx);
ADD_REPR(pseries);
};
// typedefs and template instantiations for stl containers with ginac objects
%typedef std::vector<GiNaC::ex> GiNaC::exvector;
%template(exvector) std::vector<GiNaC::ex>;
%typedef std::map<GiNaC::ex, GiNaC::ex, GiNaC::ex_is_less> GiNaC::exmap;
%template(exmap) std::map<GiNaC::ex, GiNaC::ex, GiNaC::ex_is_less>;
%pythoncode %{
_dict = {}
def get_symbols(name, number):
global _dict
if not _dict.has_key(name):
_dict[name] = [symbol("%s%d" % (name,i)) for i in xrange(number)]
else:
x = _dict[name]
n = len(x)
if n >= number:
return x[:]
else:
_dict[name] += [symbol("%s%d" % (name,i)) for i in xrange(n, number)]
return _dict[name][:]
%}
const GiNaC::symbol & get_symbol(const std::string & name);
%inline %{
namespace GiNaC {
ex parse_string(const std::string &str, lst &ls) {
return ex(str,ls);
}
ex * toex(lst& l) {
return new ex(l);
}
ex * toex(lst* l) {
return new ex(*l);
}
ex * toex(basic & b) {
return new ex(b);
}
}
%};
// vim:ft=cpp:
|