forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
29 lines (26 loc) · 928 Bytes
/
Copy pathProgram.cs
File metadata and controls
29 lines (26 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using C_Sharp_Algorithms.AlgorithmsTests;
using C_Sharp_Algorithms.DataStructuresTests;
namespace C_Sharp_Algorithms
{
public class Program
{
public static void Main(string[] args)
{
//
// Data Structures Tests
// Test all graphs after introducing the Edges, OutgoingEdges and IncomingEdges methods
Graphs_DirectedDenseGraphTest.DoTest();
Graphs_DirectedSparseGraphTest.DoTest();
Graphs_DirectedWeightedDenseGraphTest.DoTest();
Graphs_DirectedWeightedSparseGraphTest.DoTest();
Graphs_UndirectedDenseGraphTests.DoTest();
Graphs_UndirectedSparseGraphTest.DoTest();
Graphs_UndirectedWeightedDenseGraphTest.DoTest();
Graphs_UndirectedWeightedSparseGraphTest.DoTest();
}
}
}