Skip to content

Commit

Permalink
Minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
oskari1 committed Dec 19, 2023
1 parent 277d92d commit e2844b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion axiom-profiler-GUI/src/results/filters/graph_filters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl Display for Filter {
},
Self::MaxDepth(depth) => write!(f, "Show nodes up to depth {}", depth),
Self::ShowLongestPath(node) => write!(f, "Showing longest path through node {}", node.index()),
Self::ShowMatchingLoops => write!(f, "Showing matching loops (experimental)"),
Self::ShowMatchingLoops => write!(f, "Showing matching loops"),
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion axiom-profiler-GUI/src/results/svg_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use num_format::{Locale, ToFormattedString};
use petgraph::dot::{Config, Dot};
use petgraph::graph::{NodeIndex, EdgeIndex};
use smt_log_parser::{
items::{QuantIdx, MatchKind, BlameKind},
items::{MatchKind, BlameKind},
parsers::{
z3::{
inst_graph::{EdgeType, InstGraph, InstInfo, EdgeInfo, VisibleGraphInfo},
Expand Down

0 comments on commit e2844b0

Please sign in to comment.