Build Information
Successful build of Euler, reference main (f54c76
), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 21:34:57 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Euler-Package -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:57:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earth_moon = Constant(name: "Earth to Moon", description: "Earth to moon distance in km", value: BigNumber("384401")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: warning: static property 'earth_sun' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: note: add '@MainActor' to make static property 'earth_sun' part of global actor 'MainActor'
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: warning: static property 'earthMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: note: add '@MainActor' to make static property 'earthMass' part of global actor 'MainActor'
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: warning: static property 'earthRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: note: add '@MainActor' to make static property 'earthRadius' part of global actor 'MainActor'
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: warning: static property 'electric' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: note: add '@MainActor' to make static property 'electric' part of global actor 'MainActor'
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: warning: static property 'electronMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: note: add '@MainActor' to make static property 'electronMass' part of global actor 'MainActor'
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: warning: static property 'elementaryCharge' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: note: add '@MainActor' to make static property 'elementaryCharge' part of global actor 'MainActor'
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: warning: static property 'EulerGamma' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: note: add '@MainActor' to make static property 'EulerGamma' part of global actor 'MainActor'
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: warning: static property 'Faraday' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: note: add '@MainActor' to make static property 'Faraday' part of global actor 'MainActor'
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: warning: static property 'fineStructure' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: note: add '@MainActor' to make static property 'fineStructure' part of global actor 'MainActor'
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: warning: static property 'goldenRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: note: add '@MainActor' to make static property 'goldenRatio' part of global actor 'MainActor'
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: warning: static property 'gravity' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: note: add '@MainActor' to make static property 'gravity' part of global actor 'MainActor'
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: warning: static property 'inverseFineStructure' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: note: add '@MainActor' to make static property 'inverseFineStructure' part of global actor 'MainActor'
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: warning: static property 'magnetic' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: note: add '@MainActor' to make static property 'magnetic' part of global actor 'MainActor'
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: warning: static property 'magneticFluxQuantum' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: note: add '@MainActor' to make static property 'magneticFluxQuantum' part of global actor 'MainActor'
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: warning: static property 'molarGas' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: note: add '@MainActor' to make static property 'molarGas' part of global actor 'MainActor'
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: warning: static property 'moonMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: note: add '@MainActor' to make static property 'moonMass' part of global actor 'MainActor'
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: warning: static property 'moonRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: note: add '@MainActor' to make static property 'moonRadius' part of global actor 'MainActor'
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: warning: static property 'neutronMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: note: add '@MainActor' to make static property 'neutronMass' part of global actor 'MainActor'
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: warning: static property 'NewtonianGravitation' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: note: add '@MainActor' to make static property 'NewtonianGravitation' part of global actor 'MainActor'
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: warning: static property 'pi' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: note: add '@MainActor' to make static property 'pi' part of global actor 'MainActor'
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: warning: static property 'Planck' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: note: add '@MainActor' to make static property 'Planck' part of global actor 'MainActor'
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: warning: static property 'protonElectronMassRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: note: add '@MainActor' to make static property 'protonElectronMassRatio' part of global actor 'MainActor'
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: warning: static property 'protonNeutronMassRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: note: add '@MainActor' to make static property 'protonNeutronMassRatio' part of global actor 'MainActor'
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: warning: static property 'protonMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: note: add '@MainActor' to make static property 'protonMass' part of global actor 'MainActor'
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: warning: static property 'Rydberg' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: note: add '@MainActor' to make static property 'Rydberg' part of global actor 'MainActor'
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: warning: static property 'speedOfLight' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: note: add '@MainActor' to make static property 'speedOfLight' part of global actor 'MainActor'
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: warning: static property 'speedOfSound' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: note: add '@MainActor' to make static property 'speedOfSound' part of global actor 'MainActor'
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: warning: static property 'sqrt2' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: note: add '@MainActor' to make static property 'sqrt2' part of global actor 'MainActor'
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: warning: static property 'StefanBoltzmann' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: note: add '@MainActor' to make static property 'StefanBoltzmann' part of global actor 'MainActor'
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: warning: static property 'sunMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: note: add '@MainActor' to make static property 'sunMass' part of global actor 'MainActor'
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: warning: static property 'sunRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: note: add '@MainActor' to make static property 'sunRadius' part of global actor 'MainActor'
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: warning: static property 'theRockMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: note: add '@MainActor' to make static property 'theRockMass' part of global actor 'MainActor'
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: warning: static property 'Thomson' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: note: add '@MainActor' to make static property 'Thomson' part of global actor 'MainActor'
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: warning: static property 'UltimateAnswer' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: note: add '@MainActor' to make static property 'UltimateAnswer' part of global actor 'MainActor'
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: warning: static property 'universeTemperature' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: note: add '@MainActor' to make static property 'universeTemperature' part of global actor 'MainActor'
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Constant]' may have shared mutable state; this is an error in the Swift 6 language mode
static let all: [Constant] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
static let all: [Constant] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let all: [Constant] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: warning: static property 'autoFormats' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: convert 'autoFormats' to a 'let' constant to make 'Sendable' shared state immutable
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: add '@MainActor' to make static property 'autoFormats' part of global actor 'MainActor'
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DateLinker.swift,\ OperationsBigInt.swift,\ Limbs.swift,\ RSA.swift,\ Engineering.swift,\ md5.swift,\ Substring.swift,\ sha256.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/DateLinker.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/BigNumber/BigInt/OperationsBigInt.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/BigNumber/Limbs.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/RSA.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Engineering.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/md5.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/Substring.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift (in target 'Euler' from project 'Euler')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/DateLinker.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/BigNumber/BigInt/OperationsBigInt.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/BigNumber/Limbs.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/RSA.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Engineering.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/md5.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/Substring.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690877162-swift-frontend-Euler-DateLinker.swift-arm64_apple_tvos18.4-o-Onone-4240252154.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 5.4544 seconds (10.1740 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2811 ( 6.4%) 0.1426 ( 13.1%) 0.4236 ( 7.8%) 2.7332 ( 26.9%) parse-and-resolve-imports
0.2797 ( 6.4%) 0.1396 ( 12.8%) 0.4193 ( 7.7%) 2.7244 ( 26.8%) Import resolution
0.8259 ( 18.9%) 0.1689 ( 15.5%) 0.9948 ( 18.2%) 1.0033 ( 9.9%) perform-sema
0.8254 ( 18.9%) 0.1688 ( 15.5%) 0.9942 ( 18.2%) 1.0027 ( 9.9%) Type checking and Semantic analysis
0.7958 ( 18.2%) 0.1617 ( 14.8%) 0.9575 ( 17.6%) 0.9629 ( 9.5%) typecheck-stmt
0.6839 ( 15.7%) 0.1423 ( 13.1%) 0.8262 ( 15.1%) 0.8303 ( 8.2%) typecheck-expr
0.3336 ( 7.6%) 0.1130 ( 10.4%) 0.4466 ( 8.2%) 0.4507 ( 4.4%) typecheck-decl
0.0845 ( 1.9%) 0.0085 ( 0.8%) 0.0930 ( 1.7%) 0.0945 ( 0.9%) precheck-target
0.0013 ( 0.0%) 0.0092 ( 0.8%) 0.0105 ( 0.2%) 0.0759 ( 0.7%) load-stdlib
0.0541 ( 1.2%) 0.0010 ( 0.1%) 0.0552 ( 1.0%) 0.0585 ( 0.6%) SIL optimization
0.0438 ( 1.0%) 0.0125 ( 1.1%) 0.0562 ( 1.0%) 0.0583 ( 0.6%) IRGen
0.0470 ( 1.1%) 0.0074 ( 0.7%) 0.0543 ( 1.0%) 0.0546 ( 0.5%) build-rewrite-system
0.0487 ( 1.1%) 0.0026 ( 0.2%) 0.0512 ( 0.9%) 0.0520 ( 0.5%) SILGen
0.0427 ( 1.0%) 0.0017 ( 0.2%) 0.0444 ( 0.8%) 0.0450 ( 0.4%) SILGen-function
0.0102 ( 0.2%) 0.0090 ( 0.8%) 0.0193 ( 0.4%) 0.0196 ( 0.2%) import-clang-decl
0.0057 ( 0.1%) 0.0002 ( 0.0%) 0.0059 ( 0.1%) 0.0059 ( 0.1%) typecheck-for-each
0.0007 ( 0.0%) 0.0002 ( 0.0%) 0.0009 ( 0.0%) 0.0009 ( 0.0%) load-all-members
0.0004 ( 0.0%) 0.0000 ( 0.0%) 0.0004 ( 0.0%) 0.0004 ( 0.0%) typecheck-expr-pattern
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
4.3651 (100.0%) 1.0893 (100.0%) 5.4544 (100.0%) 10.1740 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 2.3786 seconds (4.7853 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.9699 (100.0%) 0.4087 (100.0%) 2.3786 (100.0%) 4.7853 (100.0%) Building Target
1.9699 (100.0%) 0.4087 (100.0%) 2.3786 (100.0%) 4.7853 (100.0%) Total
SwiftCompile normal arm64 Compiling\ combinations.swift,\ fibonacci.swift,\ gamma.swift,\ gcd.swift,\ isPrime.swift,\ Statistical.swift,\ leastFactor.swift,\ modulo.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/combinations.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/fibonacci.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/gamma.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/gcd.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/isPrime.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Statistical.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/leastFactor.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/modulo.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690885436-swift-frontend-Euler-combinations.swift-arm64_apple_tvos18.4-o-Onone-71151743.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.4106 seconds (6.7345 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0325 ( 3.1%) 0.1110 ( 30.3%) 0.1435 ( 10.2%) 2.7722 ( 41.2%) parse-and-resolve-imports
0.0311 ( 3.0%) 0.1099 ( 30.0%) 0.1410 ( 10.0%) 2.7697 ( 41.1%) Import resolution
0.1975 ( 18.9%) 0.0233 ( 6.4%) 0.2207 ( 15.6%) 0.2208 ( 3.3%) perform-sema
0.1970 ( 18.9%) 0.0232 ( 6.3%) 0.2202 ( 15.6%) 0.2203 ( 3.3%) Type checking and Semantic analysis
0.1886 ( 18.1%) 0.0224 ( 6.1%) 0.2111 ( 15.0%) 0.2112 ( 3.1%) typecheck-stmt
0.1425 ( 13.7%) 0.0161 ( 4.4%) 0.1586 ( 11.2%) 0.1587 ( 2.4%) typecheck-expr
0.0796 ( 7.6%) 0.0273 ( 7.4%) 0.1069 ( 7.6%) 0.1074 ( 1.6%) build-rewrite-system
0.0013 ( 0.1%) 0.0049 ( 1.3%) 0.0062 ( 0.4%) 0.0717 ( 1.1%) load-stdlib
0.0501 ( 4.8%) 0.0052 ( 1.4%) 0.0552 ( 3.9%) 0.0552 ( 0.8%) precheck-target
0.0392 ( 3.8%) 0.0059 ( 1.6%) 0.0451 ( 3.2%) 0.0451 ( 0.7%) typecheck-decl
0.0212 ( 2.0%) 0.0050 ( 1.4%) 0.0261 ( 1.9%) 0.0262 ( 0.4%) IRGen
0.0129 ( 1.2%) 0.0096 ( 2.6%) 0.0225 ( 1.6%) 0.0225 ( 0.3%) import-clang-decl
0.0171 ( 1.6%) 0.0001 ( 0.0%) 0.0172 ( 1.2%) 0.0172 ( 0.3%) SIL optimization
0.0160 ( 1.5%) 0.0011 ( 0.3%) 0.0172 ( 1.2%) 0.0171 ( 0.3%) SILGen
0.0135 ( 1.3%) 0.0007 ( 0.2%) 0.0142 ( 1.0%) 0.0142 ( 0.2%) SILGen-function
0.0028 ( 0.3%) 0.0002 ( 0.1%) 0.0031 ( 0.2%) 0.0031 ( 0.0%) typecheck-for-each
0.0008 ( 0.1%) 0.0003 ( 0.1%) 0.0011 ( 0.1%) 0.0011 ( 0.0%) load-all-members
0.0004 ( 0.0%) 0.0001 ( 0.0%) 0.0005 ( 0.0%) 0.0005 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.0442 (100.0%) 0.3665 (100.0%) 1.4106 (100.0%) 6.7345 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.8533 seconds (4.6112 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.2495 (100.0%) 0.6038 (100.0%) 1.8533 (100.0%) 4.6112 (100.0%) Building Target
1.2495 (100.0%) 0.6038 (100.0%) 1.8533 (100.0%) 4.6112 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/combinations.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/fibonacci.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/gamma.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/gcd.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/isPrime.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Statistical.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/leastFactor.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/modulo.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Euler.swift,\ LogicalLinker.swift,\ Array.swift,\ Collatz.swift,\ Fibonacci.swift,\ Sieve.swift,\ Graph.swift,\ Financial.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Euler.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/LogicalLinker.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Extensions/Array.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Collatz.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Fibonacci.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Sieve.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Graph.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Financial.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690882802-swift-frontend-Euler-Euler.swift-arm64_apple_tvos18.4-o-Onone-2325734298.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8263 seconds (6.0840 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0328 ( 6.6%) 0.1040 ( 31.6%) 0.1368 ( 16.6%) 2.7198 ( 44.7%) parse-and-resolve-imports
0.0316 ( 6.3%) 0.1031 ( 31.3%) 0.1347 ( 16.3%) 2.7177 ( 44.7%) Import resolution
0.0826 ( 16.6%) 0.0252 ( 7.7%) 0.1078 ( 13.0%) 0.1079 ( 1.8%) build-rewrite-system
0.0730 ( 14.7%) 0.0190 ( 5.8%) 0.0920 ( 11.1%) 0.0956 ( 1.6%) perform-sema
0.0727 ( 14.6%) 0.0189 ( 5.7%) 0.0916 ( 11.1%) 0.0952 ( 1.6%) Type checking and Semantic analysis
0.0012 ( 0.2%) 0.0070 ( 2.1%) 0.0082 ( 1.0%) 0.0884 ( 1.5%) load-stdlib
0.0525 ( 10.6%) 0.0088 ( 2.7%) 0.0613 ( 7.4%) 0.0613 ( 1.0%) typecheck-stmt
0.0412 ( 8.3%) 0.0140 ( 4.2%) 0.0552 ( 6.7%) 0.0588 ( 1.0%) typecheck-decl
0.0432 ( 8.7%) 0.0071 ( 2.2%) 0.0503 ( 6.1%) 0.0503 ( 0.8%) typecheck-expr
0.0128 ( 2.6%) 0.0103 ( 3.1%) 0.0231 ( 2.8%) 0.0233 ( 0.4%) import-clang-decl
0.0148 ( 3.0%) 0.0053 ( 1.6%) 0.0202 ( 2.4%) 0.0206 ( 0.3%) IRGen
0.0160 ( 3.2%) 0.0026 ( 0.8%) 0.0186 ( 2.3%) 0.0186 ( 0.3%) precheck-target
0.0090 ( 1.8%) 0.0019 ( 0.6%) 0.0109 ( 1.3%) 0.0109 ( 0.2%) SILGen
0.0058 ( 1.2%) 0.0014 ( 0.4%) 0.0072 ( 0.9%) 0.0072 ( 0.1%) SILGen-function
0.0066 ( 1.3%) 0.0003 ( 0.1%) 0.0068 ( 0.8%) 0.0068 ( 0.1%) SIL optimization
0.0008 ( 0.2%) 0.0004 ( 0.1%) 0.0012 ( 0.2%) 0.0012 ( 0.0%) load-all-members
0.0003 ( 0.1%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4970 (100.0%) 0.3293 (100.0%) 0.8263 (100.0%) 6.0840 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.8406 seconds (4.5985 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.1122 (100.0%) 0.7284 (100.0%) 1.8406 (100.0%) 4.5985 (100.0%) Building Target
1.1122 (100.0%) 0.7284 (100.0%) 1.8406 (100.0%) 4.5985 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Euler.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/LogicalLinker.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Extensions/Array.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Collatz.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Fibonacci.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Generators/Sieve.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Graph.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Financial.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ random.swift,\ KnuthDSupport.swift,\ sum.swift,\ DateTime.swift,\ Average.swift,\ ExpressionSolver.swift,\ Correlation.swift,\ Fisher.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/random.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/KnuthDSupport.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/sum.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Average.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Expression/ExpressionSolver.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Correlation.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Fisher.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690871090-swift-frontend-Euler-random.swift-arm64_apple_tvos18.4-o-Onone-2996796636.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.6440 seconds (7.4602 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0312 ( 2.5%) 0.1010 ( 26.6%) 0.1323 ( 8.0%) 2.9947 ( 40.1%) parse-and-resolve-imports
0.0299 ( 2.4%) 0.1001 ( 26.4%) 0.1300 ( 7.9%) 2.9925 ( 40.1%) Import resolution
0.2493 ( 19.7%) 0.0316 ( 8.3%) 0.2809 ( 17.1%) 0.2837 ( 3.8%) perform-sema
0.2489 ( 19.7%) 0.0315 ( 8.3%) 0.2804 ( 17.1%) 0.2832 ( 3.8%) Type checking and Semantic analysis
0.2324 ( 18.4%) 0.0294 ( 7.8%) 0.2618 ( 15.9%) 0.2645 ( 3.5%) typecheck-stmt
0.1957 ( 15.5%) 0.0251 ( 6.6%) 0.2208 ( 13.4%) 0.2233 ( 3.0%) typecheck-expr
0.0016 ( 0.1%) 0.0114 ( 3.0%) 0.0129 ( 0.8%) 0.0905 ( 1.2%) load-stdlib
0.0564 ( 4.5%) 0.0153 ( 4.0%) 0.0717 ( 4.4%) 0.0730 ( 1.0%) build-rewrite-system
0.0541 ( 4.3%) 0.0083 ( 2.2%) 0.0624 ( 3.8%) 0.0638 ( 0.9%) typecheck-decl
0.0508 ( 4.0%) 0.0056 ( 1.5%) 0.0564 ( 3.4%) 0.0564 ( 0.8%) precheck-target
0.0287 ( 2.3%) 0.0057 ( 1.5%) 0.0345 ( 2.1%) 0.0345 ( 0.5%) IRGen
0.0258 ( 2.0%) 0.0002 ( 0.0%) 0.0260 ( 1.6%) 0.0260 ( 0.3%) SIL optimization
0.0232 ( 1.8%) 0.0025 ( 0.7%) 0.0257 ( 1.6%) 0.0257 ( 0.3%) SILGen
0.0129 ( 1.0%) 0.0090 ( 2.4%) 0.0219 ( 1.3%) 0.0219 ( 0.3%) import-clang-decl
0.0189 ( 1.5%) 0.0019 ( 0.5%) 0.0208 ( 1.3%) 0.0208 ( 0.3%) SILGen-function
0.0025 ( 0.2%) 0.0003 ( 0.1%) 0.0028 ( 0.2%) 0.0029 ( 0.0%) typecheck-for-each
0.0008 ( 0.1%) 0.0004 ( 0.1%) 0.0011 ( 0.1%) 0.0011 ( 0.0%) load-all-members
0.0007 ( 0.1%) 0.0001 ( 0.0%) 0.0009 ( 0.1%) 0.0009 ( 0.0%) typecheck-expr-pattern
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0004 ( 0.0%) 0.0004 ( 0.0%) module-populate-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
1.2642 (100.0%) 0.3798 (100.0%) 1.6440 (100.0%) 7.4602 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.6326 seconds (4.6248 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.1097 (100.0%) 0.5229 (100.0%) 1.6326 (100.0%) 4.6248 (100.0%) Building Target
1.1097 (100.0%) 0.5229 (100.0%) 1.6326 (100.0%) 4.6248 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/random.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/KnuthDSupport.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/sum.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: warning: static property 'autoFormats' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: convert 'autoFormats' to a 'let' constant to make 'Sendable' shared state immutable
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: add '@MainActor' to make static property 'autoFormats' part of global actor 'MainActor'
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/DateTime.swift:138:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
internal static var autoFormats: [String] = DateFormats.builtInAutoFormat
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Average.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Expression/ExpressionSolver.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Correlation.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Fisher.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Logical.swift,\ Execute.swift,\ Tables.swift,\ TablesDataSource.swift,\ TablesDelegate.swift,\ Pointers.swift,\ UnsafeMemory.swift,\ UnsafeMutableMemory.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Logical.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Execute.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/TablesDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/TablesDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/Pointers.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/UnsafeMemory.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/UnsafeMutableMemory.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690879086-swift-frontend-Euler-Logical.swift-arm64_apple_tvos18.4-o-Onone-450112365.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7464 seconds (6.0776 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0329 ( 8.1%) 0.1090 ( 31.8%) 0.1419 ( 19.0%) 2.7965 ( 46.0%) parse-and-resolve-imports
0.0317 ( 7.8%) 0.1081 ( 31.5%) 0.1398 ( 18.7%) 2.7943 ( 46.0%) Import resolution
0.0837 ( 20.7%) 0.0256 ( 7.5%) 0.1094 ( 14.7%) 0.1096 ( 1.8%) build-rewrite-system
0.0122 ( 3.0%) 0.0396 ( 11.6%) 0.0518 ( 6.9%) 0.0735 ( 1.2%) load-stdlib
0.0507 ( 12.6%) 0.0109 ( 3.2%) 0.0616 ( 8.3%) 0.0616 ( 1.0%) perform-sema
0.0504 ( 12.5%) 0.0108 ( 3.2%) 0.0612 ( 8.2%) 0.0613 ( 1.0%) Type checking and Semantic analysis
0.0281 ( 7.0%) 0.0076 ( 2.2%) 0.0357 ( 4.8%) 0.0357 ( 0.6%) typecheck-stmt
0.0224 ( 5.5%) 0.0036 ( 1.0%) 0.0260 ( 3.5%) 0.0260 ( 0.4%) typecheck-decl
0.0195 ( 4.8%) 0.0056 ( 1.6%) 0.0251 ( 3.4%) 0.0251 ( 0.4%) typecheck-expr
0.0190 ( 4.7%) 0.0051 ( 1.5%) 0.0241 ( 3.2%) 0.0241 ( 0.4%) IRGen
0.0128 ( 3.2%) 0.0099 ( 2.9%) 0.0227 ( 3.0%) 0.0228 ( 0.4%) import-clang-decl
0.0132 ( 3.3%) 0.0036 ( 1.1%) 0.0168 ( 2.3%) 0.0168 ( 0.3%) precheck-target
0.0124 ( 3.1%) 0.0017 ( 0.5%) 0.0140 ( 1.9%) 0.0140 ( 0.2%) SILGen
0.0067 ( 1.7%) 0.0007 ( 0.2%) 0.0073 ( 1.0%) 0.0073 ( 0.1%) SILGen-function
0.0066 ( 1.6%) 0.0003 ( 0.1%) 0.0069 ( 0.9%) 0.0069 ( 0.1%) SIL optimization
0.0007 ( 0.2%) 0.0004 ( 0.1%) 0.0011 ( 0.1%) 0.0011 ( 0.0%) load-all-members
0.0002 ( 0.1%) 0.0001 ( 0.0%) 0.0004 ( 0.0%) 0.0004 ( 0.0%) typecheck-for-each
0.0003 ( 0.1%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4038 (100.0%) 0.3426 (100.0%) 0.7464 (100.0%) 6.0776 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.8484 seconds (4.6013 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.1138 (100.0%) 0.7346 (100.0%) 1.8484 (100.0%) 4.6013 (100.0%) Building Target
1.1138 (100.0%) 0.7346 (100.0%) 1.8484 (100.0%) 4.6013 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/Logical.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Execute.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Tables.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/TablesDataSource.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/TablesDelegate.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/Pointers.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/UnsafeMemory.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Utility/UnsafeMutableMemory.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Point.swift,\ Vector.swift,\ CommonLinker.swift,\ MOperations.swift,\ MProperties.swift,\ Matrix.swift,\ Constants.swift,\ Logarithms.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Point.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/CommonLinker.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Logarithms.swift (in target 'Euler' from project 'Euler')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Point.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/CommonLinker.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:32:13: warning: 'dgetrf_' was deprecated in tvOS 16.4: The CLAPACK interface is deprecated. Please compile with -DACCELERATE_NEW_LAPACK to access the new lapack headers.
dgetrf_(&m, &n, ptr.baseAddress, &nc, &ipiv, &error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:33:13: warning: 'dgetri_' was deprecated in tvOS 16.4: The CLAPACK interface is deprecated. Please compile with -DACCELERATE_NEW_LAPACK to access the new lapack headers.
dgetri_(&m, ptr.baseAddress, &nc, &ipiv, &work, &lwork, &error)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:114:25: warning: 'cblas_daxpy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_daxpy(Int32(lhs.grid.count), 1, lhsPtr.baseAddress, 1, resultsPtr.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:215:25: warning: 'cblas_daxpy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_daxpy(Int32(rhs.grid.count), -1, rhsPtr.baseAddress, 1, resultsPtr.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:306:17: warning: 'cblas_dgemm' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, Int32(lhs.rows), Int32(rhs.columns), Int32(lhs.columns), 1, lhsPtr.baseAddress, Int32(lhs.columns), rhsPtr.baseAddress, Int32(rhs.columns), 0, &results.grid, Int32(results.columns))
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:397:13: warning: 'cblas_dscal' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dscal(Int32(lhs.grid.count), rhs, ptr.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:497:13: warning: 'cblas_dscal' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dscal(Int32(lhs.grid.count), 1/rhs, ptr.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:697:17: warning: 'dgetrf_' was deprecated in tvOS 16.4: The CLAPACK interface is deprecated. Please compile with -DACCELERATE_NEW_LAPACK to access the new lapack headers.
dgetrf_(m, n, grid.pointer, m, ipiv.pointer, info)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1021:13: warning: 'la_matrix_from_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
la_matrix_from_double_buffer(flatMatrix, la_count_t(matrix.count), la_count_t(matrix[0].count), la_count_t(matrix[0].count), la_hint_t(LA_NO_HINT), la_attribute_t(LA_DEFAULT_ATTRIBUTES))
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1022:24: warning: 'la_matrix_from_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let laVector = la_matrix_from_double_buffer(vector, la_count_t(vector.count), 1, 1, la_hint_t(LA_NO_HINT), la_attribute_t(LA_DEFAULT_ATTRIBUTES))
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1023:21: warning: 'la_solve' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let vecCj = la_solve(laMatrix, laVector)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1025:22: warning: 'la_matrix_to_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let status = la_matrix_to_double_buffer(&result, 1, vecCj)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1042:13: warning: 'la_matrix_from_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
la_matrix_from_double_buffer(flatMatrix, la_count_t(matrix.count), la_count_t(matrix[0].count), la_count_t(matrix[0].count), la_hint_t(LA_NO_HINT), la_attribute_t(LA_DEFAULT_ATTRIBUTES))
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1043:24: warning: 'la_matrix_from_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let laVector = la_matrix_from_double_buffer(vector, la_count_t(vector.count), 1, 1, la_hint_t(LA_NO_HINT), la_attribute_t(LA_DEFAULT_ATTRIBUTES))
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1044:21: warning: 'la_solve' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let vecCj = la_solve(laMatrix, laVector)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MOperations.swift:1046:22: warning: 'la_matrix_to_double_buffer' was deprecated in tvOS 14.0: This API is deprecated, please use BLAS and LAPACK
let status = la_matrix_to_double_buffer(&result, 1, vecCj)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift:95:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(columns), src.baseAddress! + r*columns, 1, dst.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift:111:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(columns), src.baseAddress, 1, grid.baseAddress! + r*columns, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift:165:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(columns), src.baseAddress! + r*columns, 1, dst.baseAddress! + i*columns, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift:185:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(rows), src.baseAddress! + c, Int32(columns), dst.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/MProperties.swift:201:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(rows), src.baseAddress, 1, grid.baseAddress! + c, Int32(columns))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift:78:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(n), src.baseAddress! + range.lowerBound, 1, grid.baseAddress! + i*columns, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift:161:21: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(columns), src.baseAddress, 1, dst.baseAddress?.advanced(by: columns * i), 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift:177:13: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(rows * columns), src, 1, dst.baseAddress, 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Matrices/Matrix.swift:186:17: warning: 'cblas_dcopy' was deprecated in tvOS 16.4: An updated CBLAS interface supporting ILP64 is available. Please compile with -DACCELERATE_NEW_LAPACK to access the new headers and -DACCELERATE_LAPACK_ILP64 for ILP64 support.
cblas_dcopy(Int32(rows * columns), src.baseAddress, 1, dst, 1)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:45:16: warning: static property 'alphaParticleMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let alphaParticleMass = Constant(name: "Alpha Particle Mass", description: "The mass in kg of alpha particles", value: BigNumber("6.64465675e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:45:16: note: add '@MainActor' to make static property 'alphaParticleMass' part of global actor 'MainActor'
static let alphaParticleMass = Constant(name: "Alpha Particle Mass", description: "The mass in kg of alpha particles", value: BigNumber("6.64465675e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:45:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let alphaParticleMass = Constant(name: "Alpha Particle Mass", description: "The mass in kg of alpha particles", value: BigNumber("6.64465675e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:47:16: warning: static property 'atomicMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let atomicMass = Constant(name: "Atomic Mass", description: "The mass in kg of an atom (see Wikipedia for more info)", value: BigNumber("1.660538921e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:47:16: note: add '@MainActor' to make static property 'atomicMass' part of global actor 'MainActor'
static let atomicMass = Constant(name: "Atomic Mass", description: "The mass in kg of an atom (see Wikipedia for more info)", value: BigNumber("1.660538921e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:47:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let atomicMass = Constant(name: "Atomic Mass", description: "The mass in kg of an atom (see Wikipedia for more info)", value: BigNumber("1.660538921e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:49:16: warning: static property 'Avogadro' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Avogadro = Constant(name: "Avogadro", description: "Avogadro constant in mol^(-1)", value: BigNumber("6.02214129e23")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:49:16: note: add '@MainActor' to make static property 'Avogadro' part of global actor 'MainActor'
static let Avogadro = Constant(name: "Avogadro", description: "Avogadro constant in mol^(-1)", value: BigNumber("6.02214129e23")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:49:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Avogadro = Constant(name: "Avogadro", description: "Avogadro constant in mol^(-1)", value: BigNumber("6.02214129e23")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:51:16: warning: static property 'Boltzmann' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Boltzmann = Constant(name: "Boltzmann", description: "Boltzmann constant in J/K", value: BigNumber("1.3806488e-23")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:51:16: note: add '@MainActor' to make static property 'Boltzmann' part of global actor 'MainActor'
static let Boltzmann = Constant(name: "Boltzmann", description: "Boltzmann constant in J/K", value: BigNumber("1.3806488e-23")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:51:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Boltzmann = Constant(name: "Boltzmann", description: "Boltzmann constant in J/K", value: BigNumber("1.3806488e-23")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:53:16: warning: static property 'conductanceQuantum' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let conductanceQuantum = Constant(name: "Conductance Quantum", description: "Quantized unit of electrical conductance in S", value: BigNumber("7.7480917346e-5")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:53:16: note: add '@MainActor' to make static property 'conductanceQuantum' part of global actor 'MainActor'
static let conductanceQuantum = Constant(name: "Conductance Quantum", description: "Quantized unit of electrical conductance in S", value: BigNumber("7.7480917346e-5")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let conductanceQuantum = Constant(name: "Conductance Quantum", description: "Quantized unit of electrical conductance in S", value: BigNumber("7.7480917346e-5")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:55:16: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let e = Constant(name: "e", description: "The mathematical constant", value: BigNumber("2.718281828459045235")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:55:16: note: add '@MainActor' to make static property 'e' part of global actor 'MainActor'
static let e = Constant(name: "e", description: "The mathematical constant", value: BigNumber("2.718281828459045235")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:55:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let e = Constant(name: "e", description: "The mathematical constant", value: BigNumber("2.718281828459045235")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:57:16: warning: static property 'earth_moon' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earth_moon = Constant(name: "Earth to Moon", description: "Earth to moon distance in km", value: BigNumber("384401")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:57:16: note: add '@MainActor' to make static property 'earth_moon' part of global actor 'MainActor'
static let earth_moon = Constant(name: "Earth to Moon", description: "Earth to moon distance in km", value: BigNumber("384401")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:57:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earth_moon = Constant(name: "Earth to Moon", description: "Earth to moon distance in km", value: BigNumber("384401")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: warning: static property 'earth_sun' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: note: add '@MainActor' to make static property 'earth_sun' part of global actor 'MainActor'
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:59:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earth_sun = Constant(name: "Earth to Sun", description: "Earth to sun distance in km", value: BigNumber("1.496e8")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: warning: static property 'earthMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: note: add '@MainActor' to make static property 'earthMass' part of global actor 'MainActor'
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:61:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earthMass = Constant(name: "Earth Mass", description: "Earth mass in kg", value: BigNumber("5.974e+24")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: warning: static property 'earthRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: note: add '@MainActor' to make static property 'earthRadius' part of global actor 'MainActor'
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:63:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let earthRadius = Constant(name: "Earth Radius", description: "Earth radius in km", value: BigNumber("6371")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: warning: static property 'electric' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: note: add '@MainActor' to make static property 'electric' part of global actor 'MainActor'
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:65:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let electric = Constant(name: "Electric", description: "Vacuum permittivity in F/m", value: BigNumber("8.854187e-12")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: warning: static property 'electronMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: note: add '@MainActor' to make static property 'electronMass' part of global actor 'MainActor'
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:67:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let electronMass = Constant(name: "Electron Mass", description: "Electron mass in kg", value: BigNumber("9.10938291e-31")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: warning: static property 'elementaryCharge' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: note: add '@MainActor' to make static property 'elementaryCharge' part of global actor 'MainActor'
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:69:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let elementaryCharge = Constant(name: "Elementary Charge", description: "Elementary charge in C", value: BigNumber("1.602176565e-19")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: warning: static property 'EulerGamma' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: note: add '@MainActor' to make static property 'EulerGamma' part of global actor 'MainActor'
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let EulerGamma = Constant(name: "Euler Gamma", description: "Euler–Mascheroni Gamma constant", value: BigNumber("0.57721566490153286")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: warning: static property 'Faraday' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: note: add '@MainActor' to make static property 'Faraday' part of global actor 'MainActor'
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:73:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Faraday = Constant(name: "Faraday", description: "Faraday constant in C/mol", value: BigNumber("96485.3365")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: warning: static property 'fineStructure' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: note: add '@MainActor' to make static property 'fineStructure' part of global actor 'MainActor'
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:75:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let fineStructure = Constant(name: "Fine Structure", description: "Fine structure constant", value: BigNumber("0.0072973525693")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: warning: static property 'goldenRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: note: add '@MainActor' to make static property 'goldenRatio' part of global actor 'MainActor'
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:77:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let goldenRatio = Constant(name: "Golden Ratio", description: "Golden ratio", value: BigNumber("1.61803398874989484820")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: warning: static property 'gravity' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: note: add '@MainActor' to make static property 'gravity' part of global actor 'MainActor'
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:79:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let gravity = Constant(name: "Gravity", description: "Standard gravity in m/s^2", value: BigNumber("9.80665")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: warning: static property 'inverseFineStructure' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: note: add '@MainActor' to make static property 'inverseFineStructure' part of global actor 'MainActor'
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let inverseFineStructure = Constant(name: "Inverse Fine Structure", description: "Inverse fine structure constant", value: BigNumber("137.035999139")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: warning: static property 'magnetic' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: note: add '@MainActor' to make static property 'magnetic' part of global actor 'MainActor'
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:83:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let magnetic = Constant(name: "Magnetic", description: "Vacuum permeability in H/m", value: BigNumber("1.2566370614e-6")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: warning: static property 'magneticFluxQuantum' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: note: add '@MainActor' to make static property 'magneticFluxQuantum' part of global actor 'MainActor'
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:85:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let magneticFluxQuantum = Constant(name: "Magnetic Flux Quantum", description: "Magnetic flux quantum in Wb", value: BigNumber("2.067833831e-15")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: warning: static property 'molarGas' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: note: add '@MainActor' to make static property 'molarGas' part of global actor 'MainActor'
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let molarGas = Constant(name: "Molar Gas", description: "Gas constant in J/(mol K)", value: BigNumber("8.3144621")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: warning: static property 'moonMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: note: add '@MainActor' to make static property 'moonMass' part of global actor 'MainActor'
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let moonMass = Constant(name: "Moon Mass", description: "Mass of the moon in kg", value: BigNumber("7.348e+22")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: warning: static property 'moonRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: note: add '@MainActor' to make static property 'moonRadius' part of global actor 'MainActor'
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:91:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let moonRadius = Constant(name: "Moon Radius", description: "Moon's radius in km", value: BigNumber("1737.4")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: warning: static property 'neutronMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: note: add '@MainActor' to make static property 'neutronMass' part of global actor 'MainActor'
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:93:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let neutronMass = Constant(name: "Neutron Mass", description: "Mass of the neutron in kg", value: BigNumber("1.674927211e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: warning: static property 'NewtonianGravitation' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: note: add '@MainActor' to make static property 'NewtonianGravitation' part of global actor 'MainActor'
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:95:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let NewtonianGravitation = Constant(name: "Newtonian Gravitation", description: "Newtonian constant of gravitation in m3⋅kg-1⋅s-2", value: BigNumber("6.67428e-11")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: warning: static property 'pi' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: note: add '@MainActor' to make static property 'pi' part of global actor 'MainActor'
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let pi = Constant(name: "pi", description: "The mathematical constant", value: BigNumber("3.141592653589793238")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: warning: static property 'Planck' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: note: add '@MainActor' to make static property 'Planck' part of global actor 'MainActor'
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:99:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Planck = Constant(name: "Planck", description: "Planck constant in J⋅s", value: BigNumber("6.62606957e-34")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: warning: static property 'protonElectronMassRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: note: add '@MainActor' to make static property 'protonElectronMassRatio' part of global actor 'MainActor'
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:101:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonElectronMassRatio = Constant(name: "Proton Electron Mass Ratio", description: "Proton mass divided by electron mass", value: BigNumber("1836.15267247")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: warning: static property 'protonNeutronMassRatio' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: note: add '@MainActor' to make static property 'protonNeutronMassRatio' part of global actor 'MainActor'
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:103:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonNeutronMassRatio = Constant(name: "Proton Neutron Mass Ratio", description: "Proton mass divided by neutron mass", value: BigNumber("0.99862347826")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: warning: static property 'protonMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: note: add '@MainActor' to make static property 'protonMass' part of global actor 'MainActor'
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let protonMass = Constant(name: "Proton Mass", description: "Proton mass in kg", value: BigNumber("1.672621777e-27")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: warning: static property 'Rydberg' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: note: add '@MainActor' to make static property 'Rydberg' part of global actor 'MainActor'
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:107:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Rydberg = Constant(name: "Rydberg", description: "Rydberg constant in m^-1", value: BigNumber("10973731.568539")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: warning: static property 'speedOfLight' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: note: add '@MainActor' to make static property 'speedOfLight' part of global actor 'MainActor'
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:109:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let speedOfLight = Constant(name: "Speed of Light", description: "Speed of light in m/s", value: BigNumber("299792458")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: warning: static property 'speedOfSound' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: note: add '@MainActor' to make static property 'speedOfSound' part of global actor 'MainActor'
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:111:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let speedOfSound = Constant(name: "Speed of Sound", description: "Speed of sound in m/s", value: BigNumber("340.29")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: warning: static property 'sqrt2' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: note: add '@MainActor' to make static property 'sqrt2' part of global actor 'MainActor'
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:113:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sqrt2 = Constant(name: "sqrt(2)", description: "The square root of 2", value: BigNumber("1.41421356237309504880")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: warning: static property 'StefanBoltzmann' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: note: add '@MainActor' to make static property 'StefanBoltzmann' part of global actor 'MainActor'
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:115:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let StefanBoltzmann = Constant(name: "Stefan Boltzmann", description: "Stefan–Boltzmann constant in W⋅m-2⋅K-4", value: BigNumber("5.670373e-8")!)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: warning: static property 'sunMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: note: add '@MainActor' to make static property 'sunMass' part of global actor 'MainActor'
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:117:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sunMass = Constant(name: "Sun Mass", description: "Mass of the sun in kg", value: BigNumber("1.98892e+30")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: warning: static property 'sunRadius' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: note: add '@MainActor' to make static property 'sunRadius' part of global actor 'MainActor'
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:119:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sunRadius = Constant(name: "Sun Radius", description: "Sun's radius in km", value: BigNumber("695700")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: warning: static property 'theRockMass' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: note: add '@MainActor' to make static property 'theRockMass' part of global actor 'MainActor'
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:121:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let theRockMass = Constant(name: "The Rock Mass", description: "Dwayne \"The Rock\" Johnson's mass in kg. Can't mathematician have the sense of humour?", value: BigNumber("124.73790175")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: warning: static property 'Thomson' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: note: add '@MainActor' to make static property 'Thomson' part of global actor 'MainActor'
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:123:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let Thomson = Constant(name: "Thomson", description: "Thomson cross section in m2", value: BigNumber("0.6652458734e-28")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: warning: static property 'UltimateAnswer' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: note: add '@MainActor' to make static property 'UltimateAnswer' part of global actor 'MainActor'
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:125:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let UltimateAnswer = Constant(name: "Ultimate Answer", description: "The answer to life, the universe, and everything", value: BigNumber("42")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: warning: static property 'universeTemperature' is not concurrency-safe because non-'Sendable' type 'Constant' may have shared mutable state; this is an error in the Swift 6 language mode
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: note: add '@MainActor' to make static property 'universeTemperature' part of global actor 'MainActor'
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:127:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let universeTemperature = Constant(name: "Universe Temperature", description: "The coldness of the universe in C", value: BigNumber("-273.15")!)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Constant]' may have shared mutable state; this is an error in the Swift 6 language mode
static let all: [Constant] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:34:15: note: consider making struct 'Constant' conform to the 'Sendable' protocol
public struct Constant {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
static let all: [Constant] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Constants.swift:130:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let all: [Constant] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/NumberTheory/Logarithms.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690872224-swift-frontend-Euler-Point.swift-arm64_apple_tvos18.4-o-Onone-3508002142.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.5151 seconds (7.7954 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0327 ( 1.6%) 0.1052 ( 21.4%) 0.1379 ( 5.5%) 2.7319 ( 35.0%) parse-and-resolve-imports
0.0313 ( 1.5%) 0.1023 ( 20.8%) 0.1336 ( 5.3%) 2.7247 ( 35.0%) Import resolution
0.4264 ( 21.1%) 0.0622 ( 12.7%) 0.4885 ( 19.4%) 0.4942 ( 6.3%) perform-sema
0.4259 ( 21.0%) 0.0621 ( 12.6%) 0.4880 ( 19.4%) 0.4936 ( 6.3%) Type checking and Semantic analysis
0.3698 ( 18.3%) 0.0447 ( 9.1%) 0.4144 ( 16.5%) 0.4151 ( 5.3%) typecheck-stmt
0.2744 ( 13.6%) 0.0335 ( 6.8%) 0.3080 ( 12.2%) 0.3095 ( 4.0%) typecheck-expr
0.0919 ( 4.5%) 0.0217 ( 4.4%) 0.1136 ( 4.5%) 0.1186 ( 1.5%) typecheck-decl
0.0709 ( 3.5%) 0.0149 ( 3.0%) 0.0858 ( 3.4%) 0.0876 ( 1.1%) build-rewrite-system
0.0015 ( 0.1%) 0.0102 ( 2.1%) 0.0117 ( 0.5%) 0.0825 ( 1.1%) load-stdlib
0.0671 ( 3.3%) 0.0056 ( 1.1%) 0.0727 ( 2.9%) 0.0729 ( 0.9%) precheck-target
0.0592 ( 2.9%) 0.0081 ( 1.7%) 0.0673 ( 2.7%) 0.0686 ( 0.9%) IRGen
0.0556 ( 2.7%) 0.0040 ( 0.8%) 0.0597 ( 2.4%) 0.0599 ( 0.8%) SILGen
0.0488 ( 2.4%) 0.0028 ( 0.6%) 0.0516 ( 2.1%) 0.0519 ( 0.7%) SILGen-function
0.0405 ( 2.0%) 0.0002 ( 0.0%) 0.0408 ( 1.6%) 0.0421 ( 0.5%) SIL optimization
0.0215 ( 1.1%) 0.0129 ( 2.6%) 0.0344 ( 1.4%) 0.0353 ( 0.5%) import-clang-decl
0.0038 ( 0.2%) 0.0002 ( 0.0%) 0.0041 ( 0.2%) 0.0041 ( 0.1%) typecheck-for-each
0.0010 ( 0.0%) 0.0003 ( 0.1%) 0.0013 ( 0.1%) 0.0014 ( 0.0%) load-all-members
0.0009 ( 0.0%) 0.0001 ( 0.0%) 0.0010 ( 0.0%) 0.0010 ( 0.0%) typecheck-expr-pattern
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
2.0238 (100.0%) 0.4913 (100.0%) 2.5151 (100.0%) 7.7954 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 2.3031 seconds (5.0139 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.8367 (100.0%) 0.4664 (100.0%) 2.3031 (100.0%) 5.0139 (100.0%) Building Target
1.8367 (100.0%) 0.4664 (100.0%) 2.3031 (100.0%) 5.0139 (100.0%) Total
SwiftCompile normal arm64 Compiling\ Gauss.swift,\ NullNode.swift,\ OperatorNode.swift,\ StringNode.swift,\ SymbolNode.swift,\ Parser.swift,\ Regex.swift,\ Polynomial.swift,\ simplify.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Gauss.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/NullNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/OperatorNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/StringNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/SymbolNode.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Parser.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Polynomial.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Simplify/simplify.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789690884521-swift-frontend-Euler-Gauss.swift-arm64_apple_tvos18.4-o-Onone-73523587.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.8005 seconds (7.0810 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0330 ( 2.3%) 0.1079 ( 27.4%) 0.1409 ( 7.8%) 2.7454 ( 38.8%) parse-and-resolve-imports
0.0318 ( 2.3%) 0.1070 ( 27.2%) 0.1388 ( 7.7%) 2.7432 ( 38.7%) Import resolution
0.2712 ( 19.3%) 0.0343 ( 8.7%) 0.3055 ( 17.0%) 0.3056 ( 4.3%) perform-sema
0.2707 ( 19.2%) 0.0342 ( 8.7%) 0.3050 ( 16.9%) 0.3051 ( 4.3%) Type checking and Semantic analysis
0.2422 ( 17.2%) 0.0289 ( 7.3%) 0.2711 ( 15.1%) 0.2712 ( 3.8%) typecheck-stmt
0.2011 ( 14.3%) 0.0213 ( 5.4%) 0.2224 ( 12.4%) 0.2225 ( 3.1%) typecheck-expr
0.0911 ( 6.5%) 0.0116 ( 3.0%) 0.1027 ( 5.7%) 0.1026 ( 1.4%) typecheck-decl
0.0012 ( 0.1%) 0.0052 ( 1.3%) 0.0064 ( 0.4%) 0.0760 ( 1.1%) load-stdlib
0.0530 ( 3.8%) 0.0135 ( 3.4%) 0.0664 ( 3.7%) 0.0679 ( 1.0%) build-rewrite-system
0.0472 ( 3.4%) 0.0094 ( 2.4%) 0.0566 ( 3.1%) 0.0567 ( 0.8%) IRGen
0.0519 ( 3.7%) 0.0040 ( 1.0%) 0.0560 ( 3.1%) 0.0559 ( 0.8%) precheck-target
0.0389 ( 2.8%) 0.0034 ( 0.9%) 0.0423 ( 2.3%) 0.0424 ( 0.6%) SILGen
0.0273 ( 1.9%) 0.0016 ( 0.4%) 0.0289 ( 1.6%) 0.0290 ( 0.4%) SILGen-function
0.0246 ( 1.7%) 0.0002 ( 0.1%) 0.0248 ( 1.4%) 0.0248 ( 0.4%) SIL optimization
0.0139 ( 1.0%) 0.0093 ( 2.4%) 0.0232 ( 1.3%) 0.0231 ( 0.3%) import-clang-decl
0.0040 ( 0.3%) 0.0002 ( 0.1%) 0.0042 ( 0.2%) 0.0042 ( 0.1%) typecheck-for-each
0.0030 ( 0.2%) 0.0006 ( 0.2%) 0.0036 ( 0.2%) 0.0036 ( 0.1%) typecheck-expr-pattern
0.0008 ( 0.1%) 0.0003 ( 0.1%) 0.0011 ( 0.1%) 0.0011 ( 0.0%) load-all-members
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0004 ( 0.0%) 0.0004 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.4075 (100.0%) 0.3930 (100.0%) 1.8005 (100.0%) 7.0810 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.8827 seconds (4.6249 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.2961 (100.0%) 0.5866 (100.0%) 1.8827 (100.0%) 4.6249 (100.0%) Building Target
1.2961 (100.0%) 0.5866 (100.0%) 1.8827 (100.0%) 4.6249 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Gauss.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/NullNode.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/OperatorNode.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/StringNode.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Node/SymbolNode.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Parser.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift:10:5: warning: var 'expressions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var expressions = [String: NSRegularExpression]()
^
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift:10:5: note: convert 'expressions' to a 'let' constant to make 'Sendable' shared state immutable
var expressions = [String: NSRegularExpression]()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift:10:5: note: add '@MainActor' to make var 'expressions' part of global actor 'MainActor'
var expressions = [String: NSRegularExpression]()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Parser/Utils/Regex.swift:10:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var expressions = [String: NSRegularExpression]()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Polynomial.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Algebra/Simplify/simplify.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ Quantile.swift,\ FinancialLinker.swift,\ Regression.swift,\ Statistics.swift,\ Variance.swift,\ StatsLinker.swift,\ CellValue.swift,\ CommonFormulas.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Quantile.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/FinancialLinker.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Statistics.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Variance.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/StatsLinker.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/CellValue.swift /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/CommonFormulas.swift (in target 'Euler' from project 'Euler')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745789694752382-swift-frontend-Euler-Quantile.swift-arm64_apple_tvos18.4-o-Onone-4165414828.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.4565 seconds (1.4828 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2929 ( 23.4%) 0.0363 ( 17.8%) 0.3292 ( 22.6%) 0.3354 ( 22.6%) perform-sema
0.2924 ( 23.4%) 0.0363 ( 17.7%) 0.3287 ( 22.6%) 0.3349 ( 22.6%) Type checking and Semantic analysis
0.2600 ( 20.8%) 0.0286 ( 14.0%) 0.2886 ( 19.8%) 0.2938 ( 19.8%) typecheck-stmt
0.1156 ( 9.2%) 0.0124 ( 6.0%) 0.1280 ( 8.8%) 0.1298 ( 8.8%) typecheck-expr
0.0739 ( 5.9%) 0.0143 ( 7.0%) 0.0882 ( 6.1%) 0.0900 ( 6.1%) typecheck-decl
0.0291 ( 2.3%) 0.0274 ( 13.4%) 0.0565 ( 3.9%) 0.0577 ( 3.9%) parse-and-resolve-imports
0.0278 ( 2.2%) 0.0263 ( 12.9%) 0.0542 ( 3.7%) 0.0550 ( 3.7%) Import resolution
0.0479 ( 3.8%) 0.0051 ( 2.5%) 0.0530 ( 3.6%) 0.0539 ( 3.6%) precheck-target
0.0336 ( 2.7%) 0.0052 ( 2.5%) 0.0388 ( 2.7%) 0.0389 ( 2.6%) IRGen
0.0240 ( 1.9%) 0.0019 ( 0.9%) 0.0258 ( 1.8%) 0.0262 ( 1.8%) SILGen
0.0195 ( 1.6%) 0.0011 ( 0.6%) 0.0207 ( 1.4%) 0.0210 ( 1.4%) SILGen-function
0.0167 ( 1.3%) 0.0005 ( 0.3%) 0.0173 ( 1.2%) 0.0184 ( 1.2%) SIL optimization
0.0117 ( 0.9%) 0.0035 ( 1.7%) 0.0152 ( 1.0%) 0.0152 ( 1.0%) build-rewrite-system
0.0031 ( 0.2%) 0.0037 ( 1.8%) 0.0067 ( 0.5%) 0.0068 ( 0.5%) import-clang-decl
0.0010 ( 0.1%) 0.0017 ( 0.8%) 0.0027 ( 0.2%) 0.0029 ( 0.2%) load-stdlib
0.0015 ( 0.1%) 0.0000 ( 0.0%) 0.0015 ( 0.1%) 0.0015 ( 0.1%) typecheck-for-each
0.0008 ( 0.1%) 0.0002 ( 0.1%) 0.0010 ( 0.1%) 0.0010 ( 0.1%) load-all-members
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.2520 (100.0%) 0.2045 (100.0%) 1.4565 (100.0%) 1.4828 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.7361 seconds (0.7544 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.6201 (100.0%) 0.1161 (100.0%) 0.7361 (100.0%) 0.7544 (100.0%) Building Target
0.6201 (100.0%) 0.1161 (100.0%) 0.7361 (100.0%) 0.7544 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Quantile.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/FinancialLinker.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Statistics.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Statistics/Variance.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Parser/Functions/StatsLinker.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/CellValue.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Euler/Tables/Formulas/CommonFormulas.swift (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
SwiftDriverJobDiscovery normal arm64 Emitting module for Euler (in target 'Euler' from project 'Euler')
SwiftDriver\ Compilation\ Requirements Euler normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Euler -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos18.4 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Quantile.swift, FinancialLinker.swift, Regression.swift, Statistics.swift, Variance.swift, StatsLinker.swift, CellValue.swift, CommonFormulas.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Logical.swift, Execute.swift, Tables.swift, TablesDataSource.swift, TablesDelegate.swift, Pointers.swift, UnsafeMemory.swift, UnsafeMutableMemory.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Euler.swift, LogicalLinker.swift, Array.swift, Collatz.swift, Fibonacci.swift, Sieve.swift, Graph.swift, Financial.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling random.swift, KnuthDSupport.swift, sum.swift, DateTime.swift, Average.swift, ExpressionSolver.swift, Correlation.swift, Fisher.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Gauss.swift, NullNode.swift, OperatorNode.swift, StringNode.swift, SymbolNode.swift, Parser.swift, Regex.swift, Polynomial.swift, simplify.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Expression.swift, Grouper.swift, LaTeX.swift, Lexer.swift, CellAddressNode.swift, ConstantNode.swift, ExpressionNode.swift, FunctionNode.swift, Node.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling combinations.swift, fibonacci.swift, gamma.swift, gcd.swift, isPrime.swift, Statistical.swift, leastFactor.swift, modulo.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Tree.swift, BNativeExtensions.swift, BasicOperators.swift, EngineeringLinker.swift, BigDouble.swift, OperationsBigDouble.swift, BigInt.swift, BinaryBigInt.swift (in target 'Euler' from project 'Euler')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Headers/Euler-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-Swift.h (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Headers/Euler-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.abi.json (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftdoc (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftmodule (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftsourceinfo (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Modules/Euler.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling DateLinker.swift, OperationsBigInt.swift, Limbs.swift, RSA.swift, Engineering.swift, md5.swift, Substring.swift, sha256.swift (in target 'Euler' from project 'Euler')
SwiftDriverJobDiscovery normal arm64 Compiling Point.swift, Vector.swift, CommonLinker.swift, MOperations.swift, MProperties.swift, Matrix.swift, Constants.swift, Logarithms.swift (in target 'Euler' from project 'Euler')
SwiftDriver\ Compilation Euler normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Euler -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos18.4 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/DerivedSources -Xcc -DSWIFT_PACKAGE\=1 -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Euler normal (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos18.4 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.LinkFileList -install_name @rpath/Euler.framework/Euler -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Euler
ExtractAppIntentsMetadata (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Euler --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 18.4 --bundle-identifier Euler --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework --target-triple arm64-apple-tvos18.4 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Euler --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Euler.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Euler.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Euler.build/Debug-appletvos/Euler.build/Objects-normal/arm64/Euler.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 14:34:56.127 appintentsmetadataprocessor[702:4044] Starting appintentsmetadataprocessor export
2025-04-27 14:34:56.130 appintentsmetadataprocessor[702:4044] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Euler.framework/Euler.tbd (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework/Euler -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/Euler.framework/Euler.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework (in target 'Euler' from project 'Euler')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Euler.framework
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Euler",
"name" : "Euler",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Euler",
"targets" : [
"Euler"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "EulerTests",
"module_type" : "SwiftTarget",
"name" : "EulerTests",
"path" : "Tests/EulerTests",
"sources" : [
"AlgebraTests.swift",
"BigDoubleTests.swift",
"BigIntTests.swift",
"Cryptography.swift",
"ExtensionsTests.swift",
"GeneratorsTests.swift",
"GeometryTests.swift",
"MatrixTest.swift",
"NodeTests.swift",
"StatisticsTests.swift",
"TablesTest.swift",
"Tools/Convenience.swift",
"Tools/Math.swift"
],
"target_dependencies" : [
"Euler"
],
"type" : "test"
},
{
"c99name" : "Euler",
"module_type" : "SwiftTarget",
"name" : "Euler",
"path" : "Sources/Euler",
"product_memberships" : [
"Euler"
],
"sources" : [
"Algebra/Expression/Expression.swift",
"Algebra/Expression/ExpressionSolver.swift",
"Algebra/Parser/Grouper.swift",
"Algebra/Parser/LaTeX.swift",
"Algebra/Parser/Lexer.swift",
"Algebra/Parser/Node/CellAddressNode.swift",
"Algebra/Parser/Node/ConstantNode.swift",
"Algebra/Parser/Node/ExpressionNode.swift",
"Algebra/Parser/Node/FunctionNode.swift",
"Algebra/Parser/Node/Node.swift",
"Algebra/Parser/Node/NullNode.swift",
"Algebra/Parser/Node/OperatorNode.swift",
"Algebra/Parser/Node/StringNode.swift",
"Algebra/Parser/Node/SymbolNode.swift",
"Algebra/Parser/Parser.swift",
"Algebra/Parser/Utils/Regex.swift",
"Algebra/Polynomial.swift",
"Algebra/Simplify/simplify.swift",
"Algebra/Treehelper/Tree.swift",
"BigNumber/BNativeExtensions.swift",
"BigNumber/BigDouble/BasicOperators.swift",
"BigNumber/BigDouble/BigDouble.swift",
"BigNumber/BigDouble/OperationsBigDouble.swift",
"BigNumber/BigInt/BigInt.swift",
"BigNumber/BigInt/BinaryBigInt.swift",
"BigNumber/BigInt/OperationsBigInt.swift",
"BigNumber/Limbs.swift",
"Cryptography/RSA.swift",
"Cryptography/md5.swift",
"Cryptography/sha256.swift",
"Euler.swift",
"Extensions/Array.swift",
"Generators/Collatz.swift",
"Generators/Fibonacci.swift",
"Generators/Sieve.swift",
"Geometry/Graph.swift",
"Geometry/Point.swift",
"Geometry/Vector.swift",
"Matrices/MOperations.swift",
"Matrices/MProperties.swift",
"Matrices/Matrix.swift",
"NumberTheory/Constants.swift",
"NumberTheory/Logarithms.swift",
"NumberTheory/combinations.swift",
"NumberTheory/fibonacci.swift",
"NumberTheory/gamma.swift",
"NumberTheory/gcd.swift",
"NumberTheory/isPrime.swift",
"NumberTheory/leastFactor.swift",
"NumberTheory/modulo.swift",
"NumberTheory/random.swift",
"NumberTheory/sum.swift",
"Statistics/Average.swift",
"Statistics/Correlation.swift",
"Statistics/Fisher.swift",
"Statistics/Gauss.swift",
"Statistics/Quantile.swift",
"Statistics/Regression.swift",
"Statistics/Statistics.swift",
"Statistics/Variance.swift",
"Tables/CellValue.swift",
"Tables/Formulas/CommonFormulas.swift",
"Tables/Formulas/DateTime.swift",
"Tables/Formulas/Engineering.swift",
"Tables/Formulas/Financial.swift",
"Tables/Formulas/Logical.swift",
"Tables/Formulas/Statistical.swift",
"Tables/Parser/Execute.swift",
"Tables/Parser/Functions/CommonLinker.swift",
"Tables/Parser/Functions/DateLinker.swift",
"Tables/Parser/Functions/EngineeringLinker.swift",
"Tables/Parser/Functions/FinancialLinker.swift",
"Tables/Parser/Functions/LogicalLinker.swift",
"Tables/Parser/Functions/StatsLinker.swift",
"Tables/Tables.swift",
"Tables/TablesDataSource.swift",
"Tables/TablesDelegate.swift",
"Utility/KnuthDSupport.swift",
"Utility/Pointers.swift",
"Utility/Substring.swift",
"Utility/UnsafeMemory.swift",
"Utility/UnsafeMutableMemory.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.