Skip to content

Commit 7209fa0

Browse files
committed
Restore doctests
1 parent 61b4c93 commit 7209fa0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/cholesky.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! Using the Cholesky decomposition of `A` for various operations, where `A`
1010
//! is a Hermitian (or real symmetric) positive definite matrix:
1111
//!
12-
//! ```no_run
12+
//! ```
1313
//! #[macro_use]
1414
//! extern crate ndarray;
1515
//! extern crate ndarray_linalg;

src/solve.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! Solve `A * x = b`:
66
//!
7-
//! ```no_run
7+
//! ```
88
//! #[macro_use]
99
//! extern crate ndarray;
1010
//! extern crate ndarray_linalg;
@@ -28,7 +28,7 @@
2828
//! coefficient matrix `A`, it's faster to compute the LU factorization once at
2929
//! the beginning than solving directly using `A`:
3030
//!
31-
//! ```no_run
31+
//! ```
3232
//! # extern crate ndarray;
3333
//! # extern crate ndarray_linalg;
3434
//!

src/solveh.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//!
88
//! Solve `A * x = b`, where `A` is a Hermitian (or real symmetric) matrix:
99
//!
10-
//! ```no_run
10+
//! ```
1111
//! #[macro_use]
1212
//! extern crate ndarray;
1313
//! extern crate ndarray_linalg;
@@ -32,7 +32,7 @@
3232
//! Hermitian or real symmetric coefficient matrix `A`, it's faster to compute
3333
//! the factorization once at the beginning than solving directly using `A`:
3434
//!
35-
//! ```no_run
35+
//! ```
3636
//! # extern crate ndarray;
3737
//! # extern crate ndarray_linalg;
3838
//! use ndarray::prelude::*;

0 commit comments

Comments
 (0)