-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into NewBranin
- Loading branch information
Showing
56 changed files
with
632 additions
and
467 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
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,13 @@ | ||
name: Spell Check | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
typos-check: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
- name: Check spelling | ||
uses: crate-ci/[email protected] |
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,2 @@ | ||
[default.extend-words] | ||
ND = "ND" |
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 |
---|---|---|
@@ -1,40 +1,40 @@ | ||
pages = ["index.md" | ||
"Tutorials" => [ | ||
"Basics" => "tutorials.md", | ||
"Radials" => "radials.md", | ||
"Kriging" => "kriging.md", | ||
"Gaussian Process" => "abstractgps.md", | ||
"Lobachevsky" => "lobachevsky.md", | ||
"Linear" => "LinearSurrogate.md", | ||
"InverseDistance" => "InverseDistance.md", | ||
"RandomForest" => "randomforest.md", | ||
"SecondOrderPolynomial" => "secondorderpoly.md", | ||
"NeuralSurrogate" => "neural.md", | ||
"Wendland" => "wendland.md", | ||
"Polynomial Chaos" => "polychaos.md", | ||
"Variable Fidelity" => "variablefidelity.md", | ||
"Gradient Enhanced Kriging" => "gek.md", | ||
"GEKPLS" => "gekpls.md", | ||
"MOE" => "moe.md", | ||
"Parallel Optimization" => "parallel.md" | ||
] | ||
"User guide" => [ | ||
"Samples" => "samples.md", | ||
"Surrogates" => "surrogate.md", | ||
"Optimization" => "optimizations.md", | ||
] | ||
"Benchmarks" => [ | ||
"Sphere function" => "sphere_function.md", | ||
"Lp norm" => "lp.md", | ||
"Rosenbrock" => "rosenbrock.md", | ||
"Tensor product" => "tensor_prod.md", | ||
"Cantilever beam" => "cantilever.md", | ||
"Water Flow function" => "water_flow.md", | ||
"Welded beam function" => "welded_beam.md", | ||
"Branin function" => "BraninFunction.md", | ||
"Improved Branin function" => "ImprovedBraninFunction.md", | ||
"Ackley function" => "ackley.md", | ||
"Gramacy & Lee Function" => "gramacylee.md", | ||
"Salustowicz Benchmark" => "Salustowicz.md", | ||
"Multi objective optimization" => "multi_objective_opt.md", | ||
]] | ||
"Tutorials" => [ | ||
"Basics" => "tutorials.md", | ||
"Radials" => "radials.md", | ||
"Kriging" => "kriging.md", | ||
"Gaussian Process" => "abstractgps.md", | ||
"Lobachevsky" => "lobachevsky.md", | ||
"Linear" => "LinearSurrogate.md", | ||
"InverseDistance" => "InverseDistance.md", | ||
"RandomForest" => "randomforest.md", | ||
"SecondOrderPolynomial" => "secondorderpoly.md", | ||
"NeuralSurrogate" => "neural.md", | ||
"Wendland" => "wendland.md", | ||
"Polynomial Chaos" => "polychaos.md", | ||
"Variable Fidelity" => "variablefidelity.md", | ||
"Gradient Enhanced Kriging" => "gek.md", | ||
"GEKPLS" => "gekpls.md", | ||
"MOE" => "moe.md", | ||
"Parallel Optimization" => "parallel.md", | ||
] | ||
"User guide" => [ | ||
"Samples" => "samples.md", | ||
"Surrogates" => "surrogate.md", | ||
"Optimization" => "optimizations.md", | ||
] | ||
"Benchmarks" => [ | ||
"Sphere function" => "sphere_function.md", | ||
"Lp norm" => "lp.md", | ||
"Rosenbrock" => "rosenbrock.md", | ||
"Tensor product" => "tensor_prod.md", | ||
"Cantilever beam" => "cantilever.md", | ||
"Water Flow function" => "water_flow.md", | ||
"Welded beam function" => "welded_beam.md", | ||
"Branin function" => "BraninFunction.md", | ||
"Improved Branin function" => "ImprovedBraninFunction.md", | ||
"Ackley function" => "ackley.md", | ||
"Gramacy & Lee Function" => "gramacylee.md", | ||
"Salustowicz Benchmark" => "Salustowicz.md", | ||
"Multi objective optimization" => "multi_objective_opt.md", | ||
]] |
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
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.