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 main (dfa3cb), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 04:05:13 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: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tevelee/swift-graphs
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
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] Emitting module InternalCollectionsUtilities
[15/42] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[16/42] Compiling RealModule Real.swift
[17/43] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[18/43] Compiling InternalCollectionsUtilities Specialize.swift
[19/43] Compiling RealModule Float80+Real.swift
[20/43] Compiling InternalCollectionsUtilities _SortedCollection.swift
[21/43] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[22/43] Compiling InternalCollectionsUtilities Debugging.swift
[23/43] Compiling InternalCollectionsUtilities Descriptions.swift
[24/43] Compiling RealModule Float16+Real.swift
[25/43] Compiling RealModule AugmentedArithmetic.swift
[26/43] Compiling RealModule ApproximateEquality.swift
[27/43] Emitting module RealModule
[28/43] Compiling RealModule Double+Real.swift
[29/43] Compiling RealModule Float+Real.swift
[30/43] Compiling RealModule ElementaryFunctions.swift
[31/43] Compiling RealModule AlgebraicField.swift
[32/43] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[33/43] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[34/43] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[35/43] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[36/43] Compiling InternalCollectionsUtilities Integer rank.swift
[37/43] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[38/43] Compiling RealModule RealFunctions.swift
[39/43] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.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 _HeapNode.swift
[45/351] Compiling HeapModule Heap.swift
[46/351] Compiling HeapModule Heap+Invariants.swift
[47/351] Compiling HeapModule Heap+Descriptions.swift
[48/351] Compiling HeapModule Heap+UnsafeHandle.swift
[49/351] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[50/351] Emitting module HeapModule
[51/351] Compiling HashTreeCollections TreeSet+Sequence.swift
[52/351] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[53/351] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[54/351] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[55/351] Compiling HashTreeCollections _HashNode.swift
[56/351] Compiling HashTreeCollections _HashNodeHeader.swift
[57/356] Compiling HashTreeCollections _HashNode+Initializers.swift
[58/356] Compiling HashTreeCollections _HashNode+Invariants.swift
[59/356] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[60/356] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[61/356] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[62/356] Compiling HashTreeCollections _HashNode+Structural merge.swift
[63/362] Compiling HashTreeCollections _Hash.swift
[64/362] Compiling HashTreeCollections _HashLevel.swift
[65/362] Compiling HashTreeCollections _HashNode+Builder.swift
[66/364] Compiling HashTreeCollections _AncestorHashSlots.swift
[67/364] Compiling HashTreeCollections _Bitmap.swift
[68/364] Compiling HashTreeCollections _Bucket.swift
[69/364] Compiling DequeModule _DequeSlot.swift
[70/364] Compiling DequeModule _DequeBufferHeader.swift
[71/364] Compiling DequeModule _DequeBuffer.swift
[74/364] Compiling HashTreeCollections _HashNode+Debugging.swift
[85/365] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[86/365] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[87/365] Compiling HashTreeCollections _HashNode+Structural union.swift
[88/365] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[89/365] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[96/365] Emitting module BitCollections
[97/365] Compiling HashTreeCollections TreeSet+Equatable.swift
[98/365] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[99/365] Compiling HashTreeCollections TreeSet+Extras.swift
[100/365] Compiling HashTreeCollections TreeSet+Filter.swift
[101/365] Compiling HashTreeCollections TreeSet+Hashable.swift
[102/365] Compiling HashTreeCollections TreeSet+Sendable.swift
[109/365] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[110/365] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[111/365] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[112/365] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[113/365] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[114/365] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[115/365] Compiling HashTreeCollections TreeDictionary+Filter.swift
[116/365] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[117/365] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[118/365] Compiling HashTreeCollections TreeDictionary+Keys.swift
[119/365] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[120/365] Compiling HashTreeCollections TreeDictionary+Merge.swift
[121/365] Compiling HashTreeCollections _HashSlot.swift
[122/365] Compiling HashTreeCollections _HashStack.swift
[123/365] Compiling HashTreeCollections _HashTreeIterator.swift
[124/365] Compiling HashTreeCollections _HashTreeStatistics.swift
[125/365] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[126/365] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[127/365] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[128/365] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[129/365] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[130/365] Compiling HashTreeCollections _RawHashNode.swift
[131/365] Compiling HashTreeCollections _UnmanagedHashNode.swift
[132/365] Compiling HashTreeCollections _UnsafePath.swift
[145/365] Compiling Algorithms Unique.swift
[146/365] Compiling Algorithms Windows.swift
[162/365] Compiling BitCollections BitSet.swift
[169/365] Emitting module DequeModule
[170/365] Compiling DequeModule _UnsafeWrappedBuffer.swift
[178/365] Compiling OrderedCollections OrderedSet+SubSequence.swift
[179/365] Compiling OrderedCollections OrderedSet+Testing.swift
[180/365] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[181/365] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[242/380] Compiling HashTreeCollections _HashNode+Lookups.swift
[243/380] Compiling _RopeModule Rope+Remove.swift
[244/380] Compiling _RopeModule Rope+RemoveSubrange.swift
[245/380] Compiling _RopeModule Rope+Split.swift
[246/380] Compiling _RopeModule Optional Utilities.swift
[247/380] Compiling _RopeModule String Utilities.swift
[248/380] Compiling _RopeModule String.Index+ABI.swift
[249/380] Compiling _RopeModule _CharacterRecognizer.swift
[250/380] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[272/380] Compiling OrderedCollections OrderedSet.swift
[273/380] Compiling OrderedCollections _UnsafeBitset.swift
[289/380] Emitting module OrderedCollections
[290/380] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[291/380] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[292/380] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[293/380] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[294/380] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[295/380] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[296/380] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[297/380] Compiling HashTreeCollections TreeSet.swift
[316/380] Emitting module Algorithms
[317/380] Emitting module _RopeModule
[347/380] Compiling HashTreeCollections TreeDictionary+Values.swift
[348/380] Compiling HashTreeCollections TreeDictionary.swift
[349/380] Compiling HashTreeCollections TreeSet+Codable.swift
[350/380] Compiling HashTreeCollections TreeSet+Collection.swift
[351/380] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[352/380] Compiling HashTreeCollections TreeSet+Debugging.swift
[353/380] Compiling HashTreeCollections TreeSet+Descriptions.swift
[372/380] Emitting module HashTreeCollections
[381/382] Compiling Collections Collections.swift
[382/382] Emitting module Collections
[383/473] Compiling Graphs GraphComponent+ShortestPath+AStar.swift
[384/473] Compiling Graphs GraphComponent+ShortestPath+Dijkstra.swift
[385/473] Compiling Graphs GraphComponent+ShortestPath.swift
[386/473] Compiling Graphs GraphComponent+ShortestPathUntil+AStar.swift
[387/473] Compiling Graphs GraphComponent+ShortestPathUntil+Dijkstra.swift
[388/473] Compiling Graphs GraphComponent+ShortestPathUntil.swift
[389/473] Compiling Graphs GraphComponent+ShortestPaths+Dijkstra.swift
[390/473] Compiling Graphs GraphComponent+ShortestPaths.swift
[391/473] Compiling Graphs Graph+StronglyConnectedComponents+Kosaraju.swift
[392/473] Compiling Graphs Graph+StronglyConnectedComponents+Tarjan.swift
[393/483] Compiling Graphs Graph+MinimumSpanningTree+Kruskal.swift
[394/483] Compiling Graphs Graph+MinimumSpanningTree+Prim.swift
[395/483] Compiling Graphs Graph+MinimumSpanningTree.swift
[396/483] Compiling Graphs ConnectedGraph+Random.swift
[397/483] Compiling Graphs DisjointGraph+Random.swift
[398/483] Compiling Graphs Graph+Random+BarabasiAlbert.swift
[399/483] Compiling Graphs Graph+Random+ErdosRenyi.swift
[400/483] Compiling Graphs Graph+Random+WattsStrogatz.swift
[401/483] Compiling Graphs Graph+Random.swift
[402/483] Compiling Graphs Graph+KShortestPaths+Yen.swift
[403/483] Compiling Graphs Graph+StronglyConnectedComponents.swift
[404/483] Compiling Graphs BinaryGraph+Search.swift
[405/483] Compiling Graphs BinaryGraph+Traversal.swift
[406/483] Compiling Graphs BinaryGraph+TraversalStrategy+DFS+Inorder.swift
[407/483] Compiling Graphs BinaryGraph+TraversalStrategy.swift
[408/483] Compiling Graphs Graph+Search.swift
[409/483] Compiling Graphs Graph+Traversal.swift
[410/483] Compiling Graphs Graph+TraversalStrategy+Acyclic.swift
[411/483] Compiling Graphs Graph+TraversalStrategy+BFS.swift
[412/483] Compiling Graphs Graph+TraversalStrategy+DFS+Postorder.swift
[413/483] Compiling Graphs Graph+Isomophism+VF2.swift
[414/483] Compiling Graphs Graph+Isomophism+WeisfeilerLehman.swift
[415/483] Compiling Graphs Graph+Isomophism.swift
[416/483] Compiling Graphs MaximumMatchingAlgorithm+HopcroftKarp.swift
[417/483] Compiling Graphs MaximumMatchingAlgorithm.swift
[418/483] Compiling Graphs Graph+MaxFlow+Dinic.swift
[419/483] Compiling Graphs Graph+MaxFlow+EdmondsKarp.swift
[420/483] Compiling Graphs Graph+MaxFlow+FordFulkerson.swift
[421/483] Compiling Graphs Graph+MaxFlow.swift
[422/483] Compiling Graphs Graph+MinimumSpanningTree+Boruvka.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 Graph+TraversalStrategy+DFS+Preorder.swift
[434/483] Compiling Graphs Graph+TraversalStrategy+DFS.swift
[435/483] Compiling Graphs Graph+TraversalStrategy+IterativelyDeepeningDFS.swift
[436/483] Compiling Graphs Graph+TraversalStrategy+Limited.swift
[437/483] Compiling Graphs Graph+TraversalStrategy+Priority.swift
[438/483] Compiling Graphs Graph+TraversalStrategy+Unique.swift
[439/483] Compiling Graphs Graph+TraversalStrategy.swift
[440/483] Compiling Graphs Graph+Visitor+AncestorTracking.swift
[441/483] Compiling Graphs Graph+Visitor+DepthTracking.swift
[442/483] Compiling Graphs Graph+Visitor+NodesTracking.swift
[443/483] Compiling Graphs Graph+Coloring+DSatur.swift
[444/483] Compiling Graphs Graph+Coloring+Greedy.swift
[445/483] Compiling Graphs Graph+Coloring+WelshPowell.swift
[446/483] Compiling Graphs Graph+Coloring.swift
[447/483] Compiling Graphs Graph+EulerianPath+Backtracking.swift
[448/483] Compiling Graphs Graph+EulerianPath+Hierholzer.swift
[449/483] Compiling Graphs Graph+EulerianPath.swift
[450/483] Compiling Graphs Graph+HamiltonianPath+Backtracking.swift
[451/483] Compiling Graphs Graph+HamiltonianPath+Heuristic.swift
[452/483] Compiling Graphs Graph+HamiltonianPath.swift
[453/483] Compiling Graphs DisjointGraph.swift
[454/483] Compiling Graphs DisjointHashGraph.swift
[455/483] Compiling Graphs GridGraph.swift
[456/483] Compiling Graphs LazyBinaryGraph.swift
[457/483] Compiling Graphs LazyGraph.swift
[458/483] Compiling Graphs ComplementGraph.swift
[459/483] Compiling Graphs Graph+Equatable.swift
[460/483] Compiling Graphs Graph+Hashable.swift
[461/483] Compiling Graphs PartitionedGraph.swift
[462/483] Compiling Graphs ResidualGraph.swift
[463/483] Compiling Graphs TransposedGraph.swift
[464/483] Compiling Graphs UndirectedGraph.swift
[465/483] Compiling Graphs WeightedGraph.swift
[466/483] Compiling Graphs Distance.swift
[467/483] Compiling Graphs Graph+Properties.swift
[468/483] Compiling Graphs Graph.swift
[469/483] Compiling Graphs GraphComponent.swift
[470/483] Compiling Graphs MutableGraph.swift
[471/483] Compiling Graphs Utils.swift
[472/483] Compiling Graphs Weighted.swift
[473/483] Compiling Graphs Graph+KShortestPaths.swift
[474/483] Compiling Graphs Graph+ShortestPathOnWholeGraph+BellmanFord.swift
[475/483] Compiling Graphs Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift
[476/483] Compiling Graphs Graph+ShortestPathOnWholeGraph.swift
[477/483] Compiling Graphs Graph+ShortestPathsForAllPairs+FloydWarshall.swift
[478/483] Compiling Graphs Graph+ShortestPathsForAllPairs+Johnson.swift
[479/483] Compiling Graphs Graph+ShortestPathsForAllPairs.swift
[480/483] Compiling Graphs Graph+ShortestPathsOnWholeGraph+BellmanFord.swift
[481/483] Compiling Graphs Graph+ShortestPathsOnWholeGraph.swift
[482/483] Compiling Graphs GraphComponent+AllShortestPaths.swift
[483/483] Emitting module Graphs
Build complete! (11.57s)
Fetching https://github.com/apple/swift-collections.git from cache
Fetching https://github.com/apple/swift-algorithms.git from cache
Fetched https://github.com/apple/swift-algorithms.git from cache (0.76s)
Fetched https://github.com/apple/swift-collections.git from cache (0.78s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (1.74s)
Fetching https://github.com/apple/swift-numerics.git from cache
Fetched https://github.com/apple/swift-numerics.git from cache (0.46s)
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.67s)
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.