-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from ytdHuang/yide-patch-1
Make `BosonBath` align with `QuTiP-BoFiN`
- Loading branch information
Showing
13 changed files
with
203 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: 🐛 Bug Report | ||
description: Spotted a bug? Report it to us! | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug Description | ||
description: Tell us what went wrong (including what triggered the bug) | ||
placeholder: "A clear and concise description of what the bug is, and the steps to reproduce it" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code-to-reproduce | ||
attributes: | ||
label: Code to Reproduce the Bug | ||
description: Please provide a minimal working example. Paste your code directly (It will be automatically formatted, so there's no need for backticks) | ||
placeholder: "using HierarchicalEOM\nM_S(sigmax())" | ||
render: julia | ||
- type: textarea | ||
id: bug-output | ||
attributes: | ||
label: Code Output | ||
description: Please paste the relevant output here (automatically formatted) | ||
placeholder: "Schrodinger Eq. type HEOMLS matrix acting on even-parity ADOs\nsystem dims = [2]\nnumber of ADOs N = 1\ndata =\nMatrixOperator(4 × 4)" | ||
render: shell | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected Behaviour | ||
description: What should have happened instead? | ||
placeholder: "A clear and concise description of what you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: your-environment | ||
attributes: | ||
label: Your Environment | ||
description: Please use `HierarchicalEOM.about()` or `HierarchicalEOM.versioninfo()` to get the information about your environment and paste it here (automatically formatted) | ||
placeholder: "Julia Ver. ***\nHierarchicalEOM Ver. ***\nQuantumToolbox Ver. ***\nSciMLOperators Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***" | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add anything else you want to tell us. | ||
placeholder: "You can include output of `using Pkg; Pkg.status()`, `using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)`, or even images, plots, etc." | ||
- type: markdown | ||
id: thank-you | ||
attributes: | ||
value: Thanks for taking the time to fill out this bug report! |
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,36 @@ | ||
name: 🚀 Feature Request | ||
description: Suggest an idea for this project! | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Problem Description | ||
description: Give us a clear and concise description of what the problem is! | ||
placeholder: "Example - It would be better if [...]" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: proposed-solution | ||
attributes: | ||
label: Proposed Solution | ||
description: Give us a description of your proposed solution | ||
placeholder: "A clear and concise description of what you want to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternate-solutions | ||
attributes: | ||
label: Alternate Solutions | ||
description: Are there other ways of implementing this feature? | ||
placeholder: "A clear and concise description of any alternative solutions or features you've considered" | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: You can tell us more about your idea, add code snippets or images, etc. | ||
placeholder: "Give us more context or screenshots about the feature request here" | ||
- type: markdown | ||
id: thank-you | ||
attributes: | ||
value: Thanks for taking the time to fill out this feature request! |
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,15 @@ | ||
name: 🤔 Others | ||
description: Tell us about issues that aren't exactly bugs or features | ||
body: | ||
- type: textarea | ||
id: issue-description | ||
attributes: | ||
label: Describe the Issue! | ||
description: Tell us about your issue. You can include screenshots, code snippets, etc. | ||
placeholder: "Please describe the issue here" | ||
validations: | ||
required: true | ||
- type: markdown | ||
id: thank-you | ||
attributes: | ||
value: Thanks for taking the time to fill out this issue! |
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,18 @@ | ||
## Checklist | ||
Thank you for contributing to `HierarchicalEOM.jl`! Please make sure you have finished the following tasks before opening the PR. | ||
|
||
- [ ] Please read [Contributing to QuantumToolbox.jl](https://qutip.org/QuantumToolbox.jl/stable/resources/contributing). | ||
- [ ] Any code changes were done in a way that does not break public API. | ||
- [ ] Appropriate tests were added and tested locally by running: `make test`. | ||
- [ ] Any code changes should be `julia` formatted by running: `make format`. | ||
- [ ] All documents (in `docs/` folder) related to code changes were updated and able to build locally by running: `make docs`. | ||
|
||
Request for a review after you have completed all the tasks. If you have not finished them all, you can also open a [Draft Pull Request](https://github.blog/2019-02-14-introducing-draft-pull-requests/) to let the others know this on-going work. | ||
|
||
## Description | ||
Describe the proposed change here. | ||
|
||
## Related issues or PRs | ||
Please mention the related issues or PRs here. If the PR fixes an issue, use the keyword close/closes/closed/fix/fixes/fixed/resolve/resolves/resolved followed by the issue id, e.g. fix #[id] | ||
|
||
## Additional context |
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,7 +1,7 @@ | ||
name = "HierarchicalEOM" | ||
uuid = "a62dbcb7-80f5-4d31-9a88-8b19fd92b128" | ||
authors = ["Yi-Te Huang <[email protected]>"] | ||
version = "2.3.0" | ||
version = "2.3.1" | ||
|
||
[deps] | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
|
@@ -37,7 +37,7 @@ LinearSolve = "2.4.2 - 2" | |
OrdinaryDiffEqCore = "1" | ||
OrdinaryDiffEqLowOrderRK = "1" | ||
Pkg = "1" | ||
QuantumToolbox = "0.22" | ||
QuantumToolbox = "0.22 - 0.23" | ||
Reexport = "1" | ||
SciMLBase = "2" | ||
SciMLOperators = "0.3" | ||
|
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
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
Oops, something went wrong.
3c40806
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator registry
3c40806
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error while trying to register: Action not recognized: registry
3c40806
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
3c40806
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/120712
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: