Skip to content

Commit 5a697af

Browse files
committed
Merge branch 'main' into dev
2 parents 4bd60bd + da9057c commit 5a697af

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
branches:
99
- main
10+
workflow_dispatch:
1011
concurrency:
1112
# Skip intermediate builds: always.
1213
# Cancel intermediate builds: only if it is a pull request build.

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
tags: '*'
88
pull_request:
9-
9+
workflow_dispatch:
1010
jobs:
1111
build:
1212
env:
@@ -16,7 +16,7 @@ jobs:
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

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ VMRobotControlDifferentialEquationsExt = "DifferentialEquations"
4444
VMRobotControlMakieExt = "Makie"
4545

4646
[compat]
47-
julia = "1.9"
4847
BenchmarkTools = "1"
4948
ColorTypes = "0.11, 0.12"
5049
Colors = "0.12, 0.13"
@@ -54,7 +53,7 @@ DifferentialEquations = "7"
5453
DigitalAssetExchangeFormatIO = "1.1.3"
5554
EzXML = "1"
5655
FileIO = "1"
57-
ForwardDiff = "0.10"
56+
ForwardDiff = "0.10, 1"
5857
FunctionWrappers = "1"
5958
GeometryBasics = "0.5"
6059
Graphs = "1"
@@ -70,6 +69,7 @@ ResultTypes = "3, 4"
7069
SparseArrays = "1"
7170
StaticArrays = "1.8.1"
7271
StatsBase = "0.34"
72+
julia = "1.9"
7373

7474
[extras]
7575
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"

src/coordinates/coordinates.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ Base.eltype(c::CoordinateData) = eltype(typeof(c))
1414
cache_size(c::CoordinateData) = cache_size(typeof(c))
1515
remaker_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}
2020
end
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}

0 commit comments

Comments
 (0)