reduce formal proof depth to avoid z3 eating all our memory

This commit is contained in:
Jacob Lifshay 2024-10-15 23:50:51 -07:00
parent b54e40561f
commit a305ad51b2
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c

View file

@ -131,17 +131,20 @@ mod tests {
alloc_at_once: NonZeroUsize,
reg_num_width: usize,
) {
let reg_count = 1usize << reg_num_width;
// enough time to completely allocate all regs, free whatever we please,
// allocate one, then completely free the rest
let history_len = (3 + 2 * (1 << reg_num_width)).max(5);
let mut history_len = 1;
history_len += reg_count.div_ceil(alloc_at_once.get());
history_len += reg_count.div_ceil(free_at_once.get());
assert_formal(
format_args!(
"test_unit_free_regs_tracker_{free_at_once}_{alloc_at_once}_{reg_num_width}"
),
unit_free_regs_tracker_test(free_at_once, alloc_at_once, reg_num_width, history_len),
FormalMode::Prove,
history_len as u64 + 2,
None,
history_len as u64,
Some("z3"),
ExportOptions {
simplify_enums: Some(SimplifyEnumsKind::ReplaceWithBundleOfUInts),
..ExportOptions::default()