File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 2525 command : check
2626 args : --all-targets
2727
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+
2837 clippy :
2938 runs-on : ubuntu-22.04
3039 steps :
Original file line number Diff line number Diff line change 5959//! there are several types of eigenvalue problem API
6060//!
6161//! - [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.
6364//!
6465//! Singular Value Decomposition
6566//! -----------------------------
7172//! for solving least square problem by SVD
7273//!
7374
75+ #![ deny( rustdoc:: broken_intra_doc_links) ]
76+
7477#[ cfg( any( feature = "intel-mkl-system" , feature = "intel-mkl-static" ) ) ]
7578extern crate intel_mkl_src as _src;
7679
Original file line number Diff line number Diff line change 4444 clippy:: type_complexity,
4545 clippy:: ptr_arg
4646) ]
47+ #![ deny( rustdoc:: broken_intra_doc_links) ]
4748
4849#[ macro_use]
4950extern crate ndarray;
You can’t perform that action at this time.
0 commit comments