|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Tests for Warshall. More...
Go to the source code of this file.
Classes | |
| class | WarshallTest |
Typedefs | |
| using | TestGraph = List_Graph< Graph_Node< int >, Graph_Arc< int > > |
Functions | |
| TEST_F (WarshallTest, EmptyGraph) | |
| TEST_F (WarshallTest, SingleNode) | |
| TEST_F (WarshallTest, SingleNodeWithSelfLoop) | |
| TEST_F (WarshallTest, TwoNodesConnected) | |
| TEST_F (WarshallTest, TwoNodesDisconnected) | |
| TEST_F (WarshallTest, SimpleChain) | |
| TEST_F (WarshallTest, Triangle) | |
| TEST_F (WarshallTest, CompleteGraph) | |
| TEST_F (WarshallTest, DisconnectedComponents) | |
| TEST_F (WarshallTest, DiamondGraph) | |
| TEST_F (WarshallTest, LargeGraph) | |
| TEST_F (WarshallTest, ClassWrapper) | |
| TEST_F (WarshallTest, Idempotence) | |
| TEST_F (WarshallTest, StarGraph) | |
| int | main (int argc, char **argv) |
Tests for Warshall.
Definition in file warshall_test.cc.
| using TestGraph = List_Graph<Graph_Node<int>, Graph_Arc<int> > |
Definition at line 46 of file warshall_test.cc.
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 303 of file warshall_test.cc.
References Aleph::maps().
| TEST_F | ( | WarshallTest | , |
| ClassWrapper | |||
| ) |
Definition at line 240 of file warshall_test.cc.
References Aleph::maps().
| TEST_F | ( | WarshallTest | , |
| CompleteGraph | |||
| ) |
Definition at line 150 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| DiamondGraph | |||
| ) |
Definition at line 201 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| DisconnectedComponents | |||
| ) |
Definition at line 172 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| EmptyGraph | |||
| ) |
Definition at line 56 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| Idempotence | |||
| ) |
Definition at line 256 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| LargeGraph | |||
| ) |
Definition at line 222 of file warshall_test.cc.
References Aleph::maps(), N, nodes, and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| SimpleChain | |||
| ) |
Definition at line 110 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| SingleNode | |||
| ) |
Definition at line 62 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| SingleNodeWithSelfLoop | |||
| ) |
Definition at line 72 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| StarGraph | |||
| ) |
Definition at line 277 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| Triangle | |||
| ) |
Definition at line 132 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| TwoNodesConnected | |||
| ) |
Definition at line 83 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().
| TEST_F | ( | WarshallTest | , |
| TwoNodesDisconnected | |||
| ) |
Definition at line 96 of file warshall_test.cc.
References Aleph::maps(), and Aleph::warshall_compute_transitive_clausure().