You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/Documentation.yml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ on:
4
4
push:
5
5
branches:
6
6
- master
7
-
tags: '*'
7
+
tags: "*"
8
8
pull_request:
9
9
10
10
jobs:
@@ -14,9 +14,11 @@ jobs:
14
14
- uses: actions/checkout@v6
15
15
- uses: julia-actions/setup-julia@latest
16
16
with:
17
-
version: '1'
17
+
version: "1"
18
+
- name: Add the HolyLabRegistry
19
+
run: julia --project -e 'using Pkg; Pkg.Registry.add(); Pkg.Registry.add(RegistrySpec(url = "https://github.com/HolyLab/HolyLabRegistry.git"))'
18
20
- name: Install dependencies
19
-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(vcat(PackageSpec(path = pwd()), [PackageSpec(path = joinpath("lib", dir)) for dir in readdir("lib") if (dir !== "OptimizationQuadDIRECT" && dir !== "OptimizationMultistartOptimization")])); Pkg.instantiate()'
21
+
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(vcat(PackageSpec(path = pwd()), [PackageSpec(path = joinpath("lib", dir)) for dir in readdir("lib") if (dir !== "OptimizationMultistartOptimization")])); Pkg.instantiate()'
20
22
- name: Build and deploy
21
23
env:
22
24
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
Copy file name to clipboardExpand all lines: docs/src/API/ad.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,15 @@ The choices for the auto-AD fill-ins with quick descriptions are:
13
13
14
14
## Automatic Differentiation Choice API
15
15
16
-
The following sections describe the Auto-AD choices in detail.
16
+
The following sections describe the Auto-AD choices in detail. These types are defined in the [ADTypes.jl](https://github.com/SciML/ADTypes.jl) package.
sol = solve(prob, Opt(:G_MLSL_LDS, 2), local_method = Opt(:LD_LBFGS, 2), maxiters = 10000) #a global optimizer with random starts of local optimization
0 commit comments