blob: 4c95d5efade968353d45cf3af5ead09a4dc7d7c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#if !defined(IN_TEST)
#define IN_TEST 1
#endif
#include "DataTypes.h"
extern const Quadratic quadraticLines[];
extern const Quadratic quadraticModEpsilonLines[];
extern const Quadratic quadraticTests[][2];
extern const size_t quadraticLines_count;
extern const size_t quadraticModEpsilonLines_count;
extern const size_t quadraticTests_count;
|