fix spacing

This commit is contained in:
Simon Gardling 2022-03-16 23:19:18 -04:00
parent 0a046438b2
commit a4b876111e

View File

@ -145,6 +145,7 @@ impl FunctionEntry {
.collect(), .collect(),
); );
} }
Some(self.output.derivative.as_ref().unwrap().clone()) Some(self.output.derivative.as_ref().unwrap().clone())
}; };
@ -155,6 +156,7 @@ impl FunctionEntry {
self.output.integral = self.output.integral =
Some((data.iter().map(|(x, y)| Bar::new(*x, *y)).collect(), area)); Some((data.iter().map(|(x, y)| Bar::new(*x, *y)).collect(), area));
} }
let cache = self.output.integral.as_ref().unwrap(); let cache = self.output.integral.as_ref().unwrap();
Some((cache.0.clone(), cache.1)) Some((cache.0.clone(), cache.1))
} }