~ubuntu-branches/ubuntu/vivid/regina-normal/vivid-proposed

« back to all changes in this revision

Viewing changes to python/triangulation/nedge.cpp

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2011-09-10 07:17:25 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: package-import@ubuntu.com-20110910071725-97n90tywdq60w2cr
Tags: 4.90-1
* New upstream release!
* The user interface has been ported from KDE3 to KDE4 (closes: #556318).
  Re-enabled the GUI as a result.
* The build system has been ported from autotools to cmake.
* The new upstream release builds fine on amd64 (closes: #624882).
* Moved the users' handbook into regina-normal-doc.
* Upgraded several suggests/recommends.  Upgraded regina-normal-mpi to
  depend on mpi-default-bin, and regina-normal to depend on both graphviz
  and regina-normal-doc (which the GUI expends to be present).  Upgraded
  regina-normal to recommend gap.
* Bumped standards-version to 3.9.2.0 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *  Regina - A Normal Surface Theory Calculator                           *
5
5
 *  Python Interface                                                      *
6
6
 *                                                                        *
7
 
 *  Copyright (c) 1999-2009, Ben Burton                                   *
 
7
 *  Copyright (c) 1999-2011, Ben Burton                                   *
8
8
 *  For further details contact Ben Burton (bab@debian.org).              *
9
9
 *                                                                        *
10
10
 *  This program is free software; you can redistribute it and/or         *
26
26
 
27
27
/* end stub */
28
28
 
 
29
#include <boost/python.hpp>
29
30
#include "triangulation/nboundarycomponent.h"
30
31
#include "triangulation/ncomponent.h"
31
32
#include "triangulation/nedge.h"
32
33
#include "triangulation/ntetrahedron.h"
33
34
#include "triangulation/nvertex.h"
34
35
#include "../globalarray.h"
35
 
#include <boost/python.hpp>
36
36
 
37
37
using namespace boost::python;
38
38
using regina::NEdge;
47
47
 
48
48
    GlobalArray2D<int> NEdge_edgeNumber(NEdge::edgeNumber, 4);
49
49
    GlobalArray2D<int> NEdge_edgeVertex(NEdge::edgeVertex, 6);
50
 
    GlobalArray<regina::NPerm> NEdge_ordering(NEdge::ordering, 6);
 
50
    GlobalArray<regina::NPerm4> NEdge_ordering(NEdge::ordering, 6);
51
51
 
52
52
    boost::python::list edge_getEmbeddings_list(const NEdge* e) {
53
53
        const std::deque<NEdgeEmbedding>& embs = e->getEmbeddings();