Skip to content

Commit

Permalink
remove: dbg points
Browse files Browse the repository at this point in the history
  • Loading branch information
whichqua committed Jun 5, 2024
1 parent 9dadc09 commit 3f2c057
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/hints/bootloader_hints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,6 @@ mod tests {
define_segments!(vm, 2, [((1, 0), 2)]);
// let ids_data = ids_data!["n_subtasks"];
let ids_data = HashMap::from([("n_subtasks".to_string(), HintReference::new_simple(-1))]);
dbg!(&ids_data);
let ap_tracking = ApTracking::default();

let mut exec_scopes = ExecutionScopes::new();
Expand Down
1 change: 0 additions & 1 deletion src/hints/inner_select_builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ mod tests {
vm.set_fp(3);
add_segments!(vm, 2);
let ids_data = ids_data!["selected_encodings", "all_encodings", "select_builtin"];
// dbg!(&ids_data);
let ap_tracking = ApTracking::new();

let mut exec_scopes = ExecutionScopes::new();
Expand Down
5 changes: 0 additions & 5 deletions src/hints/simple_bootloader_hints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,6 @@ mod tests {
exec_scopes.insert_value(vars::SIMPLE_BOOTLOADER_INPUT, simple_bootloader_input);

let ids_data = ids_data!["n_tasks", "task"];
// let ids_data = HashMap::from([
// ("n_tasks".to_string(), HintReference::new_simple(-2)),
// ("task".to_string(), HintReference::new_simple(-1)),
// ]);
dbg!(&ids_data);
let ap_tracking = ApTracking::new();
set_current_task(&mut vm, &mut exec_scopes, &ids_data, &ap_tracking)
.expect("Hint failed unexpectedly");
Expand Down

0 comments on commit 3f2c057

Please sign in to comment.