-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
78 changed files
with
1,933 additions
and
16,497 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,7 @@ | ||
# Configuration file for JuliaFormatter.jl, see: https://domluna.github.io/JuliaFormatter.jl/stable/config/ | ||
|
||
always_for_in = true | ||
always_use_return = true | ||
margin = 80 | ||
remove_extra_newlines = true | ||
short_to_long_function_def = true |
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 @@ | ||
--- | ||
name: Bug report | ||
about: Help us locate bugs in EAGO | ||
|
||
--- | ||
|
||
Thanks for your interest in EAGO! | ||
|
||
Please read the following before posting a new bug report: | ||
|
||
If you're submitting a bug report, be sure to include as much relevant information | ||
as possible. In general, you should try include a minimal reproducible example, | ||
the output of `versioninfo()`, and the output of `using Pkg; Pkg,status()`. For | ||
bugs that result in error messages, please include a screenshot of the full | ||
console output. See https://help.github.com/articles/basic-writing-and-formatting-syntax/ | ||
for background information on formatting text and code on GitHub issues. | ||
|
||
Thanks for your contribution to EAGO! |
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 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest how we can improve EAGO | ||
|
||
--- | ||
|
||
Thanks for your interest in EAGO! You can use this Github issue to suggest new | ||
features or make recommendations on additional documentation for EAGO. | ||
|
||
**If your feature request is related to a problem, please describe the problem.** | ||
Ex. I can't find a way to [...] | ||
|
||
**Describe the solution you'd like** | ||
Provide a clear brief description of the feature you'd like. | ||
|
||
**Provide any other context you think we'd find helpful** | ||
|
||
Thanks for your contribution to EAGO! |
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,15 @@ | ||
name: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ssh: ${{ secrets.DOCUMENTER_KEY }} |
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,23 @@ | ||
name: Documentation | ||
on: | ||
push: | ||
branches: [master] | ||
tags: '*' | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
# Build documentation on Julia 1.3 | ||
version: '1.5' | ||
- name: Install dependencies | ||
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
- name: Build and deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | ||
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key | ||
run: julia --project=docs/ docs/make.jl |
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,4 +1,5 @@ | ||
*.jl.cov | ||
*.jl.*.cov | ||
*.jl.mem | ||
*.cov | ||
docs/build/ |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name = "EAGO" | |
uuid = "bb8be931-2a91-5aca-9f87-79e1cb69959a" | ||
|
||
authors = ["Matthew Wilhelm <[email protected]>"] | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
|
||
[deps] | ||
Cassette = "7057c7e9-c182-5462-911a-8362d720325c" | ||
|
@@ -27,18 +27,18 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" | |
|
||
[compat] | ||
Cassette = "0.3.1" | ||
DataStructures = "~0.17" | ||
DataStructures = "~0.17, ~0.18" | ||
DocStringExtensions = "~0.8" | ||
FastRounding = "0.2" | ||
FastRounding = "~0.2, ~0.3" | ||
ForwardDiff = "~0.5.0, ~0.6, ~0.7, ~0.8, ~0.9, ~0.10" | ||
GLPK = "~0.9, ~0.10, ~0.11, ~0.12" | ||
GLPK = "~0.9, ~0.10, ~0.11, ~0.12, ~0.13" | ||
IntervalArithmetic = "~0.14, ~0.15, ~0.16, ~0.17" | ||
IntervalContractors = "~0.3, ~0.4" | ||
Ipopt = "0.6.0, 0.6.1" | ||
JuMP = "0.21.2" | ||
MathOptInterface = "0.9.13" | ||
McCormick = "~0.10" | ||
NaNMath = "0.3" | ||
Ipopt = "~0.6" | ||
JuMP = "0.21.2, 0.21.3, 0.21.4, 0.21.5, 0.21.6" | ||
MathOptInterface = "0.9.13, 0.9.14, 0.9.15, 0.9.16, 0.9.17, 0.9.18, 0.9.19" | ||
McCormick = "0.10.3" | ||
NaNMath = "~0.3" | ||
NumericIO = "= 0.3.1" | ||
ReverseMcCormick = "~0.8, ~0.9" | ||
Reexport = "~0.2" | ||
|
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 @@ | ||
theme: jekyll-theme-slate |
Oops, something went wrong.