// Copyright 2016 Austin Bonander // // Licensed under the Apache License, Version 2.0, or the MIT license , at your option. This file may not be // copied, modified, or distributed except according to those terms. extern crate vec_vp_tree; use vec_vp_tree::VpTree; fn main() { let vp_tree = VpTree::new(0i32 .. 8); println!("{:?}", vp_tree); }