We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Although <:AbstractLattice is allowed as a type parameter it doesn't currently work for arbitrary lattices.
<:AbstractLattice
Among others, rand is assuming a cubic lattice.
rand
julia> m = IsingModel(L=3, dims=2, l=l, neighs=zeros(Int, 0,0)) 2D-Ising model, L=3 (36 sites) julia> mc = MC(m, T=0.1234) Monte Carlo simulation Model: 2D-Ising model, L=3 (36 sites) Beta: 8.1 (T ≈ 0.123)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Although
<:AbstractLattice
is allowed as a type parameter it doesn't currently work for arbitrary lattices.Among others,
rand
is assuming a cubic lattice.The text was updated successfully, but these errors were encountered: