File: algo_test.cpp

package info (click to toggle)
cataclysm-dda 0.H-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 710,808 kB
  • sloc: cpp: 524,019; python: 11,580; sh: 1,228; makefile: 1,169; xml: 507; javascript: 150; sql: 56; exp: 41; perl: 37
file content (51 lines) | stat: -rw-r--r-- 1,392 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma GCC diagnostic ignored "-Wunused-macros"
#define CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
#include "cata_catch.h"

#include <algorithm>
#include <unordered_map>
#include <vector>

#include "cata_algo.h"

static void check_cycle_finding( std::unordered_map<int, std::vector<int>> &g,
                                 std::vector<std::vector<int>> &expected )
{
    CAPTURE( g );
    std::vector<std::vector<int>> loops = cata::find_cycles( g );
    // Canonicalize the list of loops by rotating each to be lexicographically
    // least and then sorting.
    for( std::vector<int> &loop : loops ) {
        auto min = std::min_element( loop.begin(), loop.end() );
        std::rotate( loop.begin(), min, loop.end() );
    }
    std::sort( loops.begin(), loops.end() );
    CHECK( loops == expected );
}

TEST_CASE( "find_cycles_small" )
{
    std::unordered_map<int, std::vector<int>> g = {
        { 0, { 1 } },
        { 1, { 0 } },
    };
    std::vector<std::vector<int>> expected = {
        { 0, 1 },
    };
    check_cycle_finding( g, expected );
}
TEST_CASE( "find_cycles" )
{
    std::unordered_map<int, std::vector<int>> g = {
        { 0, { 0, 1 } },
        { 1, { 0, 2, 3, 17 } },
        { 2, { 1 } },
        { 3, {} },
    };
    std::vector<std::vector<int>> expected = {
        { 0 },
        { 0, 1 },
        { 1, 2 },
    };
    check_cycle_finding( g, expected );
}