Fix compile

(cherry picked from commit 7051379f020f2bef578d978a0d6a0d6e2680a00d)
This commit is contained in:
Guillume DIDIER 2022-05-12 11:40:20 +02:00 committed by Guillaume DIDIER
parent ffb763bed4
commit 0765552240

View File

@ -167,7 +167,7 @@ fn main() {
Box::new(|k: usize| {
let f = Box::new(move |i, j| {
let v = vec![
let mut v = vec![
i,j,
];
v.truncate(k);
@ -189,7 +189,7 @@ fn main() {
] {
for k in [0,1,2] {
let exp = class.1(k);
experiments.push((format!("{}{}", class.0, k),exp.1, exp.2, exp.3));
experiments.push((format!("{}{}", class.0, k),exp.0, exp.1, exp.2));
}
}