Skip to content

Commit

Permalink
Rename bubble sort to quadratic sort
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgoergens committed Jan 9, 2025
1 parent dfce3af commit 63356f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ceno_host/tests/test_elf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn test_bubble_sorting() -> Result<()> {

let all_messages = messages_to_strings(&ceno_host::run(
CENO_PLATFORM,
ceno_examples::bubble_sorting,
ceno_examples::quadratic_sorting,
&hints,
));
for msg in &all_messages {
Expand Down
2 changes: 1 addition & 1 deletion examples-builder/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const EXAMPLES: &[&str] = &[
"hints",
"sorting",
"median",
"bubble_sorting",
"quadratic_sorting",
"hashing",
];
const CARGO_MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");
Expand Down

0 comments on commit 63356f4

Please sign in to comment.