~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/mesh/GeometricPredicates.cpp

  • Committer: Niclas Jansson
  • Date: 2011-06-10 14:33:43 UTC
  • Revision ID: njansson@csc.kth.se-20110610143343-d21p4am8rghiojfm
Added rudimentary header to binary files

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#include <stdio.h>
7
7
#include <stdlib.h>
8
8
#include <math.h>
9
 
#include "GeometricPredicates.h"
 
9
#include <dolfin/mesh/GeometricPredicates.h>
10
10
 
11
11
using namespace dolfin;
12
12
 
14
14
{
15
15
 
16
16
  // FIXME:
17
 
  // "predicates_init.h" should be generated for the target architecture.
18
 
  // Look into "rounding.h", why does it need "config.h"?
 
17
  // "predicates_init.h> should be generated for the target architecture.
 
18
  // Look into "rounding.h>, why does it need "config.h"?
19
19
 
20
20
/*****************************************************************************/
21
21
/*                                                                           */
137
137
#define USE_PREDICATES_INIT
138
138
 
139
139
#ifdef USE_PREDICATES_INIT
140
 
#include "predicates_init.h"
 
140
#include <dolfin/mesh/predicates_init.h>
141
141
#endif /* USE_PREDICATES_INIT */
142
142
 
143
143
/* FPU control. We MUST have only double precision (not extended precision) */
144
 
#include "rounding.h"
 
144
#include <dolfin/mesh/rounding.h>
145
145
 
146
146
/* On some machines, the exact arithmetic routines might be defeated by the  */
147
147
/*   use of internal extended precision floating-point registers.  Sometimes */