Skip to content

Commit 9e32bfe

Browse files
committed
Bugfix: keep number of vertices in split_catenation
1 parent c15520e commit 9e32bfe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: julia-actions/setup-julia@latest
1616
with:
17-
version: '1.6'
17+
version: '1.11'
1818
- name: Install dependencies
1919
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2020
- name: Build and deploy

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PeriodicGraphs"
22
uuid = "18c5b727-b240-4874-878a-f2e242435bab"
33
authors = ["Lionel Zoubritzky lionel.zoubritzky@gmail.com"]
4-
version = "0.10.2"
4+
version = "0.10.3"
55

66
[deps]
77
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"

src/algorithms/dimensionality.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ function _explore_one_component!(expected, encountered, visited, graph::Periodic
360360
idx = minimum(keys(component))
361361
@assert expected[idx] == 0
362362
expected[idx] = Int(det(catenationmat))
363-
encountered[idx] = (PeriodicGraph{N}(newedges), [OffsetVertexIterator(nullofs, Q)], catenationmat, d)
363+
encountered[idx] = (PeriodicGraph{N}(length(Q), newedges), [OffsetVertexIterator(nullofs, Q)], catenationmat, d)
364364
idx
365365
end
366366

0 commit comments

Comments
 (0)