bench implicit matrix

This commit is contained in:
2020-08-31 21:03:39 +02:00
parent 311bd6de12
commit 0ff0c5790c
2 changed files with 21 additions and 3 deletions

View File

@@ -184,7 +184,6 @@ impl<SBP: SbpOperator2d> System<SBP> {
let b = self.sys.0.clone();
let tnow = std::time::Instant::now();
sbp::utils::jacobi_method(
lhs,
b.as_slice().unwrap(),
@@ -192,8 +191,6 @@ impl<SBP: SbpOperator2d> System<SBP> {
self.sys.1.as_slice_mut().unwrap(),
10,
);
let elapsed = tnow.elapsed();
println!("{:?}", elapsed);
}
}