File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ authors = [
7
7
" David Greenberg <[email protected] >" ,
8
8
9
9
]
10
- description = " The package provides an interface to the Linear Algebra PACKage ."
10
+ description = " The package provides wrappers for LAPACK (Fortran) ."
11
11
documentation = " https://docs.rs/lapack"
12
- homepage = " https://github.com/stainless-steel /lapack"
13
- repository = " https://github.com/stainless-steel /lapack"
12
+ homepage = " https://github.com/blas-lapack-rs /lapack"
13
+ repository = " https://github.com/blas-lapack-rs /lapack"
14
14
readme = " README.md"
15
15
categories = [" api-bindings" , " science" ]
16
16
keywords = [" linear-algebra" ]
Original file line number Diff line number Diff line change 1
1
# LAPACK [ ![ Package] [ package-img ]] [ package-url ] [ ![ Documentation] [ documentation-img ]] [ documentation-url ] [ ![ Build] [ build-img ]] [ build-url ]
2
2
3
- The package provides an interface to the [ Linear Algebra PACKage ] [ lapack ] .
3
+ The package provides wrappers for [ LAPACK ] (Fortran) .
4
4
5
5
## Example (C)
6
6
@@ -52,8 +52,8 @@ will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
52
52
53
53
[ lapack ] : https://en.wikipedia.org/wiki/LAPACK
54
54
55
- [ build-img ] : https://travis-ci.org/stainless-steel /lapack.svg?branch=master
56
- [ build-url ] : https://travis-ci.org/stainless-steel /lapack
55
+ [ build-img ] : https://travis-ci.org/blas-lapack-rs /lapack.svg?branch=master
56
+ [ build-url ] : https://travis-ci.org/blas-lapack-rs /lapack
57
57
[ documentation-img ] : https://docs.rs/lapack/badge.svg
58
58
[ documentation-url ] : https://docs.rs/lapack
59
59
[ package-img ] : https://img.shields.io/crates/v/lapack.svg
Original file line number Diff line number Diff line change 1
- //! Interface to the [Linear Algebra PACKage][lapack].
1
+ //! Wrappers for [LAPACK]
2
2
//!
3
3
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
4
4
5
5
extern crate lapack_sys;
6
6
extern crate libc;
7
7
extern crate num_complex as num;
8
8
9
- /// A complex number with 32-bit parts.
9
+ /// A complex number with 32-bit parts
10
10
#[ allow( non_camel_case_types) ]
11
11
pub type c32 = num:: Complex < f32 > ;
12
12
13
- /// A complex number with 64-bit parts.
13
+ /// A complex number with 64-bit parts
14
14
#[ allow( non_camel_case_types) ]
15
15
pub type c64 = num:: Complex < f64 > ;
16
16
17
- #[ cfg( not( feature = "accelerate" ) ) ]
18
17
pub mod c;
19
-
20
18
pub mod fortran;
You can’t perform that action at this time.
0 commit comments