Fri, 06 Dec 2024 13:53:16 -0500
Colour adjustments
2 | 1 | [package] |
2 | name = "non-riemannian-opt" | |
3 | version = "0.1.0" | |
4 | edition = "2021" | |
5 | authors = ["Tuomo Valkonen <tuomov@iki.fi>", "Heikki von Koch <heikki.vonkoch@helsinki.fi>"] | |
6 | description = "Simple optimisation experiments on non-Riemannian manifolds" | |
7 | #homepage = "" | |
8 | #repository = "" | |
9 | #license-file = "LICENSE" | |
10 | keywords = [ | |
11 | "optimization", | |
12 | "manifold", | |
13 | "non-Riemannian", | |
14 | "forward-backward", | |
15 | ] | |
16 | categories = ["mathematics", "science", "computer-vision"] | |
17 | ||
18 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
19 | ||
20 | [dependencies] | |
4 | 21 | serde = { version = "1.0", features = ["derive"] } |
22 | alg_tools = { version = "~0.3.0-dev", path = "../alg_tools", default-features = false } | |
7 | 23 | colored = "~2.0.0" |
11 | 24 | image = "~0.24.3" |
12 | 25 | serde_repr = "0.1" |
37
d7cd14b8ccc0
Basic cylinder implementation
Tuomo Valkonen <tuomov@iki.fi>
parents:
12
diff
changeset
|
26 | |
d7cd14b8ccc0
Basic cylinder implementation
Tuomo Valkonen <tuomov@iki.fi>
parents:
12
diff
changeset
|
27 |