We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed96431 commit 2a2b8b7Copy full SHA for 2a2b8b7
src/lib.rs
@@ -27,16 +27,15 @@ pub const MAX_VERTICES: usize = 256;
27
28
#[derive(Debug)]
29
pub struct TropicalSamplingSettings {
30
- pub upcast_on_failure: bool,
31
pub matrix_stability_test: Option<f64>,
32
pub print_debug_info: bool,
33
pub return_metadata: bool,
34
}
35
+#[allow(clippy::derivable_impls)]
36
impl Default for TropicalSamplingSettings {
37
fn default() -> Self {
38
Self {
39
- upcast_on_failure: true,
40
matrix_stability_test: None,
41
print_debug_info: false,
42
return_metadata: false,
0 commit comments