-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solver revamp docs folder and formatter
- Loading branch information
1 parent
7477b0c
commit a11f85d
Showing
5 changed files
with
33 additions
and
25 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 @@ | ||
margin = 100 | ||
indent = 2 | ||
whitespace_typedefs = true | ||
whitespace_ops_in_indices = true | ||
remove_extra_newlines = true | ||
annotate_untyped_fields_with_any = false | ||
normalize_line_endings = "unix" |
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 was deleted.
Oops, something went wrong.
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,3 +1,9 @@ | ||
# [SolverCore.jl documentation](@id Home) | ||
|
||
Core package to build novel optimization algorithms in Julia. | ||
Core package to build JSO-compliant solvers in Julia. | ||
|
||
--- | ||
|
||
This package is extended for specific problem types: | ||
- **OptSolver.jl**: For optimization problems | ||
- **LinearSolvers.jl**: For linear solvers. |
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,17 @@ | ||
# Reference | ||
|
||
## Contents | ||
|
||
```@contents | ||
Pages = ["reference.md"] | ||
``` | ||
|
||
## Index | ||
|
||
```@index | ||
Pages = ["reference.md"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [SolverCore] | ||
``` |