-
-
Notifications
You must be signed in to change notification settings - Fork 490
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 #567 from rustsim/complex
Complex number support
- Loading branch information
Showing
220 changed files
with
4,980 additions
and
3,745 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "nalgebra" | ||
version = "0.17.2" | ||
version = "0.17.3" | ||
authors = [ "Sébastien Crozet <[email protected]>" ] | ||
|
||
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices." | ||
|
@@ -11,6 +11,7 @@ readme = "README.md" | |
categories = [ "science" ] | ||
keywords = [ "linear", "algebra", "matrix", "vector", "math" ] | ||
license = "BSD-3-Clause" | ||
edition = "2018" | ||
|
||
exclude = ["/ci/*", "/.travis.yml", "/Makefile"] | ||
|
||
|
@@ -26,7 +27,7 @@ arbitrary = [ "quickcheck" ] | |
serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ] | ||
abomonation-serialize = [ "abomonation" ] | ||
sparse = [ ] | ||
debug = [ ] | ||
debug = [ "approx/num-complex", "rand/std" ] | ||
alloc = [ ] | ||
io = [ "pest", "pest_derive" ] | ||
|
||
|
@@ -53,6 +54,19 @@ alga = { git = "https://github.com/rustsim/alga", branch = "dev" } | |
[dev-dependencies] | ||
serde_json = "1.0" | ||
rand_xorshift = "0.1" | ||
### Uncomment this line before running benchmarks. | ||
### We can't just let this uncommented because that would breack | ||
### compilation for #[no-std] because of the terrible Cargo bug | ||
### https://github.com/rust-lang/cargo/issues/4866 | ||
#criterion = "0.2.10" | ||
|
||
[workspace] | ||
members = [ "nalgebra-lapack", "nalgebra-glm" ] | ||
|
||
[[bench]] | ||
name = "nalgebra_bench" | ||
harness = false | ||
path = "benches/lib.rs" | ||
|
||
[profile.bench] | ||
lto = true |
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.