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:
|
||||
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(
|
||||
modules = [Optinum],
|
||||
sitename = "Optinum.jl",
|
||||
strict=true,
|
||||
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
|
||||
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
|
||||
pages = [
|
||||
"Accueil" => "index.md",
|
||||
"Sujet" => "Sujet.md",
|
||||
"Algorithmes" => [
|
||||
"L'algorithme de Newton local" => "Algorithme_de_newton.md",
|
||||
"La méthode des régions de confiance" => "Regions_de_confiance.md",
|
||||
"La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
|
||||
],
|
||||
"Index des fonctions" =>"fct_index.md",
|
||||
"Travail à réaliser" => [
|
||||
"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 gradient conjugué tronqué" => "Questions_GCT.md",
|
||||
"Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md"
|
||||
],
|
||||
"Annexes" => "Annexes.md",
|
||||
"Exemples d'appels" =>"Exemples.md",
|
||||
"Mise en place" => "mise_en_place.md",
|
||||
"Julia vs MatLab"=> "julia_vs_matlab.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",
|
||||
"Géneration de la doc" => "generation_doc.md",
|
||||
"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
|
||||
"Précompilation des modules"=>"Precompilation.md",
|
||||
"Génération du rapport" => "generate_pdf.md",
|
||||
"Foire aux Questions" =>"FAQ.md"
|
||||
"Accueil" => "index.md"
|
||||
#,"Sujet" => "Sujet.md",
|
||||
#"Algorithmes" => [
|
||||
# "L'algorithme de Newton local" => "Algorithme_de_newton.md",
|
||||
# "La méthode des régions de confiance" => "Regions_de_confiance.md",
|
||||
# "La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
|
||||
# ],
|
||||
# "Index des fonctions" =>"fct_index.md",
|
||||
#"Travail à réaliser" => [
|
||||
# "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 gradient conjugué tronqué" => "Questions_GCT.md",
|
||||
# "Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md"
|
||||
# ],
|
||||
#"Annexes" => "Annexes.md",
|
||||
#"Exemples d'appels" =>"Exemples.md",
|
||||
#"Mise en place" => "mise_en_place.md",
|
||||
#"Julia vs MatLab"=> "julia_vs_matlab.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",
|
||||
#"Géneration de la doc" => "generation_doc.md",
|
||||
#"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
|
||||
# "Précompilation des modules"=>"Precompilation.md",
|
||||
#"Génération du rapport" => "generate_pdf.md",
|
||||
#"Foire aux Questions" =>"FAQ.md"
|
||||
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue