Now code gen is finished and we just have testing

This commit is contained in:
microproofs
2023-07-25 14:18:47 -04:00
committed by Kasey
parent 518bea5be4
commit 6eeb282dee
4 changed files with 210 additions and 152 deletions

View File

@@ -36,6 +36,13 @@ impl ExBudget {
cpu: 10000000000,
}
}
pub fn max() -> Self {
ExBudget {
mem: 14000000000,
cpu: 10000000000000,
}
}
}
impl Default for ExBudget {