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

« back to all changes in this revision

Viewing changes to engine/snappea/kernel/canonize_part_1.c

  • 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:
83
83
 
84
84
#include "kernel.h"
85
85
#include "canonize.h"
 
86
#include "kernel_namespace.h"
86
87
 
87
88
#define MAX_ATTEMPTS            64
88
89
#define MAX_RETRIANGULATIONS    64
95
96
static Boolean      concave_edge(EdgeClass *edge);
96
97
static Boolean      attempt_two_to_three(Triangulation *manifold);
97
98
static Boolean      concave_face(Tetrahedron *tet, FaceIndex f);
98
 
static double       sum_of_tilts(Tetrahedron *tet0, FaceIndex f0);
 
99
static Real       sum_of_tilts(Tetrahedron *tet0, FaceIndex f0);
99
100
static Boolean      would_create_negatively_oriented_tetrahedra(Tetrahedron *tet0, FaceIndex f0);
100
101
static Boolean      validate_canonical_triangulation(Triangulation *manifold);
101
102
 
480
481
}
481
482
 
482
483
 
483
 
static double sum_of_tilts(
 
484
static Real sum_of_tilts(
484
485
    Tetrahedron *tet0,
485
486
    FaceIndex   f0)
486
487
{
561
562
 
562
563
    return TRUE;
563
564
}
 
565
#include "end_namespace.h"