Skip to content

Commit 530b4d8

Browse files
committed
Fix more issues.
1 parent 5c2e887 commit 530b4d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ for "mostly dense" models, and faster for "mostly sparse" models (and generally
7777

7878
[crates.io-badge]: https://img.shields.io/crates/v/ffsvm.svg
7979
[crates.io-url]: https://crates.io/crates/ffsvm
80-
[license-badge]: https://img.shields.io/badge/license-BSD2-blue.svg
80+
[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
8181
[docs.rs-badge]: https://docs.rs/ffsvm/badge.svg
8282
[docs.rs-url]: https://docs.rs/ffsvm/
8383
[rust-version-badge]: https://img.shields.io/badge/rust-1.83%2B-blue.svg?maxAge=3600

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
//!
8383
//! [crates.io-badge]: https://img.shields.io/crates/v/ffsvm.svg
8484
//! [crates.io-url]: https://crates.io/crates/ffsvm
85-
//! [license-badge]: https://img.shields.io/badge/license-BSD2-blue.svg
85+
//! [license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
8686
//! [docs.rs-badge]: https://docs.rs/ffsvm/badge.svg
8787
//! [docs.rs-url]: https://docs.rs/ffsvm/
8888
//! [rust-version-badge]: https://img.shields.io/badge/rust-1.83%2B-blue.svg?maxAge=3600

src/svm/core/dense.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl DenseSVM {
119119

120120
/// Based on kernel values, computes the decision values for this problem.
121121
pub(crate) fn compute_classification_values(&self, problem: &mut FeatureVector<VecSimd<f32x8>>) {
122-
compute_classification_values_impl!(self, problem)
122+
compute_classification_values_impl!(self, problem);
123123
}
124124

125125
/// Based on kernel values, computes the decision values for this problem.

src/svm/core/sparse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl SparseSVM {
122122

123123
/// Based on kernel values, computes the decision values for this problem.
124124
pub(crate) fn compute_classification_values(&self, problem: &mut FeatureVector<SparseVector<f32>>) {
125-
compute_classification_values_impl!(self, problem)
125+
compute_classification_values_impl!(self, problem);
126126
}
127127

128128
/// Based on kernel values, computes the decision values for this problem.

0 commit comments

Comments
 (0)