Skip to content

Commit d6a667c

Browse files
committed
Revert "Added #[derive(Default)] in some structs"
This reverts commit 209a624.
1 parent 209a624 commit d6a667c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/internal_scc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ struct _Edge {
3535
/// Reference:
3636
/// R. Tarjan,
3737
/// Depth-First Search and Linear Graph Algorithms
38-
#[derive(Default)]
3938
pub struct SccGraph {
4039
n: usize,
4140
edges: Vec<(usize, _Edge)>,

src/twosat.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use crate::internal_scc;
22

3-
#[derive(Default)]
43
pub struct TwoSat {
54
n: usize,
65
scc: internal_scc::SccGraph,

0 commit comments

Comments
 (0)