Skip to content

Commit 09004cf

Browse files
committed
prevent long vector
1 parent 66845a9 commit 09004cf

File tree

1 file changed

+1
-1
lines changed
  • examples/hard-core-lattice-gas

1 file changed

+1
-1
lines changed

examples/hard-core-lattice-gas/main.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
a, b = (1, 0), (0.5, 0.5*sqrt(3))
1717
Na, Nb = 10, 10
18-
sites = vec([50 .* (a .* i .+ b .* j) for i=1:Na, j=1:Nb])
18+
sites = vec([50 .* (a .* i .+ b .* j) for i=1:Na, j=1:Nb]);
1919

2020
# There exists blockade interactions between hard-core particles.
2121
# We connect two lattice sites within blockade radius by an edge.

0 commit comments

Comments
 (0)