File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 77 pull_request :
88 branches :
99 - main
10+ workflow_dispatch :
1011concurrency :
1112 # Skip intermediate builds: always.
1213 # Cancel intermediate builds: only if it is a pull request build.
Original file line number Diff line number Diff line change 66 - main
77 tags : ' *'
88 pull_request :
9-
9+ workflow_dispatch :
1010jobs :
1111 build :
1212 env :
1616 contents : write
1717 pull-requests : read
1818 statuses : write
19- runs-on : ubuntu-20.04
19+ runs-on : ubuntu-latest
2020 steps :
2121 - uses : actions/checkout@v4
2222 - uses : julia-actions/setup-julia@v2
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ VMRobotControlDifferentialEquationsExt = "DifferentialEquations"
4444VMRobotControlMakieExt = " Makie"
4545
4646[compat ]
47- julia = " 1.9"
4847BenchmarkTools = " 1"
4948ColorTypes = " 0.11, 0.12"
5049Colors = " 0.12, 0.13"
@@ -54,7 +53,7 @@ DifferentialEquations = "7"
5453DigitalAssetExchangeFormatIO = " 1.1.3"
5554EzXML = " 1"
5655FileIO = " 1"
57- ForwardDiff = " 0.10"
56+ ForwardDiff = " 0.10, 1 "
5857FunctionWrappers = " 1"
5958GeometryBasics = " 0.5"
6059Graphs = " 1"
@@ -70,6 +69,7 @@ ResultTypes = "3, 4"
7069SparseArrays = " 1"
7170StaticArrays = " 1.8.1"
7271StatsBase = " 0.34"
72+ julia = " 1.9"
7373
7474[extras ]
7575DifferentialEquations = " 0c46a032-eb83-5123-abaf-570d42b7fbaa"
Original file line number Diff line number Diff line change @@ -14,12 +14,14 @@ Base.eltype(c::CoordinateData) = eltype(typeof(c))
1414cache_size (c:: CoordinateData ) = cache_size (typeof (c))
1515remaker_of (c:: CoordinateData ) = parameterless_type (c)
1616
17- struct CompiledCoord{C<: CoordinateData }
17+ @kwdef struct CompiledCoord{C<: CoordinateData }
1818 coord_data:: C
1919 cache_idxs:: UnitRange{Int}
2020end
2121
22- # Base.show(io::IO, ::Type{<:CompiledCoord{C}}) where C = print(io, "CompiledCoord{$C}")
22+ remaker_of (c:: CompiledCoord ) = parameterless_type (c)
23+
24+ Base. show (io:: IO , :: Type{<:CompiledCoord{C}} ) where C = print (io, " CompiledCoord{$C }" )
2325
2426"""
2527 CompiledCoordID{C}
You can’t perform that action at this time.
0 commit comments