-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for synced spins/pols (#31)
* Improve accuracy of finestructure constant * Remove QEDprocesses dependency in main Project.toml * Remove some unnecessary type parameters * Implement Synced Spins/Pols support * Add tests for synced spin and pol, update literate.jl example * Add test for synced Spins and multiple independent syncs * Add QED dev dependencies for CI
- Loading branch information
1 parent
057403a
commit ce35510
Showing
13 changed files
with
323 additions
and
54 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
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 |
---|---|---|
|
@@ -35,3 +35,6 @@ Manifest.toml | |
.julia | ||
**/.ipynb_checkpoints/ | ||
*.bkp | ||
|
||
*.gif | ||
*.jld2 |
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,7 @@ | ||
using Pkg | ||
|
||
Pkg.add(; url="https://github.com/QEDjl-project/QEDbase.jl", rev="dev") | ||
@warn "This repository depends on the dev branch of QEDbase.jl\n It is NOT ready for release!" | ||
|
||
Pkg.add(; url="https://github.com/QEDjl-project/QEDprocesses.jl.git", rev="dev") | ||
@warn "This repository depends on the dev branch of QEDprocesses.jl\n It is NOT ready for release!" |
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
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
using SafeTestsets | ||
|
||
@safetestset "Dummy" begin | ||
# TODO: There are no tests yet | ||
@test 1 == 1 | ||
@safetestset "Synced Spins and Polarizations" begin | ||
include("synced_spin_pol.jl") | ||
end |
Oops, something went wrong.