blob: 27436f8dc73d216d0249a6c6e1d20273ecc30df6 [file] [log] [blame]
caryclark@google.com9e49fb62012-08-27 14:11:33 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
caryclark@google.comb45a1b42012-05-18 20:50:33 +00007#if !defined(IN_TEST)
8 #define IN_TEST 1
9#endif
10
caryclark@google.com639df892012-01-10 21:46:10 +000011#include "DataTypes.h"
12
13extern const Cubic pointDegenerates[];
14extern const Cubic notPointDegenerates[];
15extern const Cubic tests[][2];
16extern Cubic hexTests[][2];
17
18extern void convert_testx();
19
20extern const Cubic lines[];
21extern const Cubic notLines[];
22extern const Cubic modEpsilonLines[];
23extern const Cubic lessEpsilonLines[];
24extern const Cubic negEpsilonLines[];
caryclark@google.com639df892012-01-10 21:46:10 +000025
26extern const size_t pointDegenerates_count;
27extern const size_t notPointDegenerates_count;
28extern const size_t tests_count;
29extern const size_t hexTests_count;
30extern const size_t lines_count;
31extern const size_t notLines_count;
32extern const size_t modEpsilonLines_count;
33extern const size_t lessEpsilonLines_count;
34extern const size_t negEpsilonLines_count;