Parcourir la source

update index link to build folder

Jérôme BUISINE il y a 3 ans
Parent
commit
2506094663
2 fichiers modifiés avec 5 ajouts et 4 suppressions
  1. 1 1
      docs/index.html
  2. 4 3
      docs/source/documentations/validator.rst

+ 1 - 1
docs/index.html

@@ -2,7 +2,7 @@
 <html>
 <head>
     <title>rawls documentation</title>
-    <meta http-equiv="refresh" content="0; url=./build/html/index.html" />
+    <meta http-equiv="refresh" content="0; url=./_build/html/index.html" />
 </head>
 <body>
 

+ 4 - 3
docs/source/documentations/validator.rst

@@ -61,7 +61,8 @@ We can now generate solutions randomly by passing our validation function as a p
     # ensure valid solution
     solution = BinarySolution.random(5, validator)
 
-    .. warning::
-        If the search space for valid solutions is very small compared to the overall search space, this can involve a considerable time for validating the solution and therefore obtaining a solution.
 
-    The validation of a solution is therefore now possible. In the next part we will focus on the evaluation of a solution.
+.. warning::
+    If the search space for valid solutions is very small compared to the overall search space, this can involve a considerable time for validating the solution and therefore obtaining a solution.
+
+The validation of a solution is therefore now possible. In the next part we will focus on the evaluation of a solution.