Skip to content

Commit

Permalink
more fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
vcanumalla committed Apr 5, 2022
1 parent 09bf198 commit 96aff0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/language/language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2021,11 +2021,10 @@ impl egg::Analysis<Language> for MyAnalysis {
crate::language::RelayOperator::RelayCopy => {
let mut out = match &egraph[params[1]].data {
MyAnalysisData::AccessPattern(a) => a.clone(),
_ => panic!()
_ => panic!(),
};
out.access_pattern_shape_settled = false;
MyAnalysisData::AccessPattern(out)

}
crate::language::RelayOperator::RelayTranspose => {
assert_eq!(params.len(), 3);
Expand Down

0 comments on commit 96aff0c

Please sign in to comment.