1/* 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 */ 7#include "DataTypes.h" 8#include "DataTypes_Test.h" 9 10extern const Cubic pointDegenerates[]; 11extern const Cubic notPointDegenerates[]; 12extern const Cubic tests[][2]; 13extern Cubic hexTests[][2]; 14 15extern void convert_testx(); 16 17extern const Cubic lines[]; 18extern const Cubic notLines[]; 19extern const Cubic modEpsilonLines[]; 20extern const Cubic lessEpsilonLines[]; 21extern const Cubic negEpsilonLines[]; 22 23extern const size_t pointDegenerates_count; 24extern const size_t notPointDegenerates_count; 25extern const size_t tests_count; 26extern const size_t hexTests_count; 27extern const size_t lines_count; 28extern const size_t notLines_count; 29extern const size_t modEpsilonLines_count; 30extern const size_t lessEpsilonLines_count; 31extern const size_t negEpsilonLines_count; 32