Skip to content

Commit 2a2b8b7

Browse files
committed
remove upcast_on_failure, the user must handle this themselves since f128 is no longer supplied by default
1 parent ed96431 commit 2a2b8b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,15 @@ pub const MAX_VERTICES: usize = 256;
2727

2828
#[derive(Debug)]
2929
pub struct TropicalSamplingSettings {
30-
pub upcast_on_failure: bool,
3130
pub matrix_stability_test: Option<f64>,
3231
pub print_debug_info: bool,
3332
pub return_metadata: bool,
3433
}
3534

35+
#[allow(clippy::derivable_impls)]
3636
impl Default for TropicalSamplingSettings {
3737
fn default() -> Self {
3838
Self {
39-
upcast_on_failure: true,
4039
matrix_stability_test: None,
4140
print_debug_info: false,
4241
return_metadata: false,

0 commit comments

Comments
 (0)