Crozet Sébastien
58bea21d74
Release v0.26.2
2021-04-27 14:26:09 +02:00
Crozet Sébastien
3ec57016b9
Release v0.26.1
2021-04-12 17:52:59 +02:00
Crozet Sébastien
c5c6c139ab
Release v0.26.0
2021-04-12 16:15:08 +02:00
Crozet Sébastien
9aa3c1e449
Add comment about the serde-serialize-no-std feature.
2021-04-12 14:36:55 +02:00
Crozet Sébastien
95b021dbfb
Don't enable serde by default.
...
Don't enable `serde/std` by default.
Add a `serde-serialize-no-std` feature to enable serde without its default features.
2021-04-12 12:14:16 +02:00
Crozet Sébastien
24d546d3b6
Rename generic parameter N -> T
2021-04-11 13:57:54 +02:00
Crozet Sébastien
d17088398a
Replace generic-array with a regular array based on min-const-generics.
2021-04-11 13:53:45 +02:00
Sébastien Crozet
f7daf31b0f
Merge pull request #862 from vks/better-error
...
Better error message when running `cargo test`
2021-04-11 13:41:29 +02:00
Vinzent Steinberg
9103a8b763
Use the new Cargo resolver from Rust 1.50
...
This should make it possible to add the dev-dependency on criterion
without breaking `no_std` builds.
2021-04-10 01:43:52 -03:00
Vinzent Steinberg
df33dec457
Make "compare" a required feature for the `matrixcompare` example
...
This avoids distracting error messages when running `cargo test` and
gives a better error when trying to run the example without the required
feature.
2021-04-10 00:52:54 -03:00
Crozet Sébastien
f8173bd668
Release v0.25.4
2021-04-01 12:16:54 +02:00
Crozet Sébastien
4e5b32a3fa
Don't enable the `serde/alloc` feature when `alloc` is enabled.
...
It looks like serde still pulls std when only `alloc` is selected.
2021-04-01 11:53:19 +02:00
Crozet Sébastien
2602f48452
Fix compilation when only the `serde-serialize` feature of nalgebra is enabled.
2021-04-01 11:40:27 +02:00
Crozet Sébastien
d16411c6db
Release v0.25.3
2021-04-01 11:39:45 +02:00
Crozet Sébastien
9ce8402ef3
Release v0.25.2
2021-03-06 14:05:38 +01:00
Crozet Sébastien
729a8fd7f2
Add conversion from/to glam types + move glam/alga/mint impls to a "third_party" module.
2021-03-06 12:20:38 +01:00
Crozet Sébastien
f282d02db1
Release v0.25.1
2021-03-02 14:25:10 +01:00
Crozet Sébastien
c32172b6b9
Make the rand dependency optional.
2021-03-02 12:25:12 +01:00
Crozet Sébastien
5b9b94c610
Release v0.25.0
2021-03-01 14:25:29 +01:00
Crozet Sébastien
e27ff8ce4e
Fix wasm compilation.
2021-03-01 10:02:22 +01:00
Crozet Sébastien
6cfd2bca14
Use proptest for all nalgebra tests.
2021-02-28 17:52:14 +01:00
Sébastien Crozet
21cc428480
Merge pull request #803 from aweinstock314/no_unsound_assume_init
...
Propagate `mem::MaybeUninit` through the return types of `Allocator::…
2021-02-25 15:46:49 +01:00
Sébastien Crozet
69e2ad6a44
Merge pull request #831 from iMplode-nZ/dev
...
Added bytemuck implementations for static storages.
2021-02-25 15:46:28 +01:00
Avi Weinstock
36a3ac814f
Propagate `mem::MaybeUninit` through the return types of `Allocator::allocate_uninitialized` and `Matrix::new_uninitialized_generic`.
...
Most call sites still invoke UB through `assume_init`. Said call sites instead invoke `unimplemented!()` if the `no_unsound_assume_init` feature is enabled, to make it easier to gradually fix them.
Progress towards #556 .
2021-02-25 13:42:23 +01:00
Sébastien Crozet
adc82845d1
Merge pull request #823 from Andlon/sparse-rework
...
Sparse rework: nalgebra-sparse
2021-02-25 12:58:28 +01:00
Crozet Sébastien
4e4eeb2641
Don't pin the proptest version when running tests: this breaks all no-std builds.
...
This is extremely unfortunate, but we cannot pin the version of proptest because of the Cargo bug #4866 will cause a breakage of #[no-std] builds.
2021-02-25 11:00:48 +01:00
Crozet Sébastien
424897f55b
Fix no-std cargo category.
2021-02-22 14:27:31 +01:00
iMplode nZ
c667b1f9c8
Added bytemuck implementations for static storages.
2021-02-10 20:12:24 -08:00
Crozet Sébastien
d45e6eafab
Release v0.24.1
2021-01-29 13:57:19 +01:00
Crozet Sébastien
7d5cc4912d
Update cargo badge and categories.
2021-01-29 13:33:37 +01:00
Andreas Longva
1dbccfeb7c
Initial COO implementation
2021-01-26 10:11:24 +01:00
Andreas Longva
5dfe06897f
Rename nalgebra/proptest to /proptest-support
...
This gives us some freedom in the future, in case we need
additional dependencies for the proptest integration.
2021-01-26 09:49:01 +01:00
Andreas Longva
561501a08f
Upgrade nalgebra matrixcompare version to 0.2.0 (dev-dep)
2021-01-26 08:57:47 +01:00
Andreas Longva
f909638bf4
Designate exhaustive matrix proptest as slow-tests
...
The slow-tests feature flag is intended to be used for tests
that take substantially more time to run than other unit tests.
2021-01-26 08:57:47 +01:00
Andreas Longva
cbef37ed9c
Fix proptest functionality test
...
The previous test claimed to verify that all possible outputs
are sampled, but it didn't. This commits fixes this issue
by actually computing all possible combinations.
However, to accomplish this we needed to add itertools as a test
dependency. Otherwise we'd have to implement our own way of
generating the Cartesian product of an arbitrary number
of sets.
2021-01-26 08:57:47 +01:00
Andreas Longva
f9ea2b4471
Initial proptest implementation for nalgebra
...
This introduces functionality for creating strategies for matrices and
vectors, as well as an implementation of Arbitrary.
Strategies for the geometric types (Point3, Quaternion etc.) are not
currently part of this contribution.
The current strategy implementation for matrices has some limitations
that lead to suboptimal shrinking behavior. This is documented in the
module-level docs, with some additional comments in the code.
2021-01-26 08:57:47 +01:00
Crozet Sébastien
b695aaa807
Release v0.24.0
2020-12-30 15:11:23 +01:00
Crozet Sébastien
dda1ae75e6
Release v0.23.2
2020-12-01 16:24:50 +01:00
Crozet Sébastien
c0f4ee6db9
Release v0.23.1
2020-11-19 16:28:06 +01:00
chemicstry
61848fcfb8
Make serde no_std compatible
2020-10-29 01:05:12 +02:00
Crozet Sébastien
1c8435c910
Release v0.23.0
2020-10-26 09:40:49 +01:00
Crozet Sébastien
a473a3365c
Bump dependencies.
2020-10-25 15:05:20 +01:00
Crozet Sébastien
07dc799bbd
Release v0.22.1
2020-10-13 10:28:30 +02:00
Sébastien Crozet
d635001898
Release v0.22.0
2020-08-25 21:15:56 +02:00
Sébastien Crozet
a6962dfadc
Bump the simba dependency version.
2020-08-25 20:46:35 +02:00
Sébastien Crozet
46d1cf2231
Add a libm and libm-force feature to transitively enable the corresponding simba feature.
2020-08-25 20:46:35 +02:00
sebcrozet
7c69cbf326
Don't depend on serde_derive explicitly.
2020-08-25 20:46:04 +02:00
Sébastien Crozet
d81a895a87
Switch license to Apache v2.0 + update sponsor link.
2020-08-19 19:48:16 +02:00
Andreas Longva
d13b3de4e4
Use matrixcompare 0.1.3 for tests (fixes no-std test issues)
2020-07-17 09:54:30 +02:00
Andreas Longva
f6730dac1f
Basic matrixcompare functionality
2020-06-29 18:50:19 +02:00