Skip to content

Commit

Permalink
comment out unused fields (to be uncommented when implementing interp…
Browse files Browse the repository at this point in the history
…olation)
  • Loading branch information
mscroggs committed Sep 5, 2023
1 parent 054fdc3 commit e2a1991
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions element/src/element.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ pub struct CiarletElement {
dim: usize,
coefficients: Array3D<f64>,
entity_dofs: [AdjacencyList<usize>; 4],
interpolation_points: [Vec<Array2D<f64>>; 4],
interpolation_weights: [Vec<Array3D<f64>>; 4],
// interpolation_points: [Vec<Array2D<f64>>; 4],
// interpolation_weights: [Vec<Array3D<f64>>; 4],
}

impl CiarletElement {
Expand Down Expand Up @@ -205,8 +205,8 @@ impl CiarletElement {
dim,
coefficients,
entity_dofs,
interpolation_points: new_pts,
interpolation_weights: new_wts,
// interpolation_points: new_pts,
// interpolation_weights: new_wts,
}
}
}
Expand Down

0 comments on commit e2a1991

Please sign in to comment.