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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/*
This source file is part of the Swift.org open source project
Copyright 2016 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import XCTest
import TSCBasic
import TSCTestSupport
private func transitiveClosure(_ nodes: [Int], _ successors: [Int: [Int]]) -> [Int] {
return transitiveClosure(nodes, successors: { successors[$0] ?? [] }).map{$0}.sorted()
}
private func transitiveClosure(_ node: Int, _ successors: [Int: [Int]]) -> [Int] {
return transitiveClosure([node], successors)
}
private func topologicalSort(_ nodes: [Int], _ successors: [Int: [Int]]) throws -> [Int] {
return try topologicalSort(nodes, successors: { successors[$0] ?? [] })
}
private func topologicalSort(_ node: Int, _ successors: [Int: [Int]]) throws -> [Int] {
return try topologicalSort([node], successors)
}
private func findCycle(_ node: Int, _ successors: [Int: [Int]]) -> (path: [Int], cycle: [Int])? {
return findCycle([node], successors: { successors[$0] ?? [] })
}
class GraphAlgorithmsTests: XCTestCase {
func testTransitiveClosure() {
// A trival graph.
XCTAssertEqual([2], transitiveClosure(1, [1: [2]]))
XCTAssertEqual([], transitiveClosure(2, [1: [2]]))
XCTAssertEqual([2], transitiveClosure([2, 1], [1: [2]]))
// A diamond.
let diamond: [Int: [Int]] = [
1: [3, 2],
2: [4],
3: [4]
]
XCTAssertEqual([2, 3, 4], transitiveClosure(1, diamond))
XCTAssertEqual([4], transitiveClosure([3, 2], diamond))
XCTAssertEqual([2, 3, 4], transitiveClosure([4, 3, 2, 1], diamond))
// Test cycles.
XCTAssertEqual([1], transitiveClosure(1, [1: [1]]))
XCTAssertEqual([1, 2], transitiveClosure(1, [1: [2], 2: [1]]))
}
func testLayeredAllToAllGraph() throws {
let count = 100
let items = Array(0...count)
let layers = (0...count).flatMap { layerNumber in
items.map {
(
$0 + 1000 * layerNumber,
layerNumber == count ? [] : items.map {
$0 + 1000 * (layerNumber + 1)
}
)
}
}
XCTAssertNotCycle(findCycle(1, Dictionary(uniqueKeysWithValues: layers)))
}
func testTopologicalSort() throws {
// A trival graph.
XCTAssertEqual([1, 2], try topologicalSort(1, [1: [2]]))
XCTAssertEqual([1, 2], try topologicalSort([2, 1], [1: [2]]))
// A diamond.
let diamond: [Int: [Int]] = [
1: [3, 2],
2: [4],
3: [4]
]
XCTAssertEqual([1, 2, 3, 4], try topologicalSort(1, diamond))
XCTAssertEqual([2, 3, 4], try topologicalSort([3, 2], diamond))
XCTAssertEqual([1, 2, 3, 4], try topologicalSort([4, 3, 2, 1], diamond))
// Test cycle detection.
XCTAssertThrows(GraphError.unexpectedCycle) { _ = try topologicalSort(1, [1: [1]]) }
XCTAssertThrows(GraphError.unexpectedCycle) { _ = try topologicalSort(1, [1: [2], 2: [1]]) }
}
func testCycleDetection() throws {
// Single node graph.
XCTAssertNotCycle(findCycle(1, [:]))
XCTAssertNotCycle(findCycle(1, [1: [2]]))
// Trivial cycles.
XCTAssertCycle(findCycle(1, [1: [1]]), path: [], cycle: [1])
XCTAssertCycle(findCycle(1, [1: [2], 2: [1]]), path: [], cycle: [1, 2])
XCTAssertCycle(findCycle(1, [1: [2], 2: [3], 3: [2]]), path: [1], cycle: [2, 3])
XCTAssertCycle(findCycle(1, [1: [2], 2: [3], 3: [1]]), path: [], cycle: [1, 2, 3])
XCTAssertNotCycle(findCycle(1, [1: [2, 3], 2: [3, 4], 3: [4, 5], 4: [5, 8], 5: [7, 8], 7: [8]]))
XCTAssertCycle(findCycle(1, [1: [2], 2: [3, 4], 3: [4, 5], 4: [1, 5, 8], 5: [7, 8], 7: [8]]), path: [], cycle: [1, 2, 3, 4])
XCTAssertNotCycle(findCycle(1, [1: [2, 3], 2: [], 3: [2]]))
}
}
private func XCTAssertCycle<T: Equatable>(_ cycleResult: (path: [T], cycle: [T])?, path: [T], cycle: [T], file: StaticString = #file, line: UInt = #line) {
guard let cycleResult = cycleResult else {
return XCTFail("Expected cycle but not found", file: file, line: line)
}
XCTAssertEqual(cycleResult.path, path, file: file, line: line)
XCTAssertEqual(cycleResult.cycle, cycle, file: file, line: line)
}
private func XCTAssertNotCycle<T>(_ cycleResult: T?, file: StaticString = #file, line: UInt = #line) {
if let cycleResult = cycleResult {
XCTFail("Unexpected cycle found \(cycleResult)", file: file, line: line)
}
}
|