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

« back to all changes in this revision

Viewing changes to python/triangulation/nedge.cpp

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2014-08-29 17:37:46 UTC
  • mfrom: (19.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140829173746-igmqc9b67y366a7u
Tags: 4.96-1
New upstream release.

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-2013, Ben Burton                                   *
 
7
 *  Copyright (c) 1999-2014, 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         *
81
81
            return_value_policy<reference_existing_object>())
82
82
        .def("getEdge", &NEdgeEmbedding::getEdge)
83
83
        .def("getVertices", &NEdgeEmbedding::getVertices)
 
84
        .def(self == self)
 
85
        .def(self != self)
84
86
    ;
85
87
 
86
88
    scope s = class_<NEdge, bases<regina::ShareableObject>,
87
89
            std::auto_ptr<NEdge>, boost::noncopyable>("NEdge", no_init)
 
90
        .def("index", &NEdge::index)
88
91
        .def("getEmbeddings", edge_getEmbeddings_list)
89
92
        .def("getNumberOfEmbeddings", &NEdge::getNumberOfEmbeddings)
90
93
        .def("getEmbedding", &NEdge::getEmbedding,