Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
9196bce
Fix warnings
ufechner7 Apr 6, 2026
b5014f3
Fix warnings
ufechner7 Apr 7, 2026
4cb1bd1
Large fix to avoid a closure
ufechner7 Apr 7, 2026
75fe2f0
Fix warning
ufechner7 Apr 7, 2026
ffd4ab1
Fix warning
ufechner7 Apr 7, 2026
50fb311
Fix warning
ufechner7 Apr 7, 2026
9783c57
Fix error
ufechner7 Apr 7, 2026
ca1c57d
Fix warnings
ufechner7 Apr 7, 2026
24bc519
Fix warnings
ufechner7 Apr 7, 2026
b076469
Fix warnings
ufechner7 Apr 7, 2026
74b5378
Fix warning
ufechner7 Apr 11, 2026
3ae1d50
Suppress one message
ufechner7 Apr 11, 2026
13d8f74
Update test/Project.toml
ufechner7 Apr 11, 2026
ceea7d6
Fix warning
ufechner7 Apr 11, 2026
611d177
Fix warning
ufechner7 Apr 11, 2026
b212b0b
Fix warnings
ufechner7 Apr 11, 2026
21ebe19
Fix tests
ufechner7 Apr 11, 2026
f7b041e
Fix warnings
ufechner7 Apr 11, 2026
2343460
Fix warnings
ufechner7 Apr 11, 2026
f8d3d55
Fix warnings
ufechner7 Apr 11, 2026
b941732
Fix warnings
ufechner7 Apr 11, 2026
9d86d40
Fix warning
ufechner7 Apr 11, 2026
9f67197
Fixed multi-wing bug
ufechner7 Apr 11, 2026
15b1340
Fix set_va! with omega on multi-wing bod
ufechner7 Apr 11, 2026
bd7e854
Remove unused argument reference_point
ufechner7 Apr 11, 2026
f73eda8
Rename unused parameter to _p
ufechner7 Apr 11, 2026
d75cfa7
Fix Copilot remark
ufechner7 Apr 11, 2026
8a49e3d
Activate examples project in the examples
ufechner7 Apr 11, 2026
57b7de9
Add using SciMLBase
ufechner7 Apr 11, 2026
73814df
Do not export solve_base!
ufechner7 Apr 11, 2026
85bda52
Fix issue found by Copilot related to set_va!
ufechner7 Apr 11, 2026
801c411
Update test/solver/test_solver.jl
ufechner7 Apr 11, 2026
1c805c3
Fix docstring
ufechner7 Apr 11, 2026
8eedaa1
Fix allocations
ufechner7 Apr 11, 2026
f532fe7
Fix warnings
ufechner7 Apr 11, 2026
4d57ca5
Add package Pkg
ufechner7 Apr 11, 2026
831c7fc
Fix warnings
ufechner7 Apr 11, 2026
2ada45c
Fix warnings
ufechner7 Apr 11, 2026
cfe5a53
Fix warning
ufechner7 Apr 11, 2026
e49ad9b
Update default manifest
ufechner7 Apr 11, 2026
fd8829c
Update src/solver.jl
ufechner7 Apr 11, 2026
e944b82
Add file to .gitignore
ufechner7 Apr 11, 2026
e681da6
Update default manifest
ufechner7 Apr 11, 2026
f3c920e
Instantiate the environment
ufechner7 Apr 11, 2026
103a694
Next try
ufechner7 Apr 11, 2026
b3b7a57
Next try
ufechner7 Apr 11, 2026
9e8d381
Avoid closure
ufechner7 Apr 11, 2026
c405a7a
Increase timeout limit
ufechner7 Apr 11, 2026
b7d744f
Use workspaces
ufechner7 Apr 11, 2026
cbee7e8
Add jetls_examples
ufechner7 Apr 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .JETLSConfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,17 @@ formatter = "JuliaFormatter"
auto_instantiate = false # boolean, default: true

[diagnostic]
all_files = false # boolean, default: true
all_files = false # boolean, default: true

[[diagnostic.patterns]]
pattern = "no matching method found `copy!\\(::Random\\.TaskLocalRNG, ::Nothing\\)`"
match_by = "message"
match_type = "regex"
severity = "off"

[[diagnostic.patterns]]
pattern = "IncorrectCallArgs"
match_by = "code"
match_type = "literal"
severity = "off"
path = "src/solver.jl"
Comment thread
ufechner7 marked this conversation as resolved.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
coverage: false
test-with-code-coverage:
name: Julia ${{ matrix.julia_version }} - ${{ matrix.os }} - ${{ matrix.julia_arch }} - with code coverage
timeout-minutes: 20
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
timeout-minutes: 40
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ hooks
.vscode/
.vscode
.idea
Manifest-v1.11.toml.default
Loading
Loading