Add factorial benchmark

This commit is contained in:
Paul Ouellette 2021-05-01 17:16:20 -04:00
commit ba675a12c2
4 changed files with 67 additions and 3 deletions

View file

@ -73,7 +73,7 @@ macro_rules! critical {
macro_rules! __reduction_operation {
($f:ident) => {$f};
($op:tt) => {
|x, &y| {x $op y}
|x, y| {x $op y}
}
}