Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support evolution basis FkTables #75

Merged
merged 13 commits into from
Oct 18, 2021
9 changes: 9 additions & 0 deletions pineappl/src/fk_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,15 @@ impl FkTable {
self.grid.write(writer)
}

/// Optimize grid
///
/// # Errors
///
/// TODO
pub fn optimize(&mut self) {
self.grid.optimize()
}

/// Propagate convolute to grid
pub fn convolute(
&self,
Expand Down
Loading