-
-
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.
- Loading branch information
1 parent
9cec6fe
commit 7d22d8e
Showing
61 changed files
with
1,666 additions
and
1,489 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
style = "sciml" | ||
style = "sciml" | ||
format_markdown = true | ||
format_docstrings = 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 |
---|---|---|
@@ -1,21 +1,13 @@ | ||
# Contributing | ||
|
||
1. Fork the repository on github. (Click the `Fork` button in the top-right corner) | ||
|
||
2. Clone the repository you have just forked. `git clone https://github.com/YOUR_USERNAME/Surrogates.jl.git` | ||
|
||
3. `cd Surrogates.jl` Enter the repository's directory. | ||
|
||
4. `julia` Open the Julia REPL. | ||
|
||
5. `]` Enter package mode | ||
|
||
6. Activate the local environment `activate .` | ||
|
||
7. Install the dependencies. `instantiate` | ||
|
||
8. Perform your edits (Atom with Juno, or VSCode with the Julia plugin are good editor choices) | ||
|
||
9. Stage, Commit, and Push your changes | ||
|
||
1. Fork the repository on github. (Click the `Fork` button in the top-right corner) | ||
|
||
2. Clone the repository you have just forked. `git clone https://github.com/YOUR_USERNAME/Surrogates.jl.git` | ||
3. `cd Surrogates.jl` Enter the repository's directory. | ||
4. `julia` Open the Julia REPL. | ||
5. `]` Enter package mode | ||
6. Activate the local environment `activate .` | ||
7. Install the dependencies. `instantiate` | ||
8. Perform your edits (Atom with Juno, or VSCode with the Julia plugin are good editor choices) | ||
9. Stage, Commit, and Push your changes | ||
10. [Open a Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) |
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" | ||
]] |
Oops, something went wrong.