-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from psrenergy/px/docs
Write Docs for `v0.1.5`
- Loading branch information
Showing
32 changed files
with
868 additions
and
276 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
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,4 +1,15 @@ | ||
.docs-sidebar .docs-logo > img { | ||
max-height: 16rem !important; | ||
margin: auto; | ||
} | ||
} | ||
|
||
/* Center images & diagrams */ | ||
p:has(img) { | ||
text-align: center; | ||
margin: 0 auto; | ||
} | ||
|
||
div.mermaid { | ||
text-align: center; | ||
margin: 0 auto; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
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,24 @@ | ||
/* Ref: | ||
** https://discourse.julialang.org/t/use-javascript-library-with-documenter-jl/34984/8 | ||
*/ | ||
require.config({ | ||
paths: { | ||
mermaid: "https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.4.0/mermaid.min" | ||
} | ||
}); | ||
|
||
require(['mermaid'], function (mermaid) { | ||
mermaid.initialize({ | ||
startOnLoad : true, | ||
theme : 'neutral', | ||
// themeVariables: { | ||
// primaryColor: '#BB2528', | ||
// primaryTextColor: '#fff', | ||
// primaryBorderColor: '#7C0000', | ||
// lineColor: '#F8B229', | ||
// secondaryColor: '#006100', | ||
// tertiaryColor: '#aaa', | ||
// noteBorderColor: '#ff0', | ||
// } | ||
}) | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# ToQUBO.jl Booklet | ||
|
||
This booklet aims to gather the theoretical and practical details behind `ToQUBO` and provide documentation for project internals. | ||
The target audience includes, among others, advanced users and those willing to contribute to the project. | ||
The latter are advised to read the following sections, as they give a glimpse of the ideas employed up to now. | ||
|
||
## Table of Contents | ||
```@contents | ||
Pages = ["2-qubo.md", "3-pbo.md", "4-encoding.md", "5-virtual.md", "6-compiler.md", "7-solvers.md", "8-appendix.md"] | ||
Depth = 2 | ||
``` |
Oops, something went wrong.
ac8be79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
ac8be79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/82005
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: