Skip to content

Commit

Permalink
Merge pull request #664 from cicirello/fix-lcs
Browse files Browse the repository at this point in the history
Performance improvement to LargestCommonSubgraph
  • Loading branch information
cicirello authored Aug 4, 2023
2 parents b485c0c + e997e0e commit f85813c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed potential int overflow in average computation in AbstractWeightedSelection.
* Fixed potential int overflow in average computation in AbstractStochasticSampler.
* Improved BlockInterchangeIterator.rollback().
* Performance improvement to LargestCommonSubgraph

### Dependencies

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ private static LargestCommonSubgraph createInstanceGeneralizedPetersenGraph(
* Private internal class for use within the LargestCommonSubgraph class for representing
* edges.
*/
private class InternalEdge {
private static class InternalEdge {
private final int x;
private final int y;

Expand Down

0 comments on commit f85813c

Please sign in to comment.