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 macOS (SPM) on 30 Apr 2025 04:05:42 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

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 /Users/admin/builder/spi-builder-workspace/.git/
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:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/tevelee/swift-graphs.git
https://github.com/tevelee/swift-graphs.git
{
  "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" : "/Users/admin/builder/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 ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/13] Write sources
[11/13] Compiling _NumericsShims _NumericsShims.c
[12/13] Write swift-version-2F0A5646E1D333AE.txt
[14/41] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[15/41] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[16/41] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[17/41] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[18/41] Compiling InternalCollectionsUtilities Specialize.swift
[19/42] Compiling InternalCollectionsUtilities _SortedCollection.swift
[20/42] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[21/42] Compiling InternalCollectionsUtilities Debugging.swift
[22/42] Compiling InternalCollectionsUtilities Descriptions.swift
[23/42] Compiling RealModule ElementaryFunctions.swift
[24/42] Compiling RealModule Float80+Real.swift
[25/42] Compiling RealModule Float+Real.swift
[26/42] Compiling RealModule Real.swift
[27/42] Compiling RealModule Float16+Real.swift
[28/43] Compiling RealModule AugmentedArithmetic.swift
[29/43] Compiling RealModule AlgebraicField.swift
[30/43] Emitting module RealModule
[31/43] Compiling RealModule Double+Real.swift
[32/43] Compiling RealModule ApproximateEquality.swift
[33/43] Emitting module InternalCollectionsUtilities
[34/43] Compiling RealModule RealFunctions.swift
[35/43] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[36/43] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[37/43] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[38/43] Compiling InternalCollectionsUtilities Integer rank.swift
[39/43] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[40/43] Compiling InternalCollectionsUtilities UInt+reversed.swift
[41/43] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[42/43] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[43/43] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[44/351] Compiling HeapModule Heap.swift
[45/351] Compiling HeapModule _HeapNode.swift
[46/351] Compiling HeapModule Heap+Descriptions.swift
[47/351] Compiling HeapModule Heap+Invariants.swift
[48/351] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[49/351] Compiling HeapModule Heap+UnsafeHandle.swift
[50/351] Emitting module HeapModule
[51/351] Compiling HashTreeCollections _HashNode.swift
[52/351] Compiling HashTreeCollections _HashNodeHeader.swift
[53/351] Compiling HashTreeCollections _HashSlot.swift
[54/351] Compiling HashTreeCollections _HashStack.swift
[55/351] Compiling HashTreeCollections _HashTreeIterator.swift
[56/351] Compiling HashTreeCollections _HashTreeStatistics.swift
[57/357] Compiling HashTreeCollections _HashNode+Builder.swift
[58/357] Compiling HashTreeCollections _HashNode+Debugging.swift
[59/357] Compiling HashTreeCollections _HashNode+Initializers.swift
[60/357] Compiling HashTreeCollections _HashNode+Invariants.swift
[61/357] Compiling HashTreeCollections TreeSet+Equatable.swift
[62/357] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[63/362] Compiling HashTreeCollections TreeSet+Descriptions.swift
[64/362] Compiling HashTreeCollections _AncestorHashSlots.swift
[65/362] Compiling HashTreeCollections _Bitmap.swift
[66/362] Compiling HashTreeCollections _Bucket.swift
[67/362] Compiling HashTreeCollections _Hash.swift
[68/362] Compiling HashTreeCollections _HashLevel.swift
[74/362] Compiling BitCollections BitSet.swift
[75/362] Compiling HashTreeCollections TreeDictionary+Values.swift
[76/362] Compiling HashTreeCollections TreeDictionary.swift
[77/362] Compiling HashTreeCollections TreeSet+Codable.swift
[78/362] Compiling HashTreeCollections TreeSet+Collection.swift
[79/362] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[80/362] Compiling HashTreeCollections TreeSet+Debugging.swift
[81/362] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[82/362] Compiling HashTreeCollections TreeDictionary+Keys.swift
[83/362] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[86/364] Compiling HashTreeCollections TreeDictionary+Merge.swift
[87/364] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[88/364] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[89/364] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[90/364] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[91/364] Compiling HashTreeCollections _HashNode+Structural merge.swift
[98/364] Emitting module BitCollections
[99/364] Compiling DequeModule _DequeBuffer.swift
[100/364] Compiling DequeModule _DequeSlot.swift
[107/364] Compiling DequeModule _DequeBufferHeader.swift
[108/364] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[118/365] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[119/365] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[120/365] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[121/365] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[126/365] Compiling Algorithms Unique.swift
[127/365] Compiling Algorithms Windows.swift
[128/365] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[129/365] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[130/365] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[131/365] Compiling HashTreeCollections _HashNode+Storage.swift
[132/365] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[133/365] Compiling HashTreeCollections _HashNode+Structural filter.swift
[134/365] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[135/365] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[136/365] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[157/365] Compiling BitCollections Range+Utilities.swift
[158/365] Compiling BitCollections Slice+Utilities.swift
[159/365] Compiling BitCollections UInt+Tricks.swift
[160/365] Compiling BitCollections _Word.swift
[161/365] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[162/365] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[163/365] Compiling HashTreeCollections _HashNode+Structural union.swift
[176/365] Compiling DequeModule _UnsafeWrappedBuffer.swift
[177/365] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[178/365] Compiling HashTreeCollections TreeDictionary+Filter.swift
[195/365] Emitting module DequeModule
[205/365] Compiling OrderedCollections OrderedSet.swift
[206/365] Compiling OrderedCollections _UnsafeBitset.swift
[296/380] Emitting module OrderedCollections
[314/380] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[315/380] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[316/380] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[317/380] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[318/380] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[319/380] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[320/380] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[321/380] Compiling HashTreeCollections TreeSet.swift
[322/380] Emitting module _RopeModule
[323/380] Emitting module Algorithms
[324/380] Compiling _RopeModule Rope+Remove.swift
[325/380] Compiling _RopeModule Rope+RemoveSubrange.swift
[326/380] Compiling _RopeModule Rope+Split.swift
[327/380] Compiling _RopeModule Optional Utilities.swift
[328/380] Compiling _RopeModule String Utilities.swift
[329/380] Compiling _RopeModule String.Index+ABI.swift
[330/380] Compiling _RopeModule _CharacterRecognizer.swift
[347/380] Compiling HashTreeCollections _UnmanagedHashNode.swift
[348/380] Compiling HashTreeCollections _UnsafePath.swift
[349/380] Compiling HashTreeCollections TreeDictionary+Codable.swift
[350/380] Compiling HashTreeCollections TreeDictionary+Collection.swift
[351/380] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[352/380] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[353/380] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[354/380] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[372/380] Emitting module HashTreeCollections
[380/380] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[381/382] Emitting module Collections
[382/382] Compiling Collections Collections.swift
[383/473] Compiling Graphs Graph+StronglyConnectedComponents.swift
[384/473] Compiling Graphs BinaryGraph+Search.swift
[385/473] Compiling Graphs BinaryGraph+Traversal.swift
[386/473] Compiling Graphs BinaryGraph+TraversalStrategy+DFS+Inorder.swift
[387/473] Compiling Graphs BinaryGraph+TraversalStrategy.swift
[388/473] Compiling Graphs Graph+Search.swift
[389/473] Compiling Graphs Graph+Traversal.swift
[390/473] Compiling Graphs Graph+TraversalStrategy+Acyclic.swift
[391/473] Compiling Graphs Graph+TraversalStrategy+BFS.swift
[392/473] Compiling Graphs Graph+TraversalStrategy+DFS+Postorder.swift
[393/483] Compiling Graphs Graph+Isomophism+VF2.swift
[394/483] Compiling Graphs Graph+Isomophism+WeisfeilerLehman.swift
[395/483] Compiling Graphs Graph+Isomophism.swift
[396/483] Compiling Graphs MaximumMatchingAlgorithm+HopcroftKarp.swift
[397/483] Compiling Graphs MaximumMatchingAlgorithm.swift
[398/483] Compiling Graphs Graph+MaxFlow+Dinic.swift
[399/483] Compiling Graphs Graph+MaxFlow+EdmondsKarp.swift
[400/483] Compiling Graphs Graph+MaxFlow+FordFulkerson.swift
[401/483] Compiling Graphs Graph+MaxFlow.swift
[402/483] Compiling Graphs Graph+MinimumSpanningTree+Boruvka.swift
[403/483] Compiling Graphs Graph+Coloring+DSatur.swift
[404/483] Compiling Graphs Graph+Coloring+Greedy.swift
[405/483] Compiling Graphs Graph+Coloring+WelshPowell.swift
[406/483] Compiling Graphs Graph+Coloring.swift
[407/483] Compiling Graphs Graph+EulerianPath+Backtracking.swift
[408/483] Compiling Graphs Graph+EulerianPath+Hierholzer.swift
[409/483] Compiling Graphs Graph+EulerianPath.swift
[410/483] Compiling Graphs Graph+HamiltonianPath+Backtracking.swift
[411/483] Compiling Graphs Graph+HamiltonianPath+Heuristic.swift
[412/483] Compiling Graphs Graph+HamiltonianPath.swift
[413/483] Compiling Graphs Graph+KShortestPaths.swift
[414/483] Compiling Graphs Graph+ShortestPathOnWholeGraph+BellmanFord.swift
[415/483] Compiling Graphs Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift
[416/483] Compiling Graphs Graph+ShortestPathOnWholeGraph.swift
[417/483] Compiling Graphs Graph+ShortestPathsForAllPairs+FloydWarshall.swift
[418/483] Compiling Graphs Graph+ShortestPathsForAllPairs+Johnson.swift
[419/483] Compiling Graphs Graph+ShortestPathsForAllPairs.swift
[420/483] Compiling Graphs Graph+ShortestPathsOnWholeGraph+BellmanFord.swift
[421/483] Compiling Graphs Graph+ShortestPathsOnWholeGraph.swift
[422/483] Compiling Graphs GraphComponent+AllShortestPaths.swift
[423/483] Compiling Graphs Graph+Visitor+PathTracking.swift
[424/483] Compiling Graphs Graph+Visitor.swift
[425/483] Compiling Graphs BinaryGraph.swift
[426/483] Compiling Graphs BipartiteGraph.swift
[427/483] Compiling Graphs ConnectedBinaryGraph.swift
[428/483] Compiling Graphs ConnectedBinaryHashGraph.swift
[429/483] Compiling Graphs ConnectedGraph.swift
[430/483] Compiling Graphs ConnectedHashGraph.swift
[431/483] Compiling Graphs DisjointBinaryGraph.swift
[432/483] Compiling Graphs DisjointBinaryHashGraph.swift
[433/483] Compiling Graphs GraphComponent+ShortestPath+AStar.swift
[434/483] Compiling Graphs GraphComponent+ShortestPath+Dijkstra.swift
[435/483] Compiling Graphs GraphComponent+ShortestPath.swift
[436/483] Compiling Graphs GraphComponent+ShortestPathUntil+AStar.swift
[437/483] Compiling Graphs GraphComponent+ShortestPathUntil+Dijkstra.swift
[438/483] Compiling Graphs GraphComponent+ShortestPathUntil.swift
[439/483] Compiling Graphs GraphComponent+ShortestPaths+Dijkstra.swift
[440/483] Compiling Graphs GraphComponent+ShortestPaths.swift
[441/483] Compiling Graphs Graph+StronglyConnectedComponents+Kosaraju.swift
[442/483] Compiling Graphs Graph+StronglyConnectedComponents+Tarjan.swift
[443/483] Compiling Graphs Graph+MinimumSpanningTree+Kruskal.swift
[444/483] Compiling Graphs Graph+MinimumSpanningTree+Prim.swift
[445/483] Compiling Graphs Graph+MinimumSpanningTree.swift
[446/483] Compiling Graphs ConnectedGraph+Random.swift
[447/483] Compiling Graphs DisjointGraph+Random.swift
[448/483] Compiling Graphs Graph+Random+BarabasiAlbert.swift
[449/483] Compiling Graphs Graph+Random+ErdosRenyi.swift
[450/483] Compiling Graphs Graph+Random+WattsStrogatz.swift
[451/483] Compiling Graphs Graph+Random.swift
[452/483] Compiling Graphs Graph+KShortestPaths+Yen.swift
[453/483] Compiling Graphs Graph+TraversalStrategy+DFS+Preorder.swift
[454/483] Compiling Graphs Graph+TraversalStrategy+DFS.swift
[455/483] Compiling Graphs Graph+TraversalStrategy+IterativelyDeepeningDFS.swift
[456/483] Compiling Graphs Graph+TraversalStrategy+Limited.swift
[457/483] Compiling Graphs Graph+TraversalStrategy+Priority.swift
[458/483] Compiling Graphs Graph+TraversalStrategy+Unique.swift
[459/483] Compiling Graphs Graph+TraversalStrategy.swift
[460/483] Compiling Graphs Graph+Visitor+AncestorTracking.swift
[461/483] Compiling Graphs Graph+Visitor+DepthTracking.swift
[462/483] Compiling Graphs Graph+Visitor+NodesTracking.swift
[463/483] Compiling Graphs DisjointGraph.swift
[464/483] Compiling Graphs DisjointHashGraph.swift
[465/483] Compiling Graphs GridGraph.swift
[466/483] Compiling Graphs LazyBinaryGraph.swift
[467/483] Compiling Graphs LazyGraph.swift
[468/483] Compiling Graphs ComplementGraph.swift
[469/483] Compiling Graphs Graph+Equatable.swift
[470/483] Compiling Graphs Graph+Hashable.swift
[471/483] Compiling Graphs PartitionedGraph.swift
[472/483] Compiling Graphs ResidualGraph.swift
[473/483] Compiling Graphs TransposedGraph.swift
[474/483] Compiling Graphs UndirectedGraph.swift
[475/483] Compiling Graphs WeightedGraph.swift
[476/483] Compiling Graphs Distance.swift
[477/483] Compiling Graphs Graph+Properties.swift
[478/483] Compiling Graphs Graph.swift
[479/483] Compiling Graphs GraphComponent.swift
[480/483] Compiling Graphs MutableGraph.swift
[481/483] Compiling Graphs Utils.swift
[482/483] Compiling Graphs Weighted.swift
[483/483] Emitting module Graphs
Build complete! (11.98s)
Fetching https://github.com/apple/swift-algorithms.git from cache
Fetching https://github.com/apple/swift-collections.git from cache
Fetched https://github.com/apple/swift-algorithms.git from cache (0.75s)
Fetched https://github.com/apple/swift-collections.git from cache (0.77s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (1.96s)
Fetching https://github.com/apple/swift-numerics.git from cache
Fetched https://github.com/apple/swift-numerics.git from cache (0.45s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (1.08s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.74s)
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
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
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" : "/Users/admin/builder/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"
}
Done.