Skip to content

Commit

Permalink
Bugfix: keep number of vertices in split_catenation
Browse files Browse the repository at this point in the history
  • Loading branch information
Liozou committed Oct 28, 2024
1 parent c15520e commit 9e32bfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.6'
version: '1.11'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PeriodicGraphs"
uuid = "18c5b727-b240-4874-878a-f2e242435bab"
authors = ["Lionel Zoubritzky [email protected]"]
version = "0.10.2"
version = "0.10.3"

[deps]
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
Expand Down
2 changes: 1 addition & 1 deletion src/algorithms/dimensionality.jl
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ function _explore_one_component!(expected, encountered, visited, graph::Periodic
idx = minimum(keys(component))
@assert expected[idx] == 0
expected[idx] = Int(det(catenationmat))
encountered[idx] = (PeriodicGraph{N}(newedges), [OffsetVertexIterator(nullofs, Q)], catenationmat, d)
encountered[idx] = (PeriodicGraph{N}(length(Q), newedges), [OffsetVertexIterator(nullofs, Q)], catenationmat, d)
idx
end

Expand Down

2 comments on commit 9e32bfe

@Liozou
Copy link
Owner Author

@Liozou Liozou commented on 9e32bfe Oct 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/118202

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.3 -m "<description of version>" 9e32bfe3221e1508bb3448d1e9b8b7093eae13aa
git push origin v0.10.3

Please sign in to comment.