Building the documentation given messages like:
BLAS/SRC/sdsdot.f:25: warning: reached end of comment while inside a @verbatim block; check for missing @@endverbatim tag!
- this fix sees to it that the messages disappear
- the doxygen proposed patch in pull request 660 (https://github.com/doxygen/doxygen/pull/660) solves the @@verbatim problem.
This required an overloaded ilaenv2stage in the ilaenv.f in the test
directories to use the PARMS(1) for ISPEC == 17.
Signed-off-by: Nick Papior <nickpapior@gmail.com>
Added ilaenv2stage.f to enable the extraction of 2stage machine dependent
variables from the 2stage solver without having to rely on compiling the
entire library with the recursive flag.
Secondly, all calls to ILAENV( 17 <= 21, ...) have been fixed to
use the corresponding ILAENV2STAGE routine by translating ISPEC by -16
I.e.
ILAENV( 17, ...) == ILAENV2STAGE( 1, ...)
Also fixed the documentation of ilaenv.f to specify the cases of ISPEC > 16.
Signed-off-by: Nick Papior <nickpapior@gmail.com>