-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'develop/develop'
- Loading branch information
Showing
160 changed files
with
14,406 additions
and
6,586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/sh | ||
# | ||
# ############# Note ################################ | ||
# Before packing, you should clean the GIT directory as | ||
# $ git clean -f -d -x | ||
# ##################################################### | ||
# | ||
# Version ID | ||
# | ||
major=`awk '$2=="VERSION_MAJOR"{print $3}' src/mVMC/include/version.h` | ||
minor=`awk '$2=="VERSION_MINOR"{print $3}' src/mVMC/include/version.h` | ||
patch=`awk '$2=="VERSION_PATCH"{print $3}' src/mVMC/include/version.h` | ||
vid=`echo ${major}.${minor}.${patch}` | ||
# | ||
mkdir mVMC-${vid} | ||
# | ||
cp -rf * mVMC-${vid} | ||
# | ||
# Build docments | ||
# | ||
cd mVMC-${vid}/doc/jp | ||
make -f makefile_doc_jp | ||
sed -i -e "s/mathjax/pngmath/g" conf.py | ||
make latexpdfja | ||
make html | ||
cd ../en | ||
sed -i -e "s/mathjax/pngmath/g" conf.py | ||
make latexpdfja | ||
make html | ||
cd ../../ | ||
# | ||
# Remove some files | ||
# | ||
find ./ -name ".git*" -delete | ||
rm dist.sh | ||
rm -rf mVMC-${vid} | ||
# | ||
# Pack | ||
# | ||
cd ../ | ||
tar czvf mVMC-${vid}.tar.gz mVMC-${vid} | ||
rm -rf mVMC-${vid} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.. _Tahara2008: http://dx.doi.org/10.1143/JPSJ.77.114701 | ||
.. _Mutsuo2008: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT | ||
.. _PFAPACK: https://dl.acm.org/citation.cfm?doid=2331130.2331138 | ||
.. _HPhi: http://ma.cms-initiative.jp/ja/listapps/hphi | ||
.. _Morita2015: http://journals.jps.jp/doi/abs/10.7566/JPSJ.84.024720 | ||
.. _Misawa2014: https://journals.aps.org/prb/abstract/10.1103/PhysRevB.90.115137 | ||
.. _ImadaMiyake: http://journals.jps.jp/doi/abs/10.1143/JPSJ.79.112001 | ||
.. _Gros: https://www.sciencedirect.com/science/article/pii/0003491689900778 | ||
.. _NeuscammanUmrigarChan: https://journals.aps.org/prb/abstract/10.1103/PhysRevB.85.045103 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Acknowledgement | ||
=============== | ||
|
||
We would like to express our sincere gratitude to Mr. Daisuke Tahara for | ||
providing us his code of variational Monte Carlo method. A part of mVMC | ||
is based on his original code. We also acknowledge Dr. Hiroshi Shinaoka, | ||
Dr. Youhei Yamaji, Dr. Moyuru Kurita, and Dr. Ryui Kaneko for their | ||
cooperation on developing mVMC. We would also like to thank the support | ||
from “Project for advancement of software usability in materials | ||
science” by The Institute for Solid State Physics, The University of | ||
Tokyo, for development of mVMC ver.0.1, ver. 0.2, and ver. 1.0. |
Oops, something went wrong.