Merge branch 'master' of https://github.com/mathn7/Optinum
This commit is contained in:
commit
fe4d158f6b
10
.travis.yml
10
.travis.yml
|
@ -10,3 +10,13 @@ beofre_script:
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: Documentation
|
||||||
|
julia: 1.4
|
||||||
|
os: linux
|
||||||
|
script:
|
||||||
|
- julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
|
||||||
|
- julia --project=docs --color=yes docs/make.jl
|
||||||
|
after_success: skip
|
||||||
|
|
51
docs/make.jl
51
docs/make.jl
|
@ -5,35 +5,34 @@ using Optinum
|
||||||
makedocs(
|
makedocs(
|
||||||
modules = [Optinum],
|
modules = [Optinum],
|
||||||
sitename = "Optinum.jl",
|
sitename = "Optinum.jl",
|
||||||
strict=true,
|
|
||||||
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
|
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
|
||||||
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
|
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
|
||||||
pages = [
|
pages = [
|
||||||
"Accueil" => "index.md",
|
"Accueil" => "index.md"
|
||||||
"Sujet" => "Sujet.md",
|
#,"Sujet" => "Sujet.md",
|
||||||
"Algorithmes" => [
|
#"Algorithmes" => [
|
||||||
"L'algorithme de Newton local" => "Algorithme_de_newton.md",
|
# "L'algorithme de Newton local" => "Algorithme_de_newton.md",
|
||||||
"La méthode des régions de confiance" => "Regions_de_confiance.md",
|
# "La méthode des régions de confiance" => "Regions_de_confiance.md",
|
||||||
"La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
|
# "La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
|
||||||
],
|
# ],
|
||||||
"Index des fonctions" =>"fct_index.md",
|
# "Index des fonctions" =>"fct_index.md",
|
||||||
"Travail à réaliser" => [
|
#"Travail à réaliser" => [
|
||||||
"Pour l'algorithme de Newton" => "Questions_Newton.md",
|
# "Pour l'algorithme de Newton" => "Questions_Newton.md",
|
||||||
"Pour les régions de confiance avec le pas de Cauchy" => "Questions_Pas_De_Cauchy.md",
|
# "Pour les régions de confiance avec le pas de Cauchy" => "Questions_Pas_De_Cauchy.md",
|
||||||
"Pour les régions de confiance avec le gradient conjugué tronqué" => "Questions_GCT.md",
|
# "Pour les régions de confiance avec le gradient conjugué tronqué" => "Questions_GCT.md",
|
||||||
"Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md"
|
# "Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md"
|
||||||
],
|
# ],
|
||||||
"Annexes" => "Annexes.md",
|
#"Annexes" => "Annexes.md",
|
||||||
"Exemples d'appels" =>"Exemples.md",
|
#"Exemples d'appels" =>"Exemples.md",
|
||||||
"Mise en place" => "mise_en_place.md",
|
#"Mise en place" => "mise_en_place.md",
|
||||||
"Julia vs MatLab"=> "julia_vs_matlab.md",
|
#"Julia vs MatLab"=> "julia_vs_matlab.md",
|
||||||
"Création de Modules en Julia" => "create_package.md",
|
#"Création de Modules en Julia" => "create_package.md",
|
||||||
"Création d'un dépôt Git pour un module Julia" => "git_doc.md",
|
#"Création d'un dépôt Git pour un module Julia" => "git_doc.md",
|
||||||
"Géneration de la doc" => "generation_doc.md",
|
#"Géneration de la doc" => "generation_doc.md",
|
||||||
"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
|
#"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
|
||||||
"Précompilation des modules"=>"Precompilation.md",
|
# "Précompilation des modules"=>"Precompilation.md",
|
||||||
"Génération du rapport" => "generate_pdf.md",
|
#"Génération du rapport" => "generate_pdf.md",
|
||||||
"Foire aux Questions" =>"FAQ.md"
|
#"Foire aux Questions" =>"FAQ.md"
|
||||||
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue