-
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.
- Loading branch information
Showing
4 changed files
with
25 additions
and
8 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,23 @@ | ||
#= | ||
This file gathers all the deprecated names (structures, functions, or variables) which will be removed in the future major release. | ||
- Before the major release, the deprecated names will just throw errors when they are called. | ||
- If the deprecated names were once exported, we will still export them here until next major release. | ||
- If we decide to push a major release, cleanup this file. | ||
Example: | ||
export deprecated_foo | ||
function deprecated_foo(args...; kwargs...) | ||
error("`deprecated_foo` has been deprecated and will be removed in next major release, please use `new_foo` instead.") | ||
end | ||
=# | ||
|
||
export evolution, SteadyState | ||
|
||
SteadyState(args...; kwargs...) = | ||
error("`SteadyState` has been deprecated, please use `steadystate` instead.") | ||
|
||
evolution(args...; kwargs...) = | ||
error("`evolution` has been deprecated, please use `HEOMsolve` instead.") |
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