File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 25
25
command : check
26
26
args : --all-targets
27
27
28
+ check-doc :
29
+ runs-on : ubuntu-22.04
30
+ steps :
31
+ - uses : actions/checkout@v1
32
+ - uses : actions-rs/cargo@v1
33
+ with :
34
+ command : doc
35
+ args : --no-deps
36
+
28
37
clippy :
29
38
runs-on : ubuntu-22.04
30
39
steps :
Original file line number Diff line number Diff line change 59
59
//! there are several types of eigenvalue problem API
60
60
//!
61
61
//! - [eig] module for eigenvalue problem for general matrix.
62
- //! - [Eigh_] trait provides methods for eigenvalue problem for symmetric/hermite matrix.
62
+ //! - [eigh] module for eigenvalue problem for symmetric/hermite matrix.
63
+ //! - [eigh_generalized] module for generalized eigenvalue problem for symmetric/hermite matrix.
63
64
//!
64
65
//! Singular Value Decomposition
65
66
//! -----------------------------
71
72
//! for solving least square problem by SVD
72
73
//!
73
74
75
+ #![ deny( rustdoc:: broken_intra_doc_links) ]
76
+
74
77
#[ cfg( any( feature = "intel-mkl-system" , feature = "intel-mkl-static" ) ) ]
75
78
extern crate intel_mkl_src as _src;
76
79
Original file line number Diff line number Diff line change 44
44
clippy:: type_complexity,
45
45
clippy:: ptr_arg
46
46
) ]
47
+ #![ deny( rustdoc:: broken_intra_doc_links) ]
47
48
48
49
#[ macro_use]
49
50
extern crate ndarray;
You can’t perform that action at this time.
0 commit comments