-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
1,347 additions
and
875 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Invalidations | ||
|
||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
# Skip intermediate builds: always. | ||
# Cancel intermediate builds: always. | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
evaluate: | ||
# Only run on PRs to the default branch. | ||
# In the PR trigger above branches can be specified only explicitly whereas this check should work for master, main, or any other default branch | ||
if: github.base_ref == github.event.repository.default_branch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: '1' | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- uses: julia-actions/julia-invalidations@v1 | ||
id: invs_pr | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.repository.default_branch }} | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- uses: julia-actions/julia-invalidations | ||
id: invs_default | ||
|
||
- name: Report invalidation counts | ||
run: | | ||
echo "Invalidations on default branch: ${{ steps.invs_default.outputs.total }} (${{ steps.invs_default.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY | ||
echo "This branch: ${{ steps.invs_pr.outputs.total }} (${{ steps.invs_pr.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY | ||
- name: Check if the PR does increase number of invalidations | ||
if: steps.invs_pr.outputs.total > steps.invs_default.outputs.total | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
name = "HarmonicBalance" | ||
uuid = "e13b9ff6-59c3-11ec-14b1-f3d2cc6c135e" | ||
authors = ["Jan Kosata <[email protected]>", "Javier del Pino <[email protected]>", "Orjan Ameye <[email protected]>"] | ||
version = "0.10.11" | ||
version = "0.11.1" | ||
|
||
[deps] | ||
BijectiveHilbert = "91e7fc40-53cd-4118-bd19-d7fcd1de2a54" | ||
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" | ||
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" | ||
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
EndpointRanges = "340492b5-2a47-5f55-813d-aca7ddf97656" | ||
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" | ||
HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327" | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
|
@@ -42,6 +43,7 @@ DelimitedFiles = "1.9" | |
Distances = "0.10.11" | ||
DocStringExtensions = "0.9.3" | ||
Documenter = "1.4" | ||
EndpointRanges = "0.2.2" | ||
ExplicitImports = "1.6" | ||
FFTW = "1.8" | ||
HomotopyContinuation = "2.9" | ||
|
@@ -51,15 +53,15 @@ Latexify = "0.16" | |
ModelingToolkit = "9.34" | ||
NonlinearSolve = "3.14" | ||
OrderedCollections = "1.6" | ||
OrdinaryDiffEqTsit5 = "1.1" | ||
OrdinaryDiffEqRosenbrock = "1.1" | ||
OrdinaryDiffEqTsit5 = "1.1" | ||
Peaks = "0.5" | ||
Plots = "1.39" | ||
PrecompileTools = "1.2" | ||
ProgressMeter = "1.7.2" | ||
SteadyStateDiffEq = "2.3.2" | ||
SymbolicUtils = "3.7" | ||
Symbolics = "~6.14" | ||
SymbolicUtils = "3.5" | ||
Symbolics = "6.4" | ||
julia = "1.10.0" | ||
|
||
[extras] | ||
|
@@ -69,8 +71,8 @@ ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7" | |
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b" | ||
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" | ||
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec" | ||
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a" | ||
OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce" | ||
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
SteadyStateDiffEq = "9672c7b4-1e72-59bd-8a11-6ac3964bc41f" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,6 @@ if CI | |
devbranch="master", | ||
target="build", | ||
branch="gh-pages", | ||
push_preview=false, | ||
push_preview=true, | ||
) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Methods | ||
|
||
We offer several methods for solving the nonlinear algebraic equations that arise from the harmonic balance procedure. Each method has different tradeoffs between speed, robustness, and completeness. | ||
|
||
## Total Degree Method | ||
```@docs | ||
TotalDegree | ||
``` | ||
|
||
## Polyhedral Method | ||
```@docs | ||
Polyhedral | ||
``` | ||
|
||
## Warm Up Method | ||
```@docs | ||
WarmUp | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.