Build Information
Successful build of ElkSwift, reference main (32f804), with Swift 6.1 for macOS (SPM) on 22 Apr 2026 08:46:18 UTC.
Swift 6 data race errors: 356
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[406/413] Compiling ElkSwift org_eclipse_elk_alg_layered_components_ModelOrderRowGraphPlacer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[407/413] Compiling ElkSwift org_eclipse_elk_alg_layered_components_SimpleRowGraphPlacer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[408/413] Compiling ElkSwift org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[409/413] Compiling ElkSwift org_eclipse_elk_alg_layered_compound_CompoundGraphPreprocessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[410/413] Compiling ElkSwift org_eclipse_elk_alg_layered_compound_CrossHierarchyEdge.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[411/413] Compiling ElkSwift org_eclipse_elk_alg_layered_compound_CrossHierarchyEdgeComparator.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[412/413] Compiling ElkSwift org_eclipse_elk_alg_layered_graph_LEdge.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
[413/413] Compiling ElkSwift org_eclipse_elk_alg_layered_graph_LGraph.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:19:24: warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 | /** Longest path-based compaction strategy. */
19 | package static let LONGEST_PATH_COMPACTION: ICompactionAlgorithm = LongestPathCompaction()
| |- warning: static property 'LONGEST_PATH_COMPACTION' is not concurrency-safe because non-'Sendable' type 'any ICompactionAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'LONGEST_PATH_COMPACTION' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | /** Currently used compaction algorithm. */
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/algs/org_eclipse_elk_alg_layered_compaction_oned_algs_ICompactionAlgorithm.swift:18:18: note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
16 | * structure to keep edges as short as possible.
17 | */
18 | package protocol ICompactionAlgorithm {
| `- note: protocol 'ICompactionAlgorithm' does not conform to the 'Sendable' protocol
19 | /**
20 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:25:24: warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
23 |
24 | /** Constraint calculation using a scanline technique. */
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
| |- warning: static property 'SCANLINE_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'SCANLINE_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:27:24: warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
25 | package static let SCANLINE_CONSTRAINTS: IConstraintCalculationAlgorithm = ScanlineConstraintCalculator()
26 | /** Constraint calculation by pair-wise comparison of CNodes. */
27 | package static let QUADRATIC_CONSTRAINTS: IConstraintCalculationAlgorithm = QuadraticConstraintCalculation()
| |- warning: static property 'QUADRATIC_CONSTRAINTS' is not concurrency-safe because non-'Sendable' type 'any IConstraintCalculationAlgorithm' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'QUADRATIC_CONSTRAINTS' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | /** Currently used instance of the constraint calculation algorithm. */
29 | package var constraintAlgorithm: IConstraintCalculationAlgorithm = OneDimensionalCompactor.SCANLINE_CONSTRAINTS
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/common/compaction/oned/org_eclipse_elk_alg_common_compaction_oned_IConstraintCalculationAlgorithm.swift:14:18: note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
12 | * set of boxes in the plane.
13 | */
14 | package protocol IConstraintCalculationAlgorithm {
| `- note: protocol 'IConstraintCalculationAlgorithm' does not conform to the 'Sendable' protocol
15 | /**
16 | * @param compactor
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:36:37: warning: result of call to 'offset' is unused
34 | for port in node.ports {
35 | for edge in port.outgoingEdges {
36 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:38:40: warning: result of call to 'offset' is unused
36 | edge.bendPoints.offset(graphOffset)
37 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
38 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
39 | }
40 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:69:37: warning: result of call to 'offset' is unused
67 | for port in node.ports {
68 | for edge in port.outgoingEdges {
69 | edge.bendPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_AbstractGraphPlacer.swift:71:40: warning: result of call to 'offset' is unused
69 | edge.bendPoints.offset(graphOffset)
70 | if let junctionPoints: KVectorChain = edge.getProperty(LayeredOptions.JUNCTION_POINTS) {
71 | junctionPoints.offset(graphOffset)
| `- warning: result of call to 'offset' is unused
72 | }
73 | for label in edge.labels {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:35:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
33 |
34 | // Place components in each group
35 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
36 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
37 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:165:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
163 |
164 | package func placeComponentsHorizontally(_ components: [LGraph], spacing: Double) -> KVector {
165 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
166 |
167 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupGraphPlacer.swift:181:13: warning: variable 'size' was never mutated; consider changing to 'let' constant
179 |
180 | package func placeComponentsVertically(_ components: [LGraph], spacing: Double) -> KVector {
181 | var size = KVector()
| `- warning: variable 'size' was never mutated; consider changing to 'let' constant
182 |
183 | for component in components {
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:41:13: warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
39 |
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
| `- warning: variable 'spaceBlockedBySouthEdges' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:42:13: warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
40 | // Place components in each group
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
| `- warning: variable 'spaceBlockedByComponents' was never mutated; consider changing to 'let' constant
43 | var offset = KVector()
44 | var maxSize = KVector()
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:43:13: warning: variable 'offset' was never mutated; consider changing to 'let' constant
41 | var spaceBlockedBySouthEdges = KVector()
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
| `- warning: variable 'offset' was never mutated; consider changing to 'let' constant
44 | var maxSize = KVector()
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentGroupModelOrderGraphPlacer.swift:44:13: warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
42 | var spaceBlockedByComponents = KVector()
43 | var offset = KVector()
44 | var maxSize = KVector()
| `- warning: variable 'maxSize' was never mutated; consider changing to 'let' constant
45 | let componentSpacing: Double = firstComponent.getProperty(LayeredOptions.SPACING_COMPONENT_COMPONENT) ?? 20.0
46 |
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:89:21: warning: variable 'vc' was never mutated; consider changing to 'let' constant
87 | for edge in cc.getExternalEdges() {
88 | guard let src = edge.source, let tgt = edge.target else { continue }
89 | var vc = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'vc' was never mutated; consider changing to 'let' constant
90 | vc.insert(src.absoluteAnchor, at: 0)
91 | vc.append(tgt.absoluteAnchor)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:354:13: warning: variable 'points' was never mutated; consider changing to 'let' constant
352 | }
353 |
354 | var points = KVectorChain(edge.bendPoints.elements)
| `- warning: variable 'points' was never mutated; consider changing to 'let' constant
355 | points.insert(p1, at: 0)
356 | points.append(p2)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:360:13: warning: variable 'segments' was never mutated; consider changing to 'let' constant
358 | let outerSegmentIsFirst = (edgeSource === externalPort)
359 |
360 | var segments = Segments()
| `- warning: variable 'segments' was never mutated; consider changing to 'let' constant
361 | for i in 0..<points.count - 1 {
362 | let segment = (first: points[i], second: points[i + 1])
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/components/org_eclipse_elk_alg_layered_components_ComponentsCompactor.swift:390:13: warning: variable 'pos' was never mutated; consider changing to 'let' constant
388 |
389 | package func getPortPositionOnMargin(_ port: LPort) -> KVector {
390 | var pos = port.absoluteAnchor.clone()
| `- warning: variable 'pos' was never mutated; consider changing to 'let' constant
391 | guard let portNode = port.node else { return pos }
392 | let margins = portNode.margin
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:13:24: warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
11 | * A predicate that checks if a given cross hierarchy edge has junction points.
12 | */
13 | package static let hasJunctionPointsPredicate: (CrossHierarchyEdge) -> Bool = { chEdge in
| |- warning: static property 'hasJunctionPointsPredicate' is not concurrency-safe because non-'Sendable' type '(CrossHierarchyEdge) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'hasJunctionPointsPredicate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | let jps: KVectorChain? = chEdge.getEdge().getProperty(LayeredOptions.JUNCTION_POINTS) as? KVectorChain
15 | return !(jps?.isEmpty ?? true)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:74:28: warning: result of call to 'offset' is unused
72 | let bendPoints = KVectorChain()
73 | bendPoints.addAllAsCopies(at: 0, ledge.getBendPoints().toArray())
74 | bendPoints.offset(offset)
| `- warning: result of call to 'offset' is unused
75 |
76 | // Note: if an NPE occurs here, that means ELK Layered has replaced the original edge
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compound/org_eclipse_elk_alg_layered_compound_CompoundGraphPostprocessor.swift:177:18: warning: result of call to 'offset' is unused
175 | let jpCopies = KVectorChain()
176 | jpCopies.addAllAsCopies(at: 0, ledgeJPs.toArray())
177 | jpCopies.offset(offset)
| `- warning: result of call to 'offset' is unused
178 |
179 | target.append(contentsOf: jpCopies)
/Users/admin/builder/spi-builder-workspace/Sources/ElkSwift/ELK/org/eclipse/elk/alg/layered/compaction/oned/org_eclipse_elk_alg_layered_compaction_oned_OneDimensionalCompactor.swift:159:9: warning: default will never be executed
157 | default: break
158 | }
159 | default:
| `- warning: default will never be executed
160 | break
161 | }
Build complete! (10.50s)
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.