fix: formatting

This commit is contained in:
Volodymyr Orlov
2020-08-27 14:17:49 -07:00
parent e5b412451f
commit 762bc3d765
3 changed files with 11 additions and 12 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
//! # Nearest Neighbors
use serde::{Deserialize, Serialize};
use crate::algorithm::neighbour::cover_tree::CoverTree;
use crate::algorithm::neighbour::linear_search::LinearKNNSearch;
use crate::math::distance::Distance;
use crate::math::num::FloatExt;
use serde::{Deserialize, Serialize};
///
///
pub mod knn_classifier;
pub mod knn_regressor;