tebdol

Simulation of ultracold atoms in optical lattices
git clone https://miroslavurbanek.com/git/tebdol.git
Log | Files | Refs | README

tebdol.asd (604B)


      1 (in-package :asdf-user)
      2 
      3 (defsystem "tebdol"
      4   :description "TEBDOL is an implementation of the time-evolving block
      5   decimation algorithm for simulating evolution of ultracold atoms in
      6   optical lattices."
      7   :version "0.3.0"
      8   :author "Miroslav Urbanek <miroslav.urbanek@mff.cuni.cz>"
      9   :licence "GPL-3+"
     10   :serial t
     11   :components ((:file "util")
     12 	       (:file "blas")
     13 	       (:file "array")
     14 	       (:file "exp")
     15 	       (:file "tensor")
     16 	       (:file "serial")
     17 	       (:file "mpi")
     18 	       (:file "mps")
     19 	       (:file "part")
     20 	       (:file "tebd")
     21 	       (:file "bhm")
     22 	       (:file "ttns")))