diff --git a/test/roditty_zwick_test.cc b/test/decremental_test.cc similarity index 93% rename from test/roditty_zwick_test.cc rename to test/decremental_test.cc index 2ebf836..adcca69 100644 --- a/test/roditty_zwick_test.cc +++ b/test/decremental_test.cc @@ -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") { } } - } \ No newline at end of file