Change test file name to split fully dynamic and decremental algorithms

This commit is contained in:
stefiosif
2022-07-29 17:14:40 +03:00
parent 8e8cf23399
commit 5f5bd889d7

View File

@@ -5,9 +5,9 @@
using namespace graph;
TEST_SUITE("Roditty and Zwick") {
TEST_SUITE("Decremental algorithms") {
TEST_CASE("DecrementalSCC 1") {
TEST_CASE("Decremental maintenance of SCCs 1") {
// 1 --> 2 --> 5 --> 7 --> 2
// 1 --> 4 --> 3 --> 1
// 4 --> 6 --> 3
@@ -45,7 +45,7 @@ TEST_SUITE("Roditty and Zwick") {
}
}
TEST_CASE("DecrementalSCC 2") {
TEST_CASE("Decremental maintenance of SCCs 2") {
// 1 --> 2 --> 3 --> 1
// 3 --> 4 --> 5 --> 3
// 2 --> 6 --> 7 --> 8 --> 6
@@ -95,7 +95,7 @@ TEST_SUITE("Roditty and Zwick") {
}
}
TEST_CASE("DecrementalTC 1") {
TEST_CASE("Decremental maintenance of the TC 1") {
// 1 --> 2 --> 5 --> 7 --> 2
// 1 --> 4 --> 3 --> 1
// 4 --> 6 --> 3
@@ -124,7 +124,7 @@ TEST_SUITE("Roditty and Zwick") {
}
}
TEST_CASE("DecrementalTC 2") {
TEST_CASE("Decremental maintenance of the TC 2") {
// 1 --> 2 --> 3 --> 1
// 3 --> 4 --> 5 --> 3
// 2 --> 6 --> 7 --> 8 --> 6
@@ -163,5 +163,4 @@ TEST_SUITE("Roditty and Zwick") {
}
}
}