diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-02-05 11:37:10 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-02-05 11:37:10 +0200 |
| commit | e13fd4bb2f36fc2386329d90a1e323c38fd2f63e (patch) | |
| tree | 86a5e9b22c34bd9c7b96a32b16ac1f32b5597134 /guests | |
| parent | 8e6ec28ab29ebb97e1c59e79d4f143dc4563a07c (diff) | |
| download | zkVMs-benchmarks-e13fd4bb2f36fc2386329d90a1e323c38fd2f63e.tar zkVMs-benchmarks-e13fd4bb2f36fc2386329d90a1e323c38fd2f63e.tar.gz zkVMs-benchmarks-e13fd4bb2f36fc2386329d90a1e323c38fd2f63e.zip | |
feat(guests/graph_coloring): Make coloring pairs type more succinct
Diffstat (limited to 'guests')
| -rw-r--r-- | guests/graph_coloring/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guests/graph_coloring/src/lib.rs b/guests/graph_coloring/src/lib.rs index 6dc1cf3..a0cdd3a 100644 --- a/guests/graph_coloring/src/lib.rs +++ b/guests/graph_coloring/src/lib.rs @@ -9,7 +9,7 @@ use alloc::vec::Vec; pub fn main( graph: Vec<Vec<bool>>, colors: u32, - coloring: Vec<Vec<u32>>, + coloring: Vec<[u32; 2]>, ) -> bool { // Does it use the correct amount of colors? let mut max_color = coloring[0][1]; |
