1 2 3 4 5 6 7 8 9 10
// SPDX-License-Identifier: MIT // Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved. use super::UltraMatrixGraph; impl<T> Default for UltraMatrixGraph<T> { fn default() -> Self { Self::new() } }