Skip to content

Commit 036c765

Browse files
authored
Remove Luca from list of maintainers (#253)
2 parents 58d5d88 + ce7af7c commit 036c765

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "QuantumToolbox"
22
uuid = "6c2fb7c5-b903-41d2-bc5e-5a7c320b9fab"
3-
authors = ["Alberto Mercurio", "Luca Gravina", "Yi-Te Huang"]
3+
authors = ["Alberto Mercurio", "Yi-Te Huang"]
44
version = "0.16.0"
55

66
[deps]

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
# QuantumToolbox.jl
77

88
<!-- Current admin team (in chronological order) -->
9-
[A. Mercurio](https://github.com/albertomercurio),
10-
[L. Gravina](https://github.com/lgravina1997),
9+
[A. Mercurio](https://github.com/albertomercurio)
1110
and [Y.-T. Huang](https://github.com/ytdHuang).
1211

1312
<!-- Table of Badges -->

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const PAGES = [
6363

6464
makedocs(;
6565
modules = [QuantumToolbox],
66-
authors = "Alberto Mercurio, Luca Gravina and Yi-Te Huang",
66+
authors = "Alberto Mercurio and Yi-Te Huang",
6767
repo = Remotes.GitHub("qutip", "QuantumToolbox.jl"),
6868
sitename = "QuantumToolbox.jl",
6969
pages = PAGES,

docs/src/type_stability.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,8 @@ And now the return type of the function is clear:
278278
@code_warntype my_fock_good(2, 1; sparse = Val(true))
279279
```
280280

281+
This is exactly how the current [`fock`](@ref) function is implemented in `QuantumToolbox.jl`. There are many other functions that support this feature, and we highly recommend using it when necessary.
282+
281283
## Conclusions
282284

283285
In this page, we have seen the importance of type stability in Julia, and how to write efficient code in the context of `QuantumToolbox.jl`. We have seen that the internal structure of the [`QuantumObject`](@ref) type is already optimized for the compiler, and we have seen some practical examples of how to write efficient code. We have seen that the use of `Vector` should be avoided when the elements don't have the same type, and that the use of `Tuple` or `SVector` is highly recommended when the size of the array is known at compile time. Finally, we have seen the use of `Val` to pass values at compile time, to avoid type instabilities in some functions.

src/versioninfo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function versioninfo(io::IO = stdout)
2020
"≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡\n",
2121
"Copyright © QuTiP team 2022 and later.\n",
2222
"Current admin team:\n",
23-
" Alberto Mercurio, Luca Gravina, Yi-Te Huang\n",
23+
" Alberto Mercurio and Yi-Te Huang\n",
2424
)
2525

2626
# print package informations

0 commit comments

Comments
 (0)