Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
17 changes: 2 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
# [.github/workflows/CI.yml]
name: CI

on:
push:
branches:
- main
tags: '*'
pull_request:

jobs:
call:
strategy:
matrix:
version:
- '1.10'
- '1.11'
os:
- ubuntu-latest
- windows-latest
arch:
- x64
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
with:
version: ${{ matrix.version }}
os: ${{ matrix.os }}
arch: ${{ matrix.arch }}
2 changes: 1 addition & 1 deletion test/archives/AD_backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
The backend for ADNLPModels can be set in transcription / solve calls with the option `adnlp_backend=`. Possible values include the predefined(*) backends for ADNLPModels:
- `:optimized`* Default for CTDirect. Forward mode for Jacobian, reverse for Gradient and forward over reverse for Hessian.
- `:default`* Forward mode only. Significantly slower, but more rugged.
- `:manual` Explicitely give to ADNLPModels the sparse pattern for Jacobian and Hessian. Uses the same forward / reverse settings as the `:optimized` predefined backend.
- `:manual` Explicitly give to ADNLPModels the sparse pattern for Jacobian and Hessian. Uses the same forward / reverse settings as the `:optimized` predefined backend.
- `:enzyme`* Enzyme (currently not working).

## Tests:
Expand Down
2 changes: 1 addition & 1 deletion test/archives/old/manual_test_all_constraints.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if plot_solution
plot(sol)
end

# state contraints
# state constraints
if plot_state_constraints
ncx = sol.infos[:dim_state_constraints]
if ncx > 0
Expand Down
2 changes: 1 addition & 1 deletion test/problems/simple_integrator.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# simple intergator
# min enery, dual control
# min energy, dual control

function simple_integrator()
@def ocp begin
Expand Down
Loading