/usr/include/dolfin/swig/fem/pre.i is in libdolfin-dev 2017.2.0.post0-2.
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 | /* -*- C -*- */
// Copyright (C) 2009 Anders Logg
//
// This file is part of DOLFIN.
//
// DOLFIN is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// DOLFIN 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
//
// Modified by Garth Wells, 2007-2012.
// Modified by Kent-Andre Mardal, 2008.
// Modified by Johan Hake, 2008-2009.
//
// First added: 2007-08-16
// Last changed: 2013-10-15
// ===========================================================================
// SWIG directives for the DOLFIN fem kernel module (pre)
//
// The directives in this file are applied _before_ the header files of the
// modules has been loaded.
// ===========================================================================
//-----------------------------------------------------------------------------
// Rename solve so it wont clash with solve from la
//-----------------------------------------------------------------------------
%rename(fem_solve) dolfin::solve;
//-----------------------------------------------------------------------------
// Modifying the interface of FooProblem
//-----------------------------------------------------------------------------
%define PROBLEM_RENAMES(NAME)
%rename(_solution) dolfin::NAME ## Problem::solution;
%rename(_trial_space) dolfin::NAME ## Problem::trial_space;
%rename(_test_space) dolfin::NAME ## Problem::test_space;
%enddef
PROBLEM_RENAMES(LinearVariational)
PROBLEM_RENAMES(NonlinearVariational)
//-----------------------------------------------------------------------------
// To simplify handling of shared_ptr types in PyDOLFIN we ignore the
// reference version of constructors to these types
// -----------------------------------------------------------------------------
%ignore dolfin::DirichletBC::DirichletBC(std::shared_ptr<const FunctionSpace>,
std::shared_ptr<const GenericFunction>,
const std::vector<std::size_t>&,
std::string method="topological");
//-----------------------------------------------------------------------------
// Ignore GenericDofMap::cell_dofs
//-----------------------------------------------------------------------------
%ignore dolfin::GenericDofMap::cell_dofs;
%ignore dolfin::DofMap::cell_dofs;
//-----------------------------------------------------------------------------
// Ignore operator= for DirichletBC to avoid warning
//-----------------------------------------------------------------------------
%ignore dolfin::DirichletBC::operator=;
//-----------------------------------------------------------------------------
// Modifying the interface of DirichletBC
//-----------------------------------------------------------------------------
%rename (_function_space) dolfin::DirichletBC::function_space;
%ignore dolfin::DirichletBC::gather;
//-----------------------------------------------------------------------------
// Modifying the interface of Form
//-----------------------------------------------------------------------------
%rename (_function_space) dolfin::Form::function_space;
//-----------------------------------------------------------------------------
// Ignores domain assignment and operator== for Form class
//-----------------------------------------------------------------------------
%ignore dolfin::Form::dx;
%ignore dolfin::Form::ds;
%ignore dolfin::Form::dS;
%ignore dolfin::Form::dP;
%ignore dolfin::Form::operator==;
//-----------------------------------------------------------------------------
// Ignore dolfin::Cell versions of signatures as these now are handled by
// a typemap
//-----------------------------------------------------------------------------
%ignore dolfin::FiniteElement::tabulate_dof_coordinates(
boost::multi_array<double, 2>& coordinates,
const std::vector<double>& coordinate_dofs,
const Cell& cell) const;
%ignore dolfin::FiniteElement::tabulate_dof_coordinates(
boost::multi_array<double, 2>& coordinates,
const std::vector<double>& coordinate_dofs,
const Cell& cell) const;
%ignore dolfin::MultiMeshDofMap::tabulate_dof_coordinates(
boost::multi_array<double, 2>& coordinates,
const std::vector<double>& coordinate_dofs,
const ufc::cell& cell) const;
//-----------------------------------------------------------------------------
// Ignore dolfin::assemble_local (Eigen version)
//-----------------------------------------------------------------------------
%ignore dolfin::assemble_local(Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& A_e,
const Form& a, const Cell& cell);
//-----------------------------------------------------------------------------
// PETSc/SLEPc backend
//-----------------------------------------------------------------------------
#ifdef HAS_PETSC
// Only ignore C++ accessors if petsc4py is enabled
#ifdef HAS_PETSC4PY
%ignore dolfin::PETScDMCollection::get_dm(int);
#else
%ignore dolfin::PETScDMCollection::get_dm;
#endif
#endif
//-----------------------------------------------------------------------------
// Add a greedy typemap for dolfin::Cell to ufc::cell
//-----------------------------------------------------------------------------
%typemap(in)
const ufc::cell& (void *argp, bool dolfin_cell, int res)
{
// const ufc::cell& cell Typemap
// First try dolfin::Cell
res = SWIG_ConvertPtr($input, &argp, $descriptor(dolfin::Cell*), 0);
if (SWIG_IsOK(res))
{
dolfin_cell = true;
const dolfin::Cell* tmp_cell = reinterpret_cast<dolfin::Cell *>(argp);
$1 = new ufc::cell;
tmp_cell->get_cell_data(*($1));
tmp_cell->get_cell_topology(*($1));
}
else
{
dolfin_cell = false;
res = SWIG_ConvertPtr($input, &argp, $descriptor(ufc::cell*), 0);
if (SWIG_IsOK(res))
$1 = reinterpret_cast<ufc::cell *>(argp);
else
SWIG_exception(SWIG_TypeError, "expected a dolfin.Cell or a ufc::cell");
}
}
%typemap(freearg) const ufc::cell&
{
// If a dolfin cell was created delete it
if(dolfin_cell$argnum)
delete $1;
}
%typecheck(SWIG_TYPECHECK_POINTER) const ufc::cell&
{
// TYPECHECK const ufc::cell&
int res = SWIG_ConvertPtr($input, 0, $descriptor(dolfin::Cell*), 0);
$1 = SWIG_CheckState(res);
if (!$1)
{
res = SWIG_ConvertPtr($input, 0, $descriptor(ufc::cell*), 0);
$1 = SWIG_CheckState(res);
}
}
%define IN_TYPEMAP_STD_VECTOR_OF_STD_VECTOR_OF_SHARED_POINTERS(TYPE)
//-----------------------------------------------------------------------------
// The std::vector<std::vector<std::shared_ptr<dolfin::Type*> > >
// typecheck
//-----------------------------------------------------------------------------
%typecheck(SWIG_TYPECHECK_POINTER) std::vector<std::vector<std::shared_ptr<const dolfin::TYPE> > >
{
$1 = PyList_Check($input) ? 1 : 0;
}
//-----------------------------------------------------------------------------
// The std::vector<std::vector<std::shared_ptr<dolfin::Type*> > >
// typemap
//-----------------------------------------------------------------------------
%typemap (in) std::vector<std::vector<std::shared_ptr<const dolfin::TYPE> > > (std::vector<std::vector<std::shared_ptr<const dolfin::TYPE> > > tmp_vec_0, std::vector<std::shared_ptr<const dolfin::TYPE> > tmp_vec_1, std::shared_ptr<dolfin::TYPE> tempshared)
{
// IN_TYPEMAP_STD_VECTOR_OF_STD_VECTOR_OF_SHARED_POINTERS(TYPE)
if (!PyList_Check($input))
SWIG_exception(SWIG_TypeError, "list of lists of TYPE expected");
// Size of first list
int size_0 = PyList_Size($input);
int res = 0;
PyObject* py_item_0 = 0;
PyObject* py_item_1 = 0;
void* itemp = 0;
int newmem = 0;
tmp_vec_0.reserve(size_0);
// Iterate over first list
for (int i = 0; i < size_0; i++)
{
py_item_0 = PyList_GetItem($input, i);
// Check list items are list
if (!PyList_Check(py_item_0))
SWIG_exception(SWIG_TypeError, "list of lists of TYPE expected");
// Size of second list
int size_1 = PyList_Size(py_item_0);
tmp_vec_1.reserve(size_1);
// Iterate over second list
for (int j = 0; j < size_1; j++)
{
newmem = 0;
// Grab item from second list
py_item_1 = PyList_GetItem(py_item_0, j);
// Try convert it
res = SWIG_ConvertPtrAndOwn(py_item_1, &itemp, $descriptor(std::shared_ptr< dolfin::TYPE > *), 0, &newmem);
if (!SWIG_IsOK(res))
SWIG_exception(SWIG_TypeError, "expected a list of list of TYPE (Bad conversion)");
tempshared = *(reinterpret_cast<std::shared_ptr< dolfin::TYPE> *>(itemp));
tmp_vec_1.push_back(tempshared);
if (newmem & SWIG_CAST_NEW_MEMORY)
delete reinterpret_cast<std::shared_ptr< dolfin::TYPE> *>(itemp);
}
tmp_vec_0.push_back(tmp_vec_1);
tmp_vec_1.clear();
}
$1 = tmp_vec_0;
}
%enddef
//-----------------------------------------------------------------------------
// Instantiate typemap
//-----------------------------------------------------------------------------
IN_TYPEMAP_STD_VECTOR_OF_STD_VECTOR_OF_SHARED_POINTERS(Form)
#ifdef FEMMODULE // Conditional code for FEM module
//-----------------------------------------------------------------------------
// Instantiate Hierarchical classes
//-----------------------------------------------------------------------------
%template (HierarchicalForm) dolfin::Hierarchical<dolfin::Form>;
%template (HierarchicalLinearVariationalProblem) \
dolfin::Hierarchical<dolfin::LinearVariationalProblem>;
%template (HierarchicalNonlinearVariationalProblem) \
dolfin::Hierarchical<dolfin::NonlinearVariationalProblem>;
%template (HierarchicalDirichletBC) dolfin::Hierarchical<dolfin::DirichletBC>;
//-----------------------------------------------------------------------------
// Return NumPy arrays for GenericDofMap::cell_dofs(i)
//-----------------------------------------------------------------------------
%extend dolfin::GenericDofMap {
PyObject* _cell_dofs(std::size_t i)
{
auto dofs = self->cell_dofs(i);
return %make_numpy_array(1, dolfin_index)(dofs.size(), dofs.data(),
false);
}
}
#endif
|