about summary refs log tree commit diff
path: root/squash/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'squash/src/main.rs')
-rw-r--r--squash/src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/squash/src/main.rs b/squash/src/main.rs
index c0cea51..878ae37 100644
--- a/squash/src/main.rs
+++ b/squash/src/main.rs
@@ -1,7 +1,7 @@
 use std::time::Duration;
 
 use colorsquash::{
-	selection::{Kmeans, SortSelect},
+	selection::{HighestBits, Kmeans, SortSelect},
 	SquasherBuilder,
 };
 
@@ -34,6 +34,7 @@ fn main() -> Result<(), anyhow::Error> {
 			builder = builder.selector(sorsel);
 		}
 		cli::Selector::Kmeans => builder = builder.selector(Kmeans { max_iter: 10 }),
+		cli::Selector::HighestBits => builder = builder.selector(HighestBits {}),
 	};
 
 	let mut start = std::time::Instant::now();