Closed skyzh closed 3 weeks ago
The current union find is our fork with unsafe impl Send + Sync on a Rc stored inside the union find, which obviously doesn't seem safe, so I rewrote it. The union find we implemented in theory is serializable by deriving Serialize.
unsafe impl Send + Sync
Rc
Serialize
The current union find is our fork with
unsafe impl Send + Sync
on aRc
stored inside the union find, which obviously doesn't seem safe, so I rewrote it. The union find we implemented in theory is serializable by derivingSerialize
.