/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
use CausalTensor;
/// Adjacency Matrix mapped to backend (Shape: [N, N])
pub type AdjacencyMatrix<T> = ;
/// Incidence Matrix mapped to backend (Shape: [Nodes, Edges])
pub type IncidenceMatrix<T> = ;
/// Laplacian Matrix (L = D - A)
pub type LaplacianMatrix<T> = ;
/// Manifold Metric Tensor (g_{mn})
pub type MetricTensor<T> = ;