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

« back to all changes in this revision

Viewing changes to engine/subcomplex/nlayeredsurfacebundle.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
 *  Computational Engine                                                  *
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         *
45
45
    const NTxIDiagonalCore core_T_10_1(10, 1);
46
46
    const NTxIDiagonalCore core_T_10_2(10, 2);
47
47
    const NTxIDiagonalCore core_T_10_3(10, 3);
 
48
    const NTxIDiagonalCore core_T_11_1(11, 1);
 
49
    const NTxIDiagonalCore core_T_11_2(11, 2);
 
50
    const NTxIDiagonalCore core_T_11_3(11, 3);
 
51
    const NTxIDiagonalCore core_T_12_1(12, 1);
 
52
    const NTxIDiagonalCore core_T_12_2(12, 2);
 
53
    const NTxIDiagonalCore core_T_12_3(12, 3);
 
54
    const NTxIDiagonalCore core_T_12_4(12, 4);
48
55
    const NTxIParallelCore core_T_p;
49
56
}
50
57
 
87
94
        return ans;
88
95
    if ((ans = hunt(tri, core_T_10_3)))
89
96
        return ans;
 
97
    if ((ans = hunt(tri, core_T_11_1)))
 
98
        return ans;
 
99
    if ((ans = hunt(tri, core_T_11_2)))
 
100
        return ans;
 
101
    if ((ans = hunt(tri, core_T_11_3)))
 
102
        return ans;
 
103
    if ((ans = hunt(tri, core_T_12_1)))
 
104
        return ans;
 
105
    if ((ans = hunt(tri, core_T_12_2)))
 
106
        return ans;
 
107
    if ((ans = hunt(tri, core_T_12_3)))
 
108
        return ans;
 
109
    if ((ans = hunt(tri, core_T_12_4)))
 
110
        return ans;
90
111
    if ((ans = hunt(tri, core_T_p)))
91
112
        return ans;
92
113