-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added main html page with additional style sheet
- Loading branch information
1 parent
6f05479
commit 1f18bbd
Showing
2 changed files
with
111 additions
and
0 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 @@ | ||
body { | ||
text-align: justify; | ||
margin-top: 20pt; | ||
margin-bottom: 20pt; | ||
margin-left: 10pt; | ||
margin-right: 10pt; | ||
} |
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,104 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>GALAHAD Interface Documentation</title> | ||
|
||
<script data-cfasync="false"> | ||
document.documentElement.dataset.mode = localStorage.getItem("mode") || ""; | ||
document.documentElement.dataset.theme = localStorage.getItem("theme") || "light"; | ||
</script> | ||
|
||
<!-- Loaded before other Sphinx assets --> | ||
<link href="./html/C/_static/styles/theme.css?digest=796348d33e8b1d947c94" rel="stylesheet"> | ||
<link href="./html/C/_static/styles/bootstrap.css?digest=796348d33e8b1d947c94" rel="stylesheet"> | ||
<link href="./html/C/_static/styles/pydata-sphinx-theme.css?digest=796348d33e8b1d947c94" rel="stylesheet"> | ||
|
||
|
||
<link href="./html/C/_static/vendor/fontawesome/6.1.2/css/all.min.css?digest=796348d33e8b1d947c94" rel="stylesheet"> | ||
<link rel="preload" as="font" type="font/woff2" crossorigin href="./html/C/_static/vendor/fontawesome/6.1.2/webfonts/fa-solid-900.woff2"> | ||
<link rel="preload" as="font" type="font/woff2" crossorigin href="./html/C/_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2"> | ||
<link rel="preload" as="font" type="font/woff2" crossorigin href="./html/C/_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2"> | ||
|
||
<link rel="stylesheet" type="text/css" href="./html/C/_static/pygments.css" /> | ||
<link rel="stylesheet" type="text/css" href="./html/C/_static/doxyrest-pygments.css" /> | ||
<link rel="stylesheet" type="text/css" href="./html/C/_static/css/custom.css" /> | ||
<link rel="stylesheet" type="text/css" href="./html/_static/css/custom.css" /> | ||
|
||
<!-- Pre-loaded scripts that we'll load fully later --> | ||
<link rel="preload" as="script" href="./html/C/_static/scripts/bootstrap.js?digest=796348d33e8b1d947c94"> | ||
<link rel="preload" as="script" href="./html/C/_static/scripts/pydata-sphinx-theme.js?digest=796348d33e8b1d947c94"> | ||
|
||
<script data-url_root="./" id="documentation_options" src="./html/C/_static/documentation_options.js"></script> | ||
<script src="./html/C/_static/jquery.js"></script> | ||
<script src="./html/C/_static/underscore.js"></script> | ||
<script src="./html/C/_static/_sphinx_javascript_frameworks_compat.js"></script> | ||
<script src="./html/C/_static/doctools.js"></script> | ||
<script src="./html/C/_static/sphinx_highlight.js"></script> | ||
<script src="./html/C/_static/target-highlight.js"></script> | ||
<script>DOCUMENTATION_OPTIONS.pagename = 'bco';</script> | ||
<link rel="index" title="Index" href="genindex.html" /> | ||
<link rel="search" title="Search" href="search.html" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="docsearch:language" content="en"> | ||
</head> | ||
|
||
<body data-spy="scroll" data-target="#bd-toc-nav" data-offset="180" data-default-mode=""> | ||
|
||
<img src="./html/C/_static/galahad.small.png" class="logo__image only-light" alt="Logo image" width="200"> | ||
<img src="./html/C/_static/galahad.small.png" class="logo__image only-dark" alt="Logo image" width="200"> | ||
|
||
<p> </p> | ||
<h1>GALAHAD interface documentation</h1> | ||
<p><strong>Author:</strong> <a class="reference external" href="mailto:jaroslav.fowkes%40stfc.ac.uk">Jaroslav Fowkes</a>, <a class="reference external" href="mailto:nick.gould%40stfc.ac.uk">Nick Gould</a>, <a class="reference external" href="mailto:alexis.montoison%40polymtl.ca">Alexis Montoison</a> and <a class="reference external" href="mailto:dominique.orban%40polymtl.ca">Dominique Orban</a></p> | ||
<p><strong>Date:</strong> Jan 10, 2024</p> | ||
<p>GALAHAD <a class="footnote-reference superscript" href="#id2" id="id1" role="doc-noteref"><span class="fn-bracket">[</span>1<span class="fn-bracket">]</span></a> is a thread-safe library of modern Fortran packages for solving | ||
nonlinear optimization problems. Many of the packages have | ||
C, Python, Julia and Matlab interfaces. | ||
At present, the areas covered by the | ||
library are unconstrained and bound-constrained optimization, | ||
linear and quadratic programming, nonlinear programming, systems | ||
of nonlinear equations and inequalities, nonlinear least | ||
squares problems and global optimization.</p> | ||
</p> | ||
|
||
<p>We provide the following interface documentation:</p> | ||
|
||
<ul> | ||
<li>For C, see <a href="https://ralna.github.io/galahad_docs/html/C"> | ||
https://ralna.github.io/galahad_docs/html/C</a></li> | ||
<li>For Python, see <a href="https://ralna.github.io/galahad_docs/html/Python"> | ||
https://ralna.github.io/galahad_docs/html/Python</a></li> | ||
<li>For Julia, see <a href="https://ralna.github.io/galahad_docs/html/Julia"> | ||
https://ralna.github.io/galahad_docs/html/Julia</a></li> | ||
</ul> | ||
|
||
<p>PDF documentation for the original Fortran packages is available in | ||
the doc folder as part of the main GALAHAD | ||
<a href="https://github.com/ralna/GALAHAD">distribution</a>. | ||
Help files are provided for Matlab functions. | ||
|
||
<section id="references"> | ||
<h2>References<a class="headerlink" href="#references" title="Permalink to this heading">#</a></h2> | ||
<blockquote> | ||
<div><aside class="footnote superscript" id="id2" role="note"> | ||
<span class="label"><span class="fn-bracket">[</span>1<span class="fn-bracket">]</span></span> | ||
<p>Gould, N. I. M., Orban, D., & Toint, Ph. L. (2003). GALAHAD, a library of thread-safe Fortran 90 packages for large-scale nonlinear optimization. ACM Transactions on Mathematical Software (TOMS), 29(4), 353-372.</p> | ||
</aside> | ||
</aside> | ||
</div></blockquote> | ||
</section> | ||
</section> | ||
|
||
<div class="footer-item"> | ||
|
||
<p class="copyright"> | ||
|
||
© Copyright Gould/Orban/Toint, for GALAHAD productions, GALAHAD 4 C/Python interfaces copyright Fowkes/Gould, Julia interfaces copyright Fowkes/Gould/Montoison/Orban.<br> | ||
|
||
</p> | ||
|
||
</div> | ||
</body> | ||
</html> |