The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ElkSwift, reference main (32f804), with Swift 6.2 for macOS (SPM) on 22 Apr 2026 08:51:57 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64

Build Log

 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[404/413] Compiling ElkSwift org_eclipse_elk_core_util_IFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[405/413] Compiling ElkSwift org_eclipse_elk_core_util_IGraphElementVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[406/413] Compiling ElkSwift org_eclipse_elk_core_util_IndividualSpacings.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[407/413] Compiling ElkSwift org_eclipse_elk_core_util_InstancePool.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[408/413] Compiling ElkSwift org_eclipse_elk_core_util_Maybe.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[409/413] Compiling ElkSwift org_eclipse_elk_core_util_NullElkProgressMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[410/413] Compiling ElkSwift org_eclipse_elk_core_util_Pair.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[411/413] Compiling ElkSwift org_eclipse_elk_core_util_PropertyConstantsDelegator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[412/413] Compiling ElkSwift org_eclipse_elk_core_util_Quadruple.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
[413/413] Compiling ElkSwift org_eclipse_elk_core_util_Triple.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift:96:13: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 94 |      */
 95 |     package func ensureListSize(size: Int) {
 96 |         for i in list.count..<size {
    |             `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 97 |             list.append(provideDefault())
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:226:13: warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 224 |         let oldSize = KVector(node.width, node.height)
 225 |
 226 |         var newSize = effectiveMinSizeConstraintFor(node)
     |             `- warning: variable 'newSize' was never mutated; consider changing to 'let' constant
 227 |         newSize.x = max(newSize.x, newWidth)
 228 |         newSize.y = max(newSize.y, newHeight)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:322:17: warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 320 |             let sizeOptions: SizeOptions = node.getProperty(CoreOptions.NODE_SIZE_OPTIONS) ?? []
 321 |             let minSizeVec: KVector = node.getProperty(CoreOptions.NODE_SIZE_MINIMUM) ?? KVector()
 322 |             var minSize = KVector(minSizeVec.x, minSizeVec.y)
     |                 `- warning: variable 'minSize' was never mutated; consider changing to 'let' constant
 323 |
 324 |             // If minimum width or height are not set, maybe default to default values
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:469:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 467 |         }
 468 |
 469 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 470 |
 471 |         if let sourcePort = ElkGraphUtil.connectableShapeToPort(edge.sources[0]) {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:501:13: warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 499 |
 500 |         // Collection for the junction points of the current edge
 501 |         var junctionPoints = KVectorChain()
     |             `- warning: variable 'junctionPoints' was never mutated; consider changing to 'let' constant
 502 |
 503 |         // Store the points of the edge in a map for efficiency
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:610:13: warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 608 |      */
 609 |     package static func getPoints(_ section: ElkEdgeSection) -> [KVector] {
 610 |         let n = section.bendPoints.count + 2
     |             `- warning: initialization of immutable value 'n' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
 611 |         var points: [KVector] = []
 612 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:687:28: warning: result of call to 'offset' is unused [#no-usage]
 685 |         // Junction points
 686 |         if let junctionPoints: KVectorChain = edge.getProperty(CoreOptions.JUNCTION_POINTS) {
 687 |             junctionPoints.offset(xoffset, yoffset)
     |                            `- warning: result of call to 'offset' is unused [#no-usage]
 688 |         }
 689 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:775:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 773 |     package static func toAbsolute(_ point: KVector, parent: ElkNode?) -> KVector {
 774 |         var node = parent
 775 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 776 |         while let currentNode = node {
 777 |             resultPoint.add(currentNode.x, currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:792:13: warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 790 |     package static func toRelative(_ point: KVector, parent: ElkNode?) -> KVector {
 791 |         var node = parent
 792 |         var resultPoint = point
     |             `- warning: variable 'resultPoint' was never mutated; consider changing to 'let' constant
 793 |         while let currentNode = node {
 794 |             resultPoint.add(-currentNode.x, -currentNode.y)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:888:30: warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 886 |         var kgeIt = ElkGraphUtil.allContents(graph).makeIterator()
 887 |         while let kge = kgeIt.next() {
 888 |             if let kge = kge as? ElkGraphElement {
     |                              `- warning: conditional cast from 'any ElkGraphElement' to 'any ElkGraphElement' always succeeds
 889 |                 if let node = kge as? ElkNode {
 890 |                     configureWithDefaultValues(node)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift:980:13: warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 978 |      */
 979 |     package static func applyVisitors(_ graph: ElkNode, visitors: [IGraphElementVisitor]) throws {
 980 |         var allElements = ElkGraphUtil.propertiesSkippingIteratorFor(graph, true).makeIterator()
     |             `- warning: variable 'allElements' was never mutated; consider changing to 'let' constant
 981 |         while let nextElement = allElements.next() {
 982 |             if let graphElement = nextElement as? ElkGraphElement {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:109:29: warning: conditional cast from 'Double' to 'Double' always succeeds
107 | extension Number {
108 |     package var doubleValue: Double {
109 |         if let value = self as? Double {
    |                             `- warning: conditional cast from 'Double' to 'Double' always succeeds
110 |             return value
111 |         } else if let value = self as? Float {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:111:36: warning: cast from 'Double' to unrelated type 'Float' always fails
109 |         if let value = self as? Double {
110 |             return value
111 |         } else if let value = self as? Float {
    |                                    `- warning: cast from 'Double' to unrelated type 'Float' always fails
112 |             return Double(value)
113 |         } else if let value = self as? Int {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:113:36: warning: cast from 'Double' to unrelated type 'Int' always fails
111 |         } else if let value = self as? Float {
112 |             return Double(value)
113 |         } else if let value = self as? Int {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int' always fails
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:115:36: warning: cast from 'Double' to unrelated type 'Int64' always fails
113 |         } else if let value = self as? Int {
114 |             return Double(value)
115 |         } else if let value = self as? Int64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int64' always fails
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:117:36: warning: cast from 'Double' to unrelated type 'Int32' always fails
115 |         } else if let value = self as? Int64 {
116 |             return Double(value)
117 |         } else if let value = self as? Int32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int32' always fails
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:119:36: warning: cast from 'Double' to unrelated type 'Int16' always fails
117 |         } else if let value = self as? Int32 {
118 |             return Double(value)
119 |         } else if let value = self as? Int16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int16' always fails
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:121:36: warning: cast from 'Double' to unrelated type 'Int8' always fails
119 |         } else if let value = self as? Int16 {
120 |             return Double(value)
121 |         } else if let value = self as? Int8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'Int8' always fails
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:123:36: warning: cast from 'Double' to unrelated type 'UInt64' always fails
121 |         } else if let value = self as? Int8 {
122 |             return Double(value)
123 |         } else if let value = self as? UInt64 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt64' always fails
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:125:36: warning: cast from 'Double' to unrelated type 'UInt32' always fails
123 |         } else if let value = self as? UInt64 {
124 |             return Double(value)
125 |         } else if let value = self as? UInt32 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt32' always fails
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:127:36: warning: cast from 'Double' to unrelated type 'UInt16' always fails
125 |         } else if let value = self as? UInt32 {
126 |             return Double(value)
127 |         } else if let value = self as? UInt16 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt16' always fails
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift:129:36: warning: cast from 'Double' to unrelated type 'UInt8' always fails
127 |         } else if let value = self as? UInt16 {
128 |             return Double(value)
129 |         } else if let value = self as? UInt8 {
    |                                    `- warning: cast from 'Double' to unrelated type 'UInt8' always fails
130 |             return Double(value)
131 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift:24:66: warning: expression implicitly coerced from 'Any?' to 'Any'
22 |         for optionId in algorithmData.getKnownOptionIds() {
23 |             let defaultValue = algorithmData.getDefaultValue(optionId)
24 |             let delegate = Property<Any>(optionId, defaultValue: defaultValue)
   |                                                                  |- warning: expression implicitly coerced from 'Any?' to 'Any'
   |                                                                  |- note: provide a default value to avoid this warning
   |                                                                  |- note: force-unwrap the value to avoid this warning
   |                                                                  `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
25 |             delegator.addDelegate(delegate)
26 |         }
Build complete! (9.05s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ElkSwift",
  "name" : "ElkSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "ElkSwift",
      "targets" : [
        "ElkSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ElkSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "ElkSwiftTests",
      "path" : "Tests/ElkSwiftTests",
      "sources" : [
        "AllCrossingsCounterTests.swift",
        "BarycenterHeuristicTests.swift",
        "BarycenterPortDistributorTests.swift",
        "BetweenLayerEdgeTwoNodeCrossingsCounterTests.swift",
        "BinaryIndexedTreeTests.swift",
        "ConcurrentLayoutTests.swift",
        "CrossingsCounterTests.swift",
        "ElkPhaseSnapshotTest.swift",
        "ElkSwiftTests.swift",
        "GoldenOutputSnapshotTests.swift",
        "GreedyPortDistributorTests.swift",
        "GreedySwitchProcessorTests.swift",
        "InLayerEdgeTwoNodeCrossingCounterTests.swift",
        "IssueRegressionTests.swift",
        "JavaRandomTest.swift",
        "LayeredSpacingTests.swift",
        "NetworkSimplexTests.swift",
        "NorthSouthEdgeAllCrossingsCounterTests.swift",
        "NorthSouthEdgeNeighbouringNodeCrossingsCounterTests.swift",
        "OverallLayoutTests.swift",
        "SelfLoopTests.swift",
        "SwitchDeciderTests.swift",
        "TestHelpers/InLayerEdgeTestGraphCreator.swift",
        "TestHelpers/NorthSouthEdgeTestGraphCreator.swift",
        "TestHelpers/TestGraphCreator.swift"
      ],
      "target_dependencies" : [
        "ElkSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ElkSwift",
      "module_type" : "SwiftTarget",
      "name" : "ElkSwift",
      "path" : "Sources/ElkSwift",
      "product_memberships" : [
        "ElkSwift"
      ],
      "sources" : [
        "Bridge/ELK.swift",
        "Bridge/ElkGraphImpl.swift",
        "Bridge/ElkGraphUtil.swift",
        "Bridge/JavaCompat.swift",
        "Bridge/JavaNumbers.swift",
        "Bridge/JsonExporter.swift",
        "Bridge/JsonImporter.swift",
        "Bridge/TypeAliases.swift",
        "ELK/ArrayDeque.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_CGraph.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_CGroup.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_CNode.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_CompareFuzzy.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_ICompactionAlgorithm.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_ILockFunction.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_ISpacingsHandler.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_LongestPathCompaction.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_OneDimensionalCompactor.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_QuadraticConstraintCalculation.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_Quadruplet.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_ScanlineConstraintCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/options/org_eclipse_elk_alg_common_compaction_options_HighLevelSortingCriterion.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/options/org_eclipse_elk_alg_common_compaction_options_LowLevelSortingCriterion.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/options/org_eclipse_elk_alg_common_compaction_options_TraversalStrategy.swift",
        "ELK/org/eclipse/elk/alg/common/compaction/org_eclipse_elk_alg_common_compaction_Scanline.swift",
        "ELK/org/eclipse/elk/alg/common/networksimplex/org_eclipse_elk_alg_common_networksimplex_NEdge.swift",
        "ELK/org/eclipse/elk/alg/common/networksimplex/org_eclipse_elk_alg_common_networksimplex_NGraph.swift",
        "ELK/org/eclipse/elk/alg/common/networksimplex/org_eclipse_elk_alg_common_networksimplex_NNode.swift",
        "ELK/org/eclipse/elk/alg/common/networksimplex/org_eclipse_elk_alg_common_networksimplex_NetworkSimplex.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_AtomicCell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_Cell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_ContainerArea.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_ContainerCell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_GridContainerCell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_HorizontalLabelAlignment.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_LabelCell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_StripContainerCell.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/cellsystem/org_eclipse_elk_alg_common_nodespacing_cellsystem_VerticalLabelAlignment.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_CellSystemConfigurator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_HorizontalPortPlacementSizeCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_InsidePortLabelCellCreator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_LabelPlacer.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_NodeLabelAndSizeUtilities.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_NodeLabelCellCreator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_NodeSizeCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_PortContextCreator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_PortLabelPlacementCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_PortPlacementCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/algorithm/org_eclipse_elk_alg_common_nodespacing_internal_algorithm_VerticalPortPlacementSizeCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/org_eclipse_elk_alg_common_nodespacing_internal_NodeContext.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/org_eclipse_elk_alg_common_nodespacing_internal_NodeLabelLocation.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/org_eclipse_elk_alg_common_nodespacing_internal_PortContext.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/internal/org_eclipse_elk_alg_common_nodespacing_internal_PortContextMultimap.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/org_eclipse_elk_alg_common_nodespacing_NodeDimensionCalculation.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/org_eclipse_elk_alg_common_nodespacing_NodeLabelAndSizeCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/nodespacing/org_eclipse_elk_alg_common_nodespacing_NodeMarginCalculator.swift",
        "ELK/org/eclipse/elk/alg/common/org_eclipse_elk_alg_common_NodeMicroLayout.swift",
        "ELK/org/eclipse/elk/alg/common/org_eclipse_elk_alg_common_Point.swift",
        "ELK/org/eclipse/elk/alg/common/org_eclipse_elk_alg_common_RectilinearConvexHull.swift",
        "ELK/org/eclipse/elk/alg/common/overlaps/org_eclipse_elk_alg_common_overlaps_GreedyRectangleStripOverlapRemover.swift",
        "ELK/org/eclipse/elk/alg/common/overlaps/org_eclipse_elk_alg_common_overlaps_IRectangleStripOverlapRemovalStrategy.swift",
        "ELK/org/eclipse/elk/alg/common/overlaps/org_eclipse_elk_alg_common_overlaps_RectangleStripOverlapRemover.swift",
        "ELK/org/eclipse/elk/alg/common/utils/org_eclipse_elk_alg_common_utils_UniqueTriple.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/components/org_eclipse_elk_alg_layered_compaction_components_ComponentsToCGraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/components/org_eclipse_elk_alg_layered_compaction_components_IComponent.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/components/org_eclipse_elk_alg_layered_compaction_components_IConnectedComponents.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/components/org_eclipse_elk_alg_layered_compaction_components_IExternalExtension.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/components/org_eclipse_elk_alg_layered_compaction_components_OneDimensionalComponentsCompaction.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_IConstraintCalculationAlgorithm.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_LongestPathCompaction.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_QuadraticConstraintCalculation.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ScanlineConstraintCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_CGraph.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_CGroup.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_CNode.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_CompareFuzzy.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_ICGraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_ISpacingsHandler.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift",
        "ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_Quadruplet.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroup.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentOrderingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ModelOrderComponentGroup.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ModelOrderRowGraphPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_SimpleRowGraphPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CrossHierarchyEdge.swift",
        "ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CrossHierarchyEdgeComparator.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LEdge.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LGraph.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LGraphAdapters.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LGraphElement.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LGraphUtil.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LLabel.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LMargin.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LNode.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LPadding.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LPort.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_LShape.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_Layer.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/org_eclipse_elk_alg_layered_graph_Tarjan.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/transform/org_eclipse_elk_alg_layered_graph_transform_ElkGraphImporter.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/transform/org_eclipse_elk_alg_layered_graph_transform_ElkGraphLayoutTransferrer.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/transform/org_eclipse_elk_alg_layered_graph_transform_ElkGraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/graph/transform/org_eclipse_elk_alg_layered_graph_transform_IGraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/compaction/org_eclipse_elk_alg_layered_intermediate_compaction_EdgeAwareScanlineConstraintCalculation.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/compaction/org_eclipse_elk_alg_layered_intermediate_compaction_HorizontalGraphCompactor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/compaction/org_eclipse_elk_alg_layered_intermediate_compaction_LGraphToCGraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/compaction/org_eclipse_elk_alg_layered_intermediate_compaction_NetworkSimplexCompaction.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/compaction/org_eclipse_elk_alg_layered_intermediate_compaction_VerticalSegment.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/greedyswitch/org_eclipse_elk_alg_layered_intermediate_greedyswitch_BetweenLayerEdgeTwoNodeCrossingsCounter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/greedyswitch/org_eclipse_elk_alg_layered_intermediate_greedyswitch_CrossingMatrixFiller.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/greedyswitch/org_eclipse_elk_alg_layered_intermediate_greedyswitch_GreedySwitchHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/greedyswitch/org_eclipse_elk_alg_layered_intermediate_greedyswitch_NorthSouthEdgeNeighbouringNodeCrossingsCounter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/greedyswitch/org_eclipse_elk_alg_layered_intermediate_greedyswitch_SwitchDecider.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/ordering/org_eclipse_elk_alg_layered_intermediate_loops_ordering_PortRestorer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/ordering/org_eclipse_elk_alg_layered_intermediate_loops_ordering_PortSideAssigner.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfHyperLoop.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfHyperLoopLabels.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfLoopEdge.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfLoopHolder.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfLoopPort.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/org_eclipse_elk_alg_layered_intermediate_loops_SelfLoopType.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_AbstractSelfLoopRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_LabelPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_OrthogonalSelfLoopRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_PolylineSelfLoopRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_RoutingDirector.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/loops/routing/org_eclipse_elk_alg_layered_intermediate_loops_routing_RoutingSlotAssigner.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_BiLinkedHashMultiMap.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_CommentNodeMarginCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_CommentPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_CommentPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_ConstraintsPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_DummySelfLoopProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_EdgeAndLayerConstraintEdgeReverser.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_EndLabelPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_EndLabelPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_EndLabelSorter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_GraphTransformer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HierarchicalNodeResizingProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HierarchicalPortConstraintProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HierarchicalPortDummySizeProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HierarchicalPortOrthogonalEdgeRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HierarchicalPortPositionProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HighDegreeNodeLayeringProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HyperedgeDummyMerger.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_HypernodesProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_InLayerConstraintProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_InnermostNodeMarginCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_InteractiveExternalPortPositioner.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_IntermediateProcessorStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_InvertedPortProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelAndNodeSizeProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelDummyInserter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelDummyRemover.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelDummySwitcher.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelManagementProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LabelSideSelector.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LayerConstraintPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LayerConstraintPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LayerSizeAndGraphHeightCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LongEdgeJoiner.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_LongEdgeSplitter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_NodePromotion.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_NorthSouthPortPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_NorthSouthPortPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_PartitionMidprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_PartitionPostprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_PartitionPreprocessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_PortListSorter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_PortSideProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_ReversedEdgeRestorer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SelfLoopPortRestorer.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SelfLoopPostProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SelfLoopPreProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SelfLoopRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SemiInteractiveCrossMinProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/org_eclipse_elk_alg_layered_intermediate_SortByInputModelProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/preserveorder/org_eclipse_elk_alg_layered_intermediate_preserveorder_CMGroupModelOrderCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/preserveorder/org_eclipse_elk_alg_layered_intermediate_preserveorder_ModelOrderNodeComparator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/preserveorder/org_eclipse_elk_alg_layered_intermediate_preserveorder_ModelOrderPortComparator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/unzipping/org_eclipse_elk_alg_layered_intermediate_unzipping_AlternatingLayerUnzipper.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_ARDCutIndexHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_BreakingPointInserter.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_BreakingPointProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_BreakingPointRemover.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_CuttingUtils.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_GraphStats.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_ICutIndexCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_MSDCutIndexHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/intermediate/wrapping/org_eclipse_elk_alg_layered_intermediate_wrapping_SingleEdgeGraphWrapper.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_CenterEdgeLabelPlacementStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_ConstraintCalculationStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_CrossingMinimizationStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_CuttingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_CycleBreakingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_DirectionCongruency.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_EdgeConstraint.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_EdgeLabelSideSelection.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_EdgeStraighteningStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_FixedAlignment.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_GraphCompactionStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_GraphProperties.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_GreedySwitchType.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_GroupOrderStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_InLayerConstraint.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_InteractiveReferencePoint.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_InternalProperties.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LayerConstraint.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LayerUnzippingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LayeredOptions.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LayeredSpacings.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LayeringStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_LongEdgeOrderingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_NodeFlexibility.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_NodePlacementStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_NodePromotionStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_OrderingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_PortSortingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_PortType.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_SelfLoopDistributionStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_SelfLoopOrderingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_SelfLoopPlacementStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_Spacings.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_SplineRoutingMode.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_ValidifyStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/options/org_eclipse_elk_alg_layered_options_WrappingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/org_eclipse_elk_alg_layered_ElkLayered.swift",
        "ELK/org/eclipse/elk/alg/layered/org_eclipse_elk_alg_layered_GraphConfigurator.swift",
        "ELK/org/eclipse/elk/alg/layered/org_eclipse_elk_alg_layered_IHierarchyAwareLayoutProcessor.swift",
        "ELK/org/eclipse/elk/alg/layered/org_eclipse_elk_alg_layered_LayeredLayoutProvider.swift",
        "ELK/org/eclipse/elk/alg/layered/org_eclipse_elk_alg_layered_LayeredPhases.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_BFSNodeOrderCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_DFSNodeOrderCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_DepthFirstCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_GreedyCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_GreedyModelOrderCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_GroupModelOrderCalculator.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_InteractiveCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_ModelOrderCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_SCCModelOrderCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_SCCNodeTypeCycleBreaker.swift",
        "ELK/org/eclipse/elk/alg/layered/p1cycles/org_eclipse_elk_alg_layered_p1cycles_SCConnectivity.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_BreadthFirstModelOrderLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_CoffmanGrahamLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_DepthFirstModelOrderLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_InteractiveLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_LongestPathLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_LongestPathSourceLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_MinWidthLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_NetworkSimplexLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p2layers/org_eclipse_elk_alg_layered_p2layers_StretchWidthLayerer.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/SharedIntArray.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_AllCrossingsCounter.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_BinaryIndexedTree.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_CrossMinUtil.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_CrossingsCounter.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_HyperedgeCrossingsCounter.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/counting/org_eclipse_elk_alg_layered_p3order_counting_IInitializable.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_AbstractBarycenterPortDistributor.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_BarycenterHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_ForsterConstraintResolver.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_GraphInfoHolder.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_GreedyPortDistributor.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_ICrossingMinimizationHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_ISweepPortDistributor.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_InteractiveCrossingMinimizer.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_LayerSweepCrossingMinimizer.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_LayerSweepTypeDecider.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_LayerTotalPortDistributor.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_MedianHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_ModelOrderBarycenterHeuristic.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_NoCrossingMinimizer.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_NodeRelativePortDistributor.swift",
        "ELK/org/eclipse/elk/alg/layered/p3order/org_eclipse_elk_alg_layered_p3order_SweepCopy.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_BKAlignedLayout.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_BKAligner.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_BKCompactor.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_BKNodePlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_ICompactor.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_NeighborhoodInformation.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/bk/org_eclipse_elk_alg_layered_p4nodes_bk_ThresholdStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/org_eclipse_elk_alg_layered_p4nodes_InteractiveNodePlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/org_eclipse_elk_alg_layered_p4nodes_LinearSegmentsNodePlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/org_eclipse_elk_alg_layered_p4nodes_NetworkSimplexPlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/p4nodes/org_eclipse_elk_alg_layered_p4nodes_SimpleNodePlacer.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/org_eclipse_elk_alg_layered_p5edges_EdgeRouterFactory.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/org_eclipse_elk_alg_layered_p5edges_OrthogonalEdgeRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/org_eclipse_elk_alg_layered_p5edges_PolylineEdgeRouter.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/direction/org_eclipse_elk_alg_layered_p5edges_orthogonal_direction_BaseRoutingDirectionStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/direction/org_eclipse_elk_alg_layered_p5edges_orthogonal_direction_NorthToSouthRoutingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/direction/org_eclipse_elk_alg_layered_p5edges_orthogonal_direction_RoutingDirection.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/direction/org_eclipse_elk_alg_layered_p5edges_orthogonal_direction_SouthToNorthRoutingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/direction/org_eclipse_elk_alg_layered_p5edges_orthogonal_direction_WestToEastRoutingStrategy.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/org_eclipse_elk_alg_layered_p5edges_orthogonal_HyperEdgeCycleDetector.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/org_eclipse_elk_alg_layered_p5edges_orthogonal_HyperEdgeSegment.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/org_eclipse_elk_alg_layered_p5edges_orthogonal_HyperEdgeSegmentDependency.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/org_eclipse_elk_alg_layered_p5edges_orthogonal_HyperEdgeSegmentSplitter.swift",
        "ELK/org/eclipse/elk/alg/layered/p5edges/orthogonal/org_eclipse_elk_alg_layered_p5edges_orthogonal_OrthogonalRoutingGenerator.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_AlgorithmAssembler.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_EnumBasedFactoryComparator.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_ILayoutPhase.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_ILayoutPhaseFactory.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_ILayoutProcessor.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_ILayoutProcessorFactory.swift",
        "ELK/org/eclipse/elk/core/alg/org_eclipse_elk_core_alg_LayoutProcessorConfiguration.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_DeprecatedLayoutOptionReplacer.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_ILayoutMetaData.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_ILayoutMetaDataProvider.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_LayoutAlgorithmData.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_LayoutAlgorithmResolver.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_LayoutCategoryData.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_LayoutMetaDataService.swift",
        "ELK/org/eclipse/elk/core/data/org_eclipse_elk_core_data_LayoutOptionData.swift",
        "ELK/org/eclipse/elk/core/labels/org_eclipse_elk_core_labels_ILabelManager.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_BezierSpline.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_CubicSplineInterpolator.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_ElkMargin.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_ElkMath.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_ElkPadding.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_ElkRectangle.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_ISplineInterpolator.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_KVector.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_KVectorChain.swift",
        "ELK/org/eclipse/elk/core/math/org_eclipse_elk_core_math_Spacing.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_Alignment.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_ContentAlignment.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_CoreOptions.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_Direction.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_EdgeCoords.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_EdgeLabelPlacement.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_EdgeRouting.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_EdgeType.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_HierarchyHandling.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_ITopdownSizeApproximator.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_LabelSide.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_NodeLabelPlacement.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_PortAlignment.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_PortConstraints.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_PortLabelPlacement.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_PortSide.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_ShapeCoords.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_SizeConstraint.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_SizeOptions.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_TopdownNodeTypes.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_TopdownSizeApproximator.swift",
        "ELK/org/eclipse/elk/core/options/org_eclipse_elk_core_options_TopdownSizeApproximatorUtil.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_AbstractLayoutProvider.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_IGraphLayoutEngine.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_ITopdownLayoutProvider.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_LayoutConfigurator.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_RecursiveGraphLayoutEngine.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_UnsupportedConfigurationException.swift",
        "ELK/org/eclipse/elk/core/org_eclipse_elk_core_UnsupportedGraphException.swift",
        "ELK/org/eclipse/elk/core/util/adapters/org_eclipse_elk_core_util_adapters_ElkGraphAdapters.swift",
        "ELK/org/eclipse/elk/core/util/adapters/org_eclipse_elk_core_util_adapters_GraphAdapters.swift",
        "ELK/org/eclipse/elk/core/util/internal/org_eclipse_elk_core_util_internal_LayoutOptionProxy.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AbstractRandomListAccessor.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_AlgorithmFactory.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_BasicProgressMonitor.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_DefaultFactory.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkSpacings.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ElkUtil.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_ExclusiveBounds.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IDataObject.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IElkCancelIndicator.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IElkProgressMonitor.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IFactory.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IGraphElementVisitor.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_IndividualSpacings.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_InstancePool.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_Maybe.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_NullElkProgressMonitor.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_Pair.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_PropertyConstantsDelegator.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_Quadruple.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_Triple.swift",
        "ELK/org/eclipse/elk/core/util/org_eclipse_elk_core_util_WrappedException.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_EMapPropertyHolder.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkBendPoint.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkConnectableShape.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkEdge.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkEdgeSection.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkGraphElement.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkGraphFactory.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkGraphPackage.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkLabel.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkNode.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkPersistentEntry.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkPort.swift",
        "ELK/org/eclipse/elk/graph/org_eclipse_elk_graph_ElkShape.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_AdvancedPropertyValue.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_ExperimentalPropertyValue.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_GraphFeature.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_IProperty.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_IPropertyHolder.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_IPropertyValueProxy.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_MapPropertyHolder.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_Property.swift",
        "ELK/org/eclipse/elk/graph/properties/org_eclipse_elk_graph_properties_PropertyHolderComparator.swift",
        "ElkSwift.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.