diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-27 21:25:50 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-05-05 22:33:24 -0600 |
commit | 9b04b4e2a1147ed2a30e4f86dd403851036b3b51 (patch) | |
tree | ee0b612746e2a4acaeadf40bbac76fdad939cf6b /tests/libdimension/prtree.c | |
parent | 72a0b0d511822d7521e2d44f6e468f3d1870521e (diff) | |
download | dimension-9b04b4e2a1147ed2a30e4f86dd403851036b3b51.tar.xz |
Replace BVSTs with priority R-trees.
Diffstat (limited to 'tests/libdimension/prtree.c')
-rw-r--r-- | tests/libdimension/prtree.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/libdimension/prtree.c b/tests/libdimension/prtree.c new file mode 100644 index 0000000..c75d8da --- /dev/null +++ b/tests/libdimension/prtree.c @@ -0,0 +1,31 @@ +/************************************************************************* + * Copyright (C) 2010 Tavian Barnes <tavianator@gmail.com> * + * * + * This file is part of The Dimension Test Suite. * + * * + * The Dimension Test Suite is free software; you can redistribute it * + * and/or modify it under the terms of the GNU General Public License as * + * published by the Free Software Foundation; either version 3 of the * + * License, or (at your option) any later version. * + * * + * The Dimension Test Suite is distributed in the hope that it will be * + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program. If not, see <http://www.gnu.org/licenses/>. * + *************************************************************************/ + +/* + * Basic tests of PR-trees + */ + +#include "../../libdimension/dimension_impl.h" +#include <stdlib.h> + +int +main() +{ + return EXIT_SUCCESS; +} |