vcsgraph/testing/
mod.rs

1// SPDX-License-Identifier: GPL-2.0-or-later
2//
3// This software may be used and distributed according to the terms of the
4// GNU General Public License version 2 or any later version.
5//
6// Copyright 2020  Pacien TRAN-GIRARD <pacien.trangirard@pacien.net>
7
8/// In-memory graphs
9pub mod graph_in_mem;
10
11/// In-memory graphs
12pub mod ordering;
13
14/// Reference sample graphs
15pub mod sample_graph;
16
17/// Testing graph IO
18pub mod graph_io;