├── .gitignore ├── README.md ├── args.py ├── dTRG.py ├── expm.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | __py_cache__/ 4 | 5 | Result/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TensorBFS/dTRG/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TensorBFS/dTRG/HEAD/args.py -------------------------------------------------------------------------------- /dTRG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TensorBFS/dTRG/HEAD/dTRG.py -------------------------------------------------------------------------------- /expm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TensorBFS/dTRG/HEAD/expm.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TensorBFS/dTRG/HEAD/utils.py --------------------------------------------------------------------------------