This is a naive implement of DQMC(Determinant Quantum Monte-Carlo) method.
To use this Notebook, you should have Julia installed at least. Visit Julia download website for more information to install.
After Julia installed on your system, install IJulia to enable Julia kernel in Jupyter.
] add IJulia
Start Jupyter Notebook
using IJulia
notebook()
If Jupyter notebook is not installed on your system. This step will install a miniconda environment as backend. This won't conflict with your other Python install. For more information, visit IJulia's website.
If you don't prefer Jupyter Notebook, you can run it with julia REPL.
include("main.jl")
main()
This project is licensed under GNU GPLv3.