diff --git a/doc/make.bat b/doc/make.bat index bdf99fb5df..588240614e 100644 --- a/doc/make.bat +++ b/doc/make.bat @@ -13,8 +13,8 @@ set LINKCHECKDIR=\%BUILDDIR%\linkcheck if "%1" == "" goto help if "%1" == "clean" goto clean -if "%1" == "clean-all" goto clean-all if "%1" == "clean-examples" goto clean-examples +if "%1" == "clean-except-examples" goto clean-except-examples if "%1" == "linkcheck" goto linkcheck @@ -35,12 +35,14 @@ if errorlevel 9009 ( goto end :clean-except-examples +echo Cleaning everything except examples rmdir /s /q %BUILDDIR% > /NUL 2>&1 rmdir /s /q images/auto-generated > /NUL 2>&1 for /d /r %SOURCEDIR% %%d in (_autosummary) do @if exist "%%d" rmdir /s /q "%%d" goto end :clean +echo Cleaning everything rmdir /s /q %BUILDDIR% > /NUL 2>&1 rmdir /s /q source\examples\gallery_examples > /NUL 2>&1 for /d /r %SOURCEDIR% %%d in (_autosummary) do @if exist "%%d" rmdir /s /q "%%d" @@ -48,6 +50,7 @@ rmdir /s /q images/auto-generated > /NUL 2>&1 goto end :clean-examples +echo Cleaning examples rmdir /s /q source\examples\gallery_examples > /NUL 2>&1 goto end diff --git a/doc/source/user_guide/pool.rst b/doc/source/user_guide/pool.rst index efa975b1dc..432bed36b5 100644 --- a/doc/source/user_guide/pool.rst +++ b/doc/source/user_guide/pool.rst @@ -2,11 +2,12 @@ Create a pool of MAPDL instances ================================ -PyMAPDL contains the :class:`LocalMapdlPool ` -class to simplify creating multiple local instances of the -:class:`Mapdl ` class for batch processing. -This can be used for the batch processing of a set of input files, -convergence analysis, or other batch related processes. +PyMAPDL contains the :class:`LocalMapdlPool ` +class to simplify creating multiple local instances of the +:class:`Mapdl ` +class for batch processing. This can be used for the batch processing of a +set of input files, convergence analysis, or other batch related +processes. This code creates a pool: