The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Graphs, reference 0.3.0 (dfa3cb), with Swift 6.1 for Linux on 30 Apr 2025 03:56:51 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tevelee/swift-graphs.git
Reference: 0.3.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/tevelee/swift-graphs
 * tag               0.3.0      -> FETCH_HEAD
HEAD is now at dfa3cb1 Separated shortest path until algorithm
Cloned https://github.com/tevelee/swift-graphs.git
Revision (git rev-parse @):
dfa3cb1a27dfc1e9a65e49f57f99eba62e3b9a54
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/tevelee/swift-graphs.git at 0.3.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/tevelee/swift-graphs.git
https://github.com/tevelee/swift-graphs.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-algorithms.git"
    }
  ],
  "manifest_display_name" : "Graphs",
  "name" : "Graphs",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Graphs",
      "targets" : [
        "Graphs"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GraphsTests",
      "module_type" : "SwiftTarget",
      "name" : "GraphsTests",
      "path" : "Tests/GraphsTests",
      "sources" : [
        "GraphTests.swift"
      ],
      "target_dependencies" : [
        "Graphs"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Graphs",
      "module_type" : "SwiftTarget",
      "name" : "Graphs",
      "path" : "Sources/Graphs",
      "product_dependencies" : [
        "Collections",
        "Algorithms"
      ],
      "product_memberships" : [
        "Graphs"
      ],
      "sources" : [
        "Algorithms/Coloring/Graph+Coloring+DSatur.swift",
        "Algorithms/Coloring/Graph+Coloring+Greedy.swift",
        "Algorithms/Coloring/Graph+Coloring+WelshPowell.swift",
        "Algorithms/Coloring/Graph+Coloring.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath+Backtracking.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath+Hierholzer.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath+Backtracking.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath+Heuristic.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath.swift",
        "Algorithms/Isomorphism/Graph+Isomophism+VF2.swift",
        "Algorithms/Isomorphism/Graph+Isomophism+WeisfeilerLehman.swift",
        "Algorithms/Isomorphism/Graph+Isomophism.swift",
        "Algorithms/Matching/MaximumMatchingAlgorithm+HopcroftKarp.swift",
        "Algorithms/Matching/MaximumMatchingAlgorithm.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+Dinic.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+EdmondsKarp.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+FordFulkerson.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Boruvka.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Kruskal.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Prim.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree.swift",
        "Algorithms/Random/ConnectedGraph+Random.swift",
        "Algorithms/Random/DisjointGraph+Random.swift",
        "Algorithms/Random/Graph+Random+BarabasiAlbert.swift",
        "Algorithms/Random/Graph+Random+ErdosRenyi.swift",
        "Algorithms/Random/Graph+Random+WattsStrogatz.swift",
        "Algorithms/Random/Graph+Random.swift",
        "Algorithms/ShortestPath/Graph+KShortestPaths+Yen.swift",
        "Algorithms/ShortestPath/Graph+KShortestPaths.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BellmanFord.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+FloydWarshall.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+Johnson.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph+BellmanFord.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph.swift",
        "Algorithms/ShortestPath/GraphComponent+AllShortestPaths.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath+AStar.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+AStar.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPaths+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPaths.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Kosaraju.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Tarjan.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents.swift",
        "Algorithms/Traversal/BinaryGraph+Search.swift",
        "Algorithms/Traversal/BinaryGraph+Traversal.swift",
        "Algorithms/Traversal/BinaryGraph+TraversalStrategy+DFS+Inorder.swift",
        "Algorithms/Traversal/BinaryGraph+TraversalStrategy.swift",
        "Algorithms/Traversal/Graph+Search.swift",
        "Algorithms/Traversal/Graph+Traversal.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Acyclic.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+BFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS+Postorder.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS+Preorder.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+IterativelyDeepeningDFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Limited.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Priority.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Unique.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy.swift",
        "Algorithms/Visit/Graph+Visitor+AncestorTracking.swift",
        "Algorithms/Visit/Graph+Visitor+DepthTracking.swift",
        "Algorithms/Visit/Graph+Visitor+NodesTracking.swift",
        "Algorithms/Visit/Graph+Visitor+PathTracking.swift",
        "Algorithms/Visit/Graph+Visitor.swift",
        "BinaryGraph.swift",
        "BipartiteGraph.swift",
        "Concrete graphs/ConnectedBinaryGraph.swift",
        "Concrete graphs/ConnectedBinaryHashGraph.swift",
        "Concrete graphs/ConnectedGraph.swift",
        "Concrete graphs/ConnectedHashGraph.swift",
        "Concrete graphs/DisjointBinaryGraph.swift",
        "Concrete graphs/DisjointBinaryHashGraph.swift",
        "Concrete graphs/DisjointGraph.swift",
        "Concrete graphs/DisjointHashGraph.swift",
        "Concrete graphs/GridGraph.swift",
        "Concrete graphs/LazyBinaryGraph.swift",
        "Concrete graphs/LazyGraph.swift",
        "Concrete graphs/Transformations/ComplementGraph.swift",
        "Concrete graphs/Transformations/Graph+Equatable.swift",
        "Concrete graphs/Transformations/Graph+Hashable.swift",
        "Concrete graphs/Transformations/PartitionedGraph.swift",
        "Concrete graphs/Transformations/ResidualGraph.swift",
        "Concrete graphs/Transformations/TransposedGraph.swift",
        "Concrete graphs/Transformations/UndirectedGraph.swift",
        "Concrete graphs/WeightedGraph.swift",
        "Distance.swift",
        "Graph+Properties.swift",
        "Graph.swift",
        "GraphComponent.swift",
        "MutableGraph.swift",
        "Utils.swift",
        "Weighted.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-collections.git
[1/5903] Fetching swift-algorithms
[1064/22172] Fetching swift-algorithms, swift-collections
Fetched https://github.com/apple/swift-algorithms.git from cache (1.86s)
Fetched https://github.com/apple/swift-collections.git from cache (2.09s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (6.22s)
Fetching https://github.com/apple/swift-numerics.git
[1/5674] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.67s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (1.69s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (1.43s)
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.4
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Building for debugging...
[0/13] Write sources
[11/13] Compiling _NumericsShims _NumericsShims.c
[12/13] Write swift-version-24593BA9C3E375BF.txt
[14/40] Compiling RealModule ElementaryFunctions.swift
[15/41] Compiling RealModule Float16+Real.swift
[16/41] Compiling RealModule Double+Real.swift
[17/41] Compiling InternalCollectionsUtilities Descriptions.swift
[18/43] Compiling RealModule Float80+Real.swift
[19/43] Compiling RealModule Float+Real.swift
[20/43] Emitting module RealModule
[21/43] Compiling RealModule AlgebraicField.swift
[22/43] Compiling RealModule ApproximateEquality.swift
[23/43] Compiling RealModule AugmentedArithmetic.swift
[24/43] Compiling RealModule Real.swift
[25/43] Compiling InternalCollectionsUtilities _SortedCollection.swift
[26/43] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[27/43] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[28/43] Compiling InternalCollectionsUtilities Integer rank.swift
[29/43] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[30/43] Emitting module InternalCollectionsUtilities
[31/43] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[32/43] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[35/43] Compiling InternalCollectionsUtilities UInt+reversed.swift
[37/43] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[39/43] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[40/43] Compiling InternalCollectionsUtilities Specialize.swift
[41/43] Compiling RealModule RealFunctions.swift
[43/44] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[44/44] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[46/344] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[47/344] Compiling HashTreeCollections _HashNode+Structural union.swift
[48/344] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[49/346] Compiling HeapModule Heap+Descriptions.swift
[50/346] Compiling HashTreeCollections _HashTreeStatistics.swift
[51/346] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[52/346] Compiling HeapModule Heap.swift
[53/346] Compiling HeapModule _HeapNode.swift
[54/346] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[55/346] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[56/346] Compiling HeapModule Heap+Invariants.swift
[57/346] Compiling HeapModule Heap+UnsafeHandle.swift
[58/346] Emitting module HeapModule
[59/347] Compiling _RopeModule Rope+ForEachWhile.swift
[60/347] Compiling _RopeModule Rope+Insert.swift
[61/347] Compiling HashTreeCollections TreeSet+Sequence.swift
[62/347] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[63/347] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[64/347] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[65/347] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[66/347] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[67/347] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[68/347] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[69/357] Compiling _RopeModule BigString+Insert.swift
[70/357] Compiling _RopeModule BigString+Managing Breaks.swift
[71/357] Compiling _RopeModule BigString+RemoveSubrange.swift
[72/357] Compiling _RopeModule BigString+ReplaceSubrange.swift
[73/357] Compiling _RopeModule BigString+Split.swift
[74/357] Compiling _RopeModule Range+BigString.swift
[75/357] Compiling _RopeModule BigString+UTF16View.swift
[76/357] Compiling _RopeModule BigString+UTF8View.swift
[77/357] Compiling _RopeModule BigString+UnicodeScalarView.swift
[78/357] Compiling _RopeModule BigSubstring+UTF16View.swift
[79/357] Compiling _RopeModule BigSubstring+UTF8View.swift
[80/357] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
[81/357] Compiling _RopeModule BigSubstring.swift
[82/357] Compiling _RopeModule Rope+Builder.swift
[84/364] Compiling DequeModule _DequeSlot.swift
[85/364] Compiling DequeModule _UnsafeWrappedBuffer.swift
[86/364] Compiling _RopeModule Rope+Debugging.swift
[87/364] Compiling _RopeModule Rope+Invariants.swift
[88/364] Compiling _RopeModule Rope+_Node.swift
[89/364] Compiling _RopeModule Rope+_Storage.swift
[90/364] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[91/364] Compiling _RopeModule Rope+_UnsafeHandle.swift
[92/364] Compiling _RopeModule Rope.swift
[93/364] Compiling _RopeModule RopeElement.swift
[94/364] Compiling HashTreeCollections _HashStack.swift
[95/364] Compiling HashTreeCollections _HashTreeIterator.swift
[96/364] Compiling HashTreeCollections _HashNodeHeader.swift
[97/364] Compiling HashTreeCollections _HashSlot.swift
[98/364] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[99/364] Compiling HashTreeCollections _HashNode.swift
[100/364] Compiling HashTreeCollections _HashNode+Storage.swift
[101/364] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[102/364] Compiling HashTreeCollections _HashNode+Structural filter.swift
[103/364] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[104/364] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[105/364] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[106/364] Compiling _RopeModule BigString+Append.swift
[107/364] Compiling _RopeModule BigString+Initializers.swift
[129/371] Compiling BitCollections Range+Utilities.swift
[130/371] Compiling BitCollections Slice+Utilities.swift
[131/371] Compiling BitCollections UInt+Tricks.swift
[132/371] Compiling BitCollections _Word.swift
[133/371] Compiling OrderedCollections OrderedSet.swift
[134/371] Compiling OrderedCollections _UnsafeBitset.swift
[135/371] Compiling _RopeModule Rope+Sequence.swift
[136/371] Compiling _RopeModule Rope+Append.swift
[137/371] Compiling _RopeModule Rope+Extract.swift
[138/371] Compiling _RopeModule Rope+Find.swift
[147/371] Compiling BitCollections BitSet.Index.swift
[148/371] Compiling BitCollections BitSet._UnsafeHandle.swift
[149/371] Compiling BitCollections BitSet.swift
[150/371] Compiling HashTreeCollections TreeDictionary+Collection.swift
[151/371] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[152/371] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[153/374] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[154/374] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[155/374] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[156/374] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[157/374] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[165/374] Emitting module DequeModule
[166/375] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[167/375] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[168/375] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[169/375] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[170/375] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[171/375] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[172/375] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[173/375] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[174/375] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[175/375] Compiling HashTreeCollections TreeSet.swift
[180/375] Compiling HashTreeCollections _UnsafePath.swift
[181/375] Compiling HashTreeCollections TreeDictionary+Codable.swift
[199/375] Emitting module BitCollections
[216/375] Compiling Algorithms Trim.swift
[217/375] Compiling Algorithms Unique.swift
[218/375] Compiling Algorithms Windows.swift
[260/384] Emitting module OrderedCollections
[261/385] Emitting module _RopeModule
[335/386] Emitting module Algorithms
[359/387] Emitting module HashTreeCollections
[361/388] Compiling _RopeModule Rope+Join.swift
[362/388] Compiling _RopeModule Rope+MutatingForEach.swift
[363/388] Compiling _RopeModule Rope+Remove.swift
[364/388] Compiling _RopeModule Rope+RemoveSubrange.swift
[365/388] Compiling _RopeModule Rope+Split.swift
[366/388] Compiling _RopeModule Optional Utilities.swift
[367/388] Compiling _RopeModule String Utilities.swift
[368/388] Compiling _RopeModule String.Index+ABI.swift
[369/388] Compiling _RopeModule _CharacterRecognizer.swift
[390/391] Emitting module Collections
[391/391] Compiling Collections Collections.swift
[393/481] Compiling Graphs BinaryGraph+Traversal.swift
[394/481] Compiling Graphs BinaryGraph+TraversalStrategy+DFS+Inorder.swift
[395/481] Compiling Graphs BinaryGraph+TraversalStrategy.swift
[396/481] Compiling Graphs Graph+Search.swift
[397/481] Compiling Graphs Graph+Traversal.swift
[398/481] Compiling Graphs Graph+TraversalStrategy+Acyclic.swift
[399/481] Compiling Graphs Graph+TraversalStrategy+BFS.swift
[400/481] Compiling Graphs Graph+TraversalStrategy+DFS+Postorder.swift
[401/481] Compiling Graphs Graph+TraversalStrategy+DFS+Preorder.swift
[402/481] Compiling Graphs Graph+TraversalStrategy+DFS.swift
[403/481] Compiling Graphs Graph+TraversalStrategy+IterativelyDeepeningDFS.swift
[404/481] Compiling Graphs Graph+TraversalStrategy+Limited.swift
[405/493] Compiling Graphs MaximumMatchingAlgorithm+HopcroftKarp.swift
[406/493] Compiling Graphs MaximumMatchingAlgorithm.swift
[407/493] Compiling Graphs Graph+MaxFlow+Dinic.swift
[408/493] Compiling Graphs Graph+MaxFlow+EdmondsKarp.swift
[409/493] Compiling Graphs Graph+MaxFlow+FordFulkerson.swift
[410/493] Compiling Graphs Graph+MaxFlow.swift
[411/493] Compiling Graphs Graph+MinimumSpanningTree+Boruvka.swift
[412/493] Compiling Graphs Graph+MinimumSpanningTree+Kruskal.swift
[413/493] Compiling Graphs Graph+MinimumSpanningTree+Prim.swift
[414/493] Compiling Graphs Graph+MinimumSpanningTree.swift
[415/493] Compiling Graphs ConnectedGraph+Random.swift
[416/493] Compiling Graphs DisjointGraph+Random.swift
[417/493] Compiling Graphs Graph+Random+BarabasiAlbert.swift
[418/493] Compiling Graphs GraphComponent+AllShortestPaths.swift
[419/493] Compiling Graphs GraphComponent+ShortestPath+AStar.swift
[420/493] Compiling Graphs GraphComponent+ShortestPath+Dijkstra.swift
[421/493] Compiling Graphs GraphComponent+ShortestPath.swift
[422/493] Compiling Graphs GraphComponent+ShortestPathUntil+AStar.swift
[423/493] Compiling Graphs GraphComponent+ShortestPathUntil+Dijkstra.swift
[424/493] Compiling Graphs GraphComponent+ShortestPathUntil.swift
[425/493] Compiling Graphs GraphComponent+ShortestPaths+Dijkstra.swift
[426/493] Compiling Graphs GraphComponent+ShortestPaths.swift
[427/493] Compiling Graphs Graph+StronglyConnectedComponents+Kosaraju.swift
[428/493] Compiling Graphs Graph+StronglyConnectedComponents+Tarjan.swift
[429/493] Compiling Graphs Graph+StronglyConnectedComponents.swift
[430/493] Compiling Graphs BinaryGraph+Search.swift
[431/493] Compiling Graphs Graph+Coloring+DSatur.swift
[432/493] Compiling Graphs Graph+Coloring+Greedy.swift
[433/493] Compiling Graphs Graph+Coloring+WelshPowell.swift
[434/493] Compiling Graphs Graph+Coloring.swift
[435/493] Compiling Graphs Graph+EulerianPath+Backtracking.swift
[436/493] Compiling Graphs Graph+EulerianPath+Hierholzer.swift
[437/493] Compiling Graphs Graph+EulerianPath.swift
[438/493] Compiling Graphs Graph+HamiltonianPath+Backtracking.swift
[439/493] Compiling Graphs Graph+HamiltonianPath+Heuristic.swift
[440/493] Compiling Graphs Graph+HamiltonianPath.swift
[441/493] Compiling Graphs Graph+Isomophism+VF2.swift
[442/493] Compiling Graphs Graph+Isomophism+WeisfeilerLehman.swift
[443/493] Compiling Graphs Graph+Isomophism.swift
[444/493] Compiling Graphs Graph+TraversalStrategy+Priority.swift
[445/493] Compiling Graphs Graph+TraversalStrategy+Unique.swift
[446/493] Compiling Graphs Graph+TraversalStrategy.swift
[447/493] Compiling Graphs Graph+Visitor+AncestorTracking.swift
[448/493] Compiling Graphs Graph+Visitor+DepthTracking.swift
[449/493] Compiling Graphs Graph+Visitor+NodesTracking.swift
[450/493] Compiling Graphs Graph+Visitor+PathTracking.swift
[451/493] Compiling Graphs Graph+Visitor.swift
[452/493] Compiling Graphs BinaryGraph.swift
[453/493] Compiling Graphs BipartiteGraph.swift
[454/493] Compiling Graphs ConnectedBinaryGraph.swift
[455/493] Compiling Graphs ConnectedBinaryHashGraph.swift
[456/493] Compiling Graphs ConnectedGraph.swift
[457/493] Compiling Graphs ConnectedHashGraph.swift
[458/493] Compiling Graphs DisjointBinaryGraph.swift
[459/493] Compiling Graphs DisjointBinaryHashGraph.swift
[460/493] Compiling Graphs DisjointGraph.swift
[461/493] Compiling Graphs DisjointHashGraph.swift
[462/493] Compiling Graphs GridGraph.swift
[463/493] Compiling Graphs LazyBinaryGraph.swift
[464/493] Compiling Graphs LazyGraph.swift
[465/493] Compiling Graphs ComplementGraph.swift
[466/493] Compiling Graphs Graph+Equatable.swift
[467/493] Compiling Graphs Graph+Hashable.swift
[468/493] Compiling Graphs Graph+Random+ErdosRenyi.swift
[469/493] Compiling Graphs Graph+Random+WattsStrogatz.swift
[470/493] Compiling Graphs Graph+Random.swift
[471/493] Compiling Graphs Graph+KShortestPaths+Yen.swift
[472/493] Compiling Graphs Graph+KShortestPaths.swift
[473/493] Compiling Graphs Graph+ShortestPathOnWholeGraph+BellmanFord.swift
[474/493] Compiling Graphs Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift
[475/493] Compiling Graphs Graph+ShortestPathOnWholeGraph.swift
[476/493] Compiling Graphs Graph+ShortestPathsForAllPairs+FloydWarshall.swift
[477/493] Compiling Graphs Graph+ShortestPathsForAllPairs+Johnson.swift
[478/493] Compiling Graphs Graph+ShortestPathsForAllPairs.swift
[479/493] Compiling Graphs Graph+ShortestPathsOnWholeGraph+BellmanFord.swift
[480/493] Compiling Graphs Graph+ShortestPathsOnWholeGraph.swift
[481/493] Compiling Graphs PartitionedGraph.swift
[482/493] Compiling Graphs ResidualGraph.swift
[483/493] Compiling Graphs TransposedGraph.swift
[484/493] Compiling Graphs UndirectedGraph.swift
[485/493] Compiling Graphs WeightedGraph.swift
[486/493] Compiling Graphs Distance.swift
[487/493] Compiling Graphs Graph+Properties.swift
[488/493] Compiling Graphs Graph.swift
[489/493] Compiling Graphs GraphComponent.swift
[490/493] Compiling Graphs MutableGraph.swift
[491/493] Compiling Graphs Utils.swift
[492/493] Compiling Graphs Weighted.swift
[493/493] Emitting module Graphs
Build complete! (69.75s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "swift-algorithms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-algorithms.git"
    }
  ],
  "manifest_display_name" : "Graphs",
  "name" : "Graphs",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "Graphs",
      "targets" : [
        "Graphs"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GraphsTests",
      "module_type" : "SwiftTarget",
      "name" : "GraphsTests",
      "path" : "Tests/GraphsTests",
      "sources" : [
        "GraphTests.swift"
      ],
      "target_dependencies" : [
        "Graphs"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Graphs",
      "module_type" : "SwiftTarget",
      "name" : "Graphs",
      "path" : "Sources/Graphs",
      "product_dependencies" : [
        "Collections",
        "Algorithms"
      ],
      "product_memberships" : [
        "Graphs"
      ],
      "sources" : [
        "Algorithms/Coloring/Graph+Coloring+DSatur.swift",
        "Algorithms/Coloring/Graph+Coloring+Greedy.swift",
        "Algorithms/Coloring/Graph+Coloring+WelshPowell.swift",
        "Algorithms/Coloring/Graph+Coloring.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath+Backtracking.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath+Hierholzer.swift",
        "Algorithms/EulerianPath/Graph+EulerianPath.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath+Backtracking.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath+Heuristic.swift",
        "Algorithms/HamiltonianPath/Graph+HamiltonianPath.swift",
        "Algorithms/Isomorphism/Graph+Isomophism+VF2.swift",
        "Algorithms/Isomorphism/Graph+Isomophism+WeisfeilerLehman.swift",
        "Algorithms/Isomorphism/Graph+Isomophism.swift",
        "Algorithms/Matching/MaximumMatchingAlgorithm+HopcroftKarp.swift",
        "Algorithms/Matching/MaximumMatchingAlgorithm.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+Dinic.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+EdmondsKarp.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow+FordFulkerson.swift",
        "Algorithms/MaxFlow-MinCut/Graph+MaxFlow.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Boruvka.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Kruskal.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Prim.swift",
        "Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree.swift",
        "Algorithms/Random/ConnectedGraph+Random.swift",
        "Algorithms/Random/DisjointGraph+Random.swift",
        "Algorithms/Random/Graph+Random+BarabasiAlbert.swift",
        "Algorithms/Random/Graph+Random+ErdosRenyi.swift",
        "Algorithms/Random/Graph+Random+WattsStrogatz.swift",
        "Algorithms/Random/Graph+Random.swift",
        "Algorithms/ShortestPath/Graph+KShortestPaths+Yen.swift",
        "Algorithms/ShortestPath/Graph+KShortestPaths.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BellmanFord.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+FloydWarshall.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+Johnson.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph+BellmanFord.swift",
        "Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph.swift",
        "Algorithms/ShortestPath/GraphComponent+AllShortestPaths.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath+AStar.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPath.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+AStar.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPathUntil.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPaths+Dijkstra.swift",
        "Algorithms/ShortestPath/GraphComponent+ShortestPaths.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Kosaraju.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Tarjan.swift",
        "Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents.swift",
        "Algorithms/Traversal/BinaryGraph+Search.swift",
        "Algorithms/Traversal/BinaryGraph+Traversal.swift",
        "Algorithms/Traversal/BinaryGraph+TraversalStrategy+DFS+Inorder.swift",
        "Algorithms/Traversal/BinaryGraph+TraversalStrategy.swift",
        "Algorithms/Traversal/Graph+Search.swift",
        "Algorithms/Traversal/Graph+Traversal.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Acyclic.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+BFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS+Postorder.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS+Preorder.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+DFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+IterativelyDeepeningDFS.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Limited.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Priority.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy+Unique.swift",
        "Algorithms/Traversal/Graph+TraversalStrategy.swift",
        "Algorithms/Visit/Graph+Visitor+AncestorTracking.swift",
        "Algorithms/Visit/Graph+Visitor+DepthTracking.swift",
        "Algorithms/Visit/Graph+Visitor+NodesTracking.swift",
        "Algorithms/Visit/Graph+Visitor+PathTracking.swift",
        "Algorithms/Visit/Graph+Visitor.swift",
        "BinaryGraph.swift",
        "BipartiteGraph.swift",
        "Concrete graphs/ConnectedBinaryGraph.swift",
        "Concrete graphs/ConnectedBinaryHashGraph.swift",
        "Concrete graphs/ConnectedGraph.swift",
        "Concrete graphs/ConnectedHashGraph.swift",
        "Concrete graphs/DisjointBinaryGraph.swift",
        "Concrete graphs/DisjointBinaryHashGraph.swift",
        "Concrete graphs/DisjointGraph.swift",
        "Concrete graphs/DisjointHashGraph.swift",
        "Concrete graphs/GridGraph.swift",
        "Concrete graphs/LazyBinaryGraph.swift",
        "Concrete graphs/LazyGraph.swift",
        "Concrete graphs/Transformations/ComplementGraph.swift",
        "Concrete graphs/Transformations/Graph+Equatable.swift",
        "Concrete graphs/Transformations/Graph+Hashable.swift",
        "Concrete graphs/Transformations/PartitionedGraph.swift",
        "Concrete graphs/Transformations/ResidualGraph.swift",
        "Concrete graphs/Transformations/TransposedGraph.swift",
        "Concrete graphs/Transformations/UndirectedGraph.swift",
        "Concrete graphs/WeightedGraph.swift",
        "Distance.swift",
        "Graph+Properties.swift",
        "Graph.swift",
        "GraphComponent.swift",
        "MutableGraph.swift",
        "Utils.swift",
        "Weighted.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.